diff --git a/actions/apiaccountupdatedeliverydevice.php b/actions/apiaccountupdatedeliverydevice.php index ec87c4c953..a9ccb4fca8 100644 --- a/actions/apiaccountupdatedeliverydevice.php +++ b/actions/apiaccountupdatedeliverydevice.php @@ -143,7 +143,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/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/apistatusesshow.php b/actions/apistatusesshow.php index 80b0374a63..9a7f36bb3a 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,6 +139,8 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction $this->showSingleAtomStatus($this->notice); break; default: + // 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 { @@ -171,7 +174,7 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction * * @return boolean true */ - + function isReadOnly($args) { return ($_SERVER['REQUEST_METHOD'] == 'GET' || $_SERVER['REQUEST_METHOD'] == 'HEAD'); @@ -220,6 +223,7 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction function deleteNotice() { if ($this->format != 'atom') { + // 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; } @@ -227,7 +231,8 @@ class ApiStatusesShowAction extends ApiPrivateAuthAction 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/apitimelineuser.php b/actions/apitimelineuser.php index 5809df3b5e..c1e66021b6 100644 --- a/actions/apitimelineuser.php +++ b/actions/apitimelineuser.php @@ -241,7 +241,7 @@ class ApiTimelineUserAction extends ApiBareAuthAction * * @return boolean true */ - + function isReadOnly($args) { return ($_SERVER['REQUEST_METHOD'] == 'GET' || $_SERVER['REQUEST_METHOD'] == 'HEAD'); @@ -307,11 +307,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.')); } @@ -375,6 +377,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; @@ -427,14 +430,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..d35bd9f53e 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..57cf465a0c 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..a845ea23df 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(); @@ -147,8 +147,9 @@ class AtompubshowmembershipAction extends ApiAuthAction { 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 +169,6 @@ class AtompubshowmembershipAction extends ApiAuthAction * * @return boolean is read only action? */ - function isReadOnly($args) { if ($_SERVER['REQUEST_METHOD'] == 'GET' || @@ -203,7 +203,6 @@ class AtompubshowmembershipAction extends ApiAuthAction * * @return string etag http header */ - function etag() { $ctime = strtotime($this->_membership->created); @@ -222,7 +221,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 6274f8f922..aeff0cbf2a 100644 --- a/actions/atompubshowsubscription.php +++ b/actions/atompubshowsubscription.php @@ -69,7 +69,7 @@ class AtompubshowsubscriptionAction extends ApiAuthAction if (empty($this->_subscriber)) { // 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'), + throw new ClientException(sprintf(_('No such profile id: %d.'), $subscriberId), 404); } @@ -80,7 +80,7 @@ class AtompubshowsubscriptionAction extends ApiAuthAction if (empty($this->_subscribed)) { // 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'), + throw new ClientException(sprintf(_('No such profile id: %d.'), $subscribedId), 404); } @@ -91,7 +91,7 @@ class AtompubshowsubscriptionAction extends ApiAuthAction if (empty($this->_subscription)) { // 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'), + $msg = sprintf(_('Profile %1$d not subscribed to profile %2$d.'), $subscriberId, $subscribedId); throw new ClientException($msg, 404); } @@ -155,7 +155,7 @@ class AtompubshowsubscriptionAction extends ApiAuthAction $this->auth_user->id != $this->_subscriber->id) { // TRANS: Client exception thrown when trying to delete a subscription of another user. throw new ClientException(_("Cannot delete someone else's ". - "subscription"), 403); + "subscription."), 403); } Subscription::cancel($this->_subscriber, diff --git a/actions/atompubsubscriptionfeed.php b/actions/atompubsubscriptionfeed.php index 15ae79f6a6..43e7933272 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); @@ -250,6 +253,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 +263,16 @@ 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. + $this->clientError(sprintf(_('Unknown profile %s.'), $person->id)); + return; + } + + if (Subscription::exists($this->_profile, $profile)) { + // 409 Conflict + $this->clientError(sprintf(_('Already subscribed to %s'), + $person->id), + 409); return; } @@ -290,7 +303,6 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction * * @return boolean is read only action? */ - function isReadOnly($args) { return $_SERVER['REQUEST_METHOD'] != 'POST'; @@ -301,7 +313,6 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction * * @return string last modified http header */ - function lastModified() { return null; @@ -312,7 +323,6 @@ class AtompubsubscriptionfeedAction extends ApiAuthAction * * @return string etag http header */ - function etag() { return null; @@ -323,7 +333,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 375420c5c9..10c82ebfd7 100644 --- a/actions/avatarsettings.php +++ b/actions/avatarsettings.php @@ -320,21 +320,20 @@ class AvatarsettingsAction extends AccountSettingsAction } $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; diff --git a/actions/backupaccount.php b/actions/backupaccount.php index 4f6fb936bd..7794826760 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,17 +48,16 @@ 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() { + // 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,7 +117,7 @@ class BackupaccountAction extends Action function sendFeed() { $cur = common_current_user(); - + $stream = new UserActivityStream($cur); header('Content-Disposition: attachment; filename='.$cur->nickname.'.atom'); @@ -132,13 +131,13 @@ class BackupaccountAction extends Action * * @return void */ - + function showContent() { $form = new BackupAccountForm($this); $form->show(); } - + /** * Return true if read only. * @@ -148,7 +147,6 @@ class BackupaccountAction extends Action * * @return boolean is read only action? */ - function isReadOnly($args) { return false; @@ -161,7 +159,6 @@ class BackupaccountAction extends Action * * @return string last modified http header */ - function lastModified() { // For comparison with If-Last-Modified @@ -176,7 +173,6 @@ class BackupaccountAction extends Action * * @return string etag http header */ - function etag() { return null; @@ -193,7 +189,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 +196,6 @@ class BackupAccountForm extends Form * * @return string the form's class */ - function formClass() { return 'form_profile_backup'; @@ -212,7 +206,6 @@ class BackupAccountForm extends Form * * @return string the form's action URL */ - function action() { return common_local_url('backupaccount'); @@ -220,18 +213,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 +236,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, + // TRANS: Title for submit button to backup an account on the backup account page. _('Backup your account')); } } diff --git a/actions/confirmaddress.php b/actions/confirmaddress.php index 5617c53392..238e70551c 100644 --- a/actions/confirmaddress.php +++ b/actions/confirmaddress.php @@ -115,7 +115,7 @@ class ConfirmaddressAction extends Action if (!$result) { common_log_db_error($cur, 'UPDATE', __FILE__); // TRANS: Server error displayed when a user update to the database fails in the contact address confirmation action. - $this->serverError(_('Couldn\'t update user.')); + $this->serverError(_('Could not update user.')); return; } diff --git a/actions/deleteaccount.php b/actions/deleteaccount.php index dd587d0445..614519d474 100644 --- a/actions/deleteaccount.php +++ b/actions/deleteaccount.php @@ -161,7 +161,7 @@ class DeleteaccountAction extends Action 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->_error = sprintf(_('You must write "%s" exactly in the box.'), $iamsure); $this->showPage(); return; } diff --git a/actions/deletenotice.php b/actions/deletenotice.php index a7ac28e19c..ff57bbd61e 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! diff --git a/actions/deleteuser.php b/actions/deleteuser.php index 02ded68b31..ac96b7b5d5 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,7 +155,7 @@ 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'), @@ -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..dd422bce91 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,20 +319,23 @@ 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())) { + // 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,16 +511,19 @@ 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('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', @@ -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', + // 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', + // 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..57f6f7ca18 100644 --- a/actions/disfavor.php +++ b/actions/disfavor.php @@ -58,6 +58,7 @@ class DisfavorAction extends Action { parent::handle($args); if (!common_logged_in()) { + // TRANS: Client error displayed when trying to remove a favorite while not logged in. $this->clientError(_('Not logged in.')); return; } @@ -71,6 +72,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 +80,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 +95,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 +110,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/emailsettings.php b/actions/emailsettings.php index 4a7dc1b871..cc513c2b40 100644 --- a/actions/emailsettings.php +++ b/actions/emailsettings.php @@ -356,7 +356,7 @@ class EmailsettingsAction extends AccountSettingsAction 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; } @@ -423,7 +423,7 @@ class EmailsettingsAction extends AccountSettingsAction 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; } @@ -465,7 +465,7 @@ class EmailsettingsAction extends AccountSettingsAction 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; } @@ -505,7 +505,7 @@ class EmailsettingsAction extends AccountSettingsAction 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'); @@ -537,7 +537,7 @@ class EmailsettingsAction extends AccountSettingsAction 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. @@ -562,7 +562,7 @@ class EmailsettingsAction extends AccountSettingsAction 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/groupdesignsettings.php b/actions/groupdesignsettings.php index 526226a285..6fd4da2c8e 100644 --- a/actions/groupdesignsettings.php +++ b/actions/groupdesignsettings.php @@ -263,7 +263,7 @@ class GroupDesignSettingsAction 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; } diff --git a/actions/grouplogo.php b/actions/grouplogo.php index f414a23cc3..d2e8fd0e91 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; @@ -67,6 +66,7 @@ class GrouplogoAction extends GroupDesignAction 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 +83,7 @@ class GrouplogoAction extends GroupDesignAction } if (!$nickname) { + // TRANS: Client error displayed when trying to change group logo settings without having a nickname. $this->clientError(_('No nickname.'), 404); return false; } @@ -99,6 +100,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 +108,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 +139,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 +150,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 +164,6 @@ class GrouplogoAction extends GroupDesignAction * * @return void */ - function showContent() { if ($this->mode == 'crop') { @@ -178,6 +181,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 +196,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,6 +204,7 @@ class GrouplogoAction extends GroupDesignAction if ($original) { $this->elementStart('li', array('id' => 'avatar_original', 'class' => 'avatar_view')); + // 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, @@ -210,6 +216,7 @@ class GrouplogoAction extends GroupDesignAction if ($this->group->homepage_logo) { $this->elementStart('li', array('id' => 'avatar_preview', 'class' => 'avatar_view')); + // 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, @@ -233,6 +240,7 @@ class GrouplogoAction extends GroupDesignAction $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'); @@ -251,6 +259,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,6 +268,7 @@ class GrouplogoAction extends GroupDesignAction $this->elementStart('li', array('id' => 'avatar_original', 'class' => 'avatar_view')); + // 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']), @@ -271,6 +281,7 @@ class GrouplogoAction extends GroupDesignAction $this->elementStart('li', array('id' => 'avatar_preview', 'class' => 'avatar_view')); + // 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']), @@ -286,6 +297,7 @@ class GrouplogoAction extends GroupDesignAction 'id' => $crop_info)); } + // TRANS: Button text for cropping an uploaded group logo. $this->submit('crop', _('Crop')); $this->elementEnd('li'); @@ -302,13 +314,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 +331,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 +344,6 @@ class GrouplogoAction extends GroupDesignAction * * @return void */ - function uploadLogo() { try { @@ -341,20 +353,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 +375,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 +385,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 +410,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.')); } } diff --git a/actions/imsettings.php b/actions/imsettings.php index 29cbeb82e3..dc72290345 100644 --- a/actions/imsettings.php +++ b/actions/imsettings.php @@ -45,7 +45,6 @@ require_once INSTALLDIR.'/lib/jabber.php'; * * @see SettingsAction */ - class ImsettingsAction extends ConnectSettingsAction { /** @@ -53,7 +52,6 @@ class ImsettingsAction extends ConnectSettingsAction * * @return string Title of the page */ - function title() { // TRANS: Title for instance messaging settings. @@ -65,7 +63,6 @@ class ImsettingsAction extends ConnectSettingsAction * * @return instructions for use */ - function getInstructions() { // TRANS: Instant messaging settings page instructions. @@ -85,7 +82,6 @@ class ImsettingsAction extends ConnectSettingsAction * * @return void */ - function showContent() { if (!common_config('xmpp', 'enabled')) { @@ -152,7 +148,7 @@ class ImsettingsAction extends ConnectSettingsAction } } $this->elementEnd('fieldset'); - + $this->elementStart('fieldset', array('id' => 'settings_im_preferences')); // TRANS: Form legend for IM preferences form. $this->element('legend', null, _('IM preferences')); @@ -194,7 +190,6 @@ class ImsettingsAction extends ConnectSettingsAction * * @return Confirm_address address object for this user */ - function getConfirmation() { $user = common_current_user(); @@ -221,7 +216,6 @@ class ImsettingsAction extends ConnectSettingsAction * * @return void */ - function handlePost() { // CSRF protection @@ -254,7 +248,6 @@ class ImsettingsAction extends ConnectSettingsAction * * @return void */ - function savePreferences() { $jabbernotify = $this->boolean('jabbernotify'); @@ -280,7 +273,7 @@ class ImsettingsAction extends ConnectSettingsAction if ($result === false) { common_log_db_error($user, 'UPDATE', __FILE__); // TRANS: Server error thrown on database error updating IM preferences. - $this->serverError(_('Couldn\'t update user.')); + $this->serverError(_('Could not update user.')); return; } @@ -298,7 +291,6 @@ class ImsettingsAction extends ConnectSettingsAction * * @return void */ - function addAddress() { $user = common_current_user(); @@ -348,7 +340,7 @@ class ImsettingsAction extends ConnectSettingsAction 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.')); + $this->serverError(_('Could not insert confirmation code.')); return; } @@ -374,7 +366,6 @@ class ImsettingsAction extends ConnectSettingsAction * * @return void */ - function cancelConfirmation() { $jabber = $this->arg('jabber'); @@ -397,7 +388,7 @@ class ImsettingsAction extends ConnectSettingsAction if (!$result) { common_log_db_error($confirm, 'DELETE', __FILE__); // TRANS: Server error thrown on database error canceling IM address confirmation. - $this->serverError(_('Couldn\'t delete IM confirmation.')); + $this->serverError(_('Could not delete IM confirmation.')); return; } @@ -412,7 +403,6 @@ class ImsettingsAction extends ConnectSettingsAction * * @return void */ - function removeAddress() { $user = common_current_user(); @@ -439,7 +429,7 @@ class ImsettingsAction extends ConnectSettingsAction if (!$result) { common_log_db_error($user, 'UPDATE', __FILE__); // TRANS: Server error thrown on database error removing a registered IM address. - $this->serverError(_('Couldn\'t update user.')); + $this->serverError(_('Could not update user.')); return; } $user->query('COMMIT'); @@ -459,7 +449,6 @@ class ImsettingsAction extends ConnectSettingsAction * * @return boolean whether the Jabber ID exists */ - function jabberExists($jabber) { $user = common_current_user(); 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/newgroup.php b/actions/newgroup.php index 42d488e54e..fb7f6347d4 100644 --- a/actions/newgroup.php +++ b/actions/newgroup.php @@ -200,8 +200,6 @@ class NewgroupAction extends Action } } - $mainpage = common_local_url('showgroup', array('nickname' => $nickname)); - $cur = common_current_user(); // Checked in prepare() above @@ -215,7 +213,6 @@ class NewgroupAction extends Action 'location' => $location, 'aliases' => $aliases, 'userid' => $cur->id, - 'mainpage' => $mainpage, 'local' => true)); common_redirect($group->homeUrl(), 303); diff --git a/actions/othersettings.php b/actions/othersettings.php index 13460a4bfb..ef2c9f32b0 100644 --- a/actions/othersettings.php +++ b/actions/othersettings.php @@ -181,7 +181,7 @@ class OthersettingsAction extends AccountSettingsAction 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; } diff --git a/actions/profilesettings.php b/actions/profilesettings.php index 19fbdbd293..ee50e104d8 100644 --- a/actions/profilesettings.php +++ b/actions/profilesettings.php @@ -46,7 +46,6 @@ require_once INSTALLDIR.'/lib/accountsettingsaction.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 ProfilesettingsAction extends AccountSettingsAction { /** @@ -54,7 +53,6 @@ class ProfilesettingsAction extends AccountSettingsAction * * @return string Title of the page */ - function title() { // TRANS: Page title for profile settings. @@ -66,7 +64,6 @@ class ProfilesettingsAction extends AccountSettingsAction * * @return instructions for use */ - function getInstructions() { // TRANS: Usage instructions for profile settings. @@ -87,7 +84,6 @@ class ProfilesettingsAction extends AccountSettingsAction * * @return void */ - function showContent() { $user = common_current_user(); @@ -212,12 +208,12 @@ class ProfilesettingsAction extends AccountSettingsAction * * @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; @@ -323,7 +319,7 @@ class ProfilesettingsAction extends AccountSettingsAction 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 +344,7 @@ class ProfilesettingsAction extends AccountSettingsAction 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 +402,7 @@ class ProfilesettingsAction extends AccountSettingsAction 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 +415,7 @@ class ProfilesettingsAction extends AccountSettingsAction 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 +424,7 @@ class ProfilesettingsAction extends AccountSettingsAction 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 +454,16 @@ class ProfilesettingsAction extends AccountSettingsAction $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 +471,7 @@ class ProfilesettingsAction extends AccountSettingsAction $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 +479,7 @@ class ProfilesettingsAction extends AccountSettingsAction $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 +487,6 @@ class ProfilesettingsAction extends AccountSettingsAction } $this->elementEnd('ul'); $this->elementEnd('div'); + $this->elementEnd('div'); } } diff --git a/actions/recoverpassword.php b/actions/recoverpassword.php index 33b0440e40..c41edaeea4 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'); + // 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 5d91aef70e..488d8901fc 100644 --- a/actions/register.php +++ b/actions/register.php @@ -430,16 +430,15 @@ 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') { diff --git a/actions/remotesubscribe.php b/actions/remotesubscribe.php index 9fc235e743..63ba618c41 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; @@ -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..60b238f3a7 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/smssettings.php b/actions/smssettings.php index 6af1872a0e..e672b6d8af 100644 --- a/actions/smssettings.php +++ b/actions/smssettings.php @@ -44,7 +44,6 @@ require_once INSTALLDIR.'/lib/connectsettingsaction.php'; * * @see SettingsAction */ - class SmssettingsAction extends ConnectSettingsAction { /** @@ -52,7 +51,6 @@ class SmssettingsAction extends ConnectSettingsAction * * @return string Title of the page */ - function title() { // TRANS: Title for SMS settings. @@ -64,7 +62,6 @@ class SmssettingsAction extends ConnectSettingsAction * * @return instructions for use */ - function getInstructions() { // XXX: For consistency of parameters in messages, this should be a @@ -88,7 +85,6 @@ class SmssettingsAction extends ConnectSettingsAction * * @return void */ - function showContent() { if (!common_config('sms', 'enabled')) { @@ -219,7 +215,6 @@ class SmssettingsAction extends ConnectSettingsAction * * @todo very similar to EmailsettingsAction::getConfirmation(); refactor? */ - function getConfirmation() { $user = common_current_user(); @@ -246,7 +241,6 @@ class SmssettingsAction extends ConnectSettingsAction * * @return void */ - function handlePost() { // CSRF protection @@ -285,7 +279,6 @@ class SmssettingsAction extends ConnectSettingsAction * * @return void */ - function savePreferences() { $smsnotify = $this->boolean('smsnotify'); @@ -305,7 +298,7 @@ class SmssettingsAction extends ConnectSettingsAction 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; } @@ -323,7 +316,6 @@ class SmssettingsAction extends ConnectSettingsAction * * @return void */ - function addAddress() { $user = common_current_user(); @@ -370,7 +362,7 @@ class SmssettingsAction extends ConnectSettingsAction 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; } @@ -395,7 +387,6 @@ class SmssettingsAction extends ConnectSettingsAction * * @return void */ - function cancelConfirmation() { $sms = $this->trimmed('sms'); @@ -419,7 +410,7 @@ class SmssettingsAction extends ConnectSettingsAction 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; } @@ -432,7 +423,6 @@ class SmssettingsAction extends ConnectSettingsAction * * @return void */ - function removeAddress() { $user = common_current_user(); @@ -461,7 +451,7 @@ class SmssettingsAction extends ConnectSettingsAction 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'); @@ -479,7 +469,6 @@ class SmssettingsAction extends ConnectSettingsAction * * @return boolean does the number exist */ - function smsExists($sms) { $user = common_current_user(); @@ -498,7 +487,6 @@ class SmssettingsAction extends ConnectSettingsAction * * @return void */ - function carrierSelect() { $carrier = new Sms_carrier(); @@ -538,7 +526,6 @@ class SmssettingsAction extends ConnectSettingsAction * * @return void */ - function confirmCode() { $code = $this->trimmed('code'); @@ -559,7 +546,6 @@ class SmssettingsAction extends ConnectSettingsAction * * @return void */ - function removeIncoming() { $user = common_current_user(); @@ -575,7 +561,7 @@ class SmssettingsAction extends ConnectSettingsAction if (!$user->updateKeys($orig)) { common_log_db_error($user, 'UPDATE', __FILE__); - $this->serverError(_("Couldn't update user record.")); + $this->serverError(_("Could not update user record.")); } $this->showForm(_('Incoming email address removed.'), true); @@ -588,7 +574,6 @@ class SmssettingsAction extends ConnectSettingsAction * * @see Emailsettings::newIncoming */ - function newIncoming() { $user = common_current_user(); @@ -599,7 +584,7 @@ class SmssettingsAction extends ConnectSettingsAction if (!$user->updateKeys($orig)) { common_log_db_error($user, 'UPDATE', __FILE__); - $this->serverError(_("Couldn't update user record.")); + $this->serverError(_("Could not update user record.")); } $this->showForm(_('New incoming email address added.'), true); 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 a814a4f354..ddcf237e62 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)); diff --git a/actions/userdesignsettings.php b/actions/userdesignsettings.php index 1cf8780006..b82dea8dd6 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(); @@ -125,7 +120,6 @@ class UserDesignSettingsAction extends DesignSettingsAction * * @return void */ - function saveDesign() { foreach ($this->args as $key => $val) { @@ -168,7 +162,6 @@ class UserDesignSettingsAction extends DesignSettingsAction $design = $user->getDesign(); if (!empty($design)) { - $original = clone($design); $design->backgroundcolor = $bgcolor->intValue(); @@ -183,13 +176,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 @@ -236,7 +227,6 @@ class UserDesignSettingsAction extends DesignSettingsAction * * @return nothing */ - function sethd() { @@ -281,5 +271,4 @@ class UserDesignSettingsAction extends DesignSettingsAction $this->showForm(_('Enjoy your hotdog!'), true); } - } diff --git a/classes/Notice.php b/classes/Notice.php index 561999966c..0910ba39b7 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -819,9 +819,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]); } } diff --git a/classes/User_group.php b/classes/User_group.php index 68f61cb7f4..d402ed4773 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; diff --git a/db/notice_source.sql b/db/notice_source.sql index 06b1348898..dec8080a01 100644 --- a/db/notice_source.sql +++ b/db/notice_source.sql @@ -78,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/lib/accountmover.php b/lib/accountmover.php new file mode 100644 index 0000000000..85c95c1132 --- /dev/null +++ b/lib/accountmover.php @@ -0,0 +1,147 @@ +. + * + * @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)) { + throw new Exception("Can't locate account {$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)) { + throw new Exception("Can't find XRD for $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)) { + throw new Exception("No AtomPub API service for $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/accountsettingsaction.php b/lib/accountsettingsaction.php index 7991c9002c..b1ea998bfa 100644 --- a/lib/accountsettingsaction.php +++ b/lib/accountsettingsaction.php @@ -96,7 +96,7 @@ class AccountSettingsNav extends Widget $action_name = $this->action->trimmed('action'); $this->action->elementStart('ul', array('class' => 'nav')); - if (Event::handle('StartAccountSettingsNav', array(&$this->action))) { + if (Event::handle('StartAccountSettingsNav', array($this->action))) { $user = common_current_user(); if(Event::handle('StartAccountSettingsProfileMenuItem', array($this, &$menu))){ @@ -142,7 +142,7 @@ class AccountSettingsNav extends Widget Event::handle('EndAccountSettingsOtherMenuItem', array($this, &$menu)); } - Event::handle('EndAccountSettingsNav', array(&$this->action)); + Event::handle('EndAccountSettingsNav', array($this->action)); } $this->action->elementEnd('ul'); diff --git a/lib/activity.php b/lib/activity.php index 8d7ae1540b..802d09304a 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,19 +199,24 @@ class Activity $this->actor->id = $authorObj->id; } } - } else if (!empty($feed) && - $subjectEl = $this->_child($feed, self::SUBJECT)) { - - $this->actor = new ActivityObject($subjectEl); - } 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) && $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); + } 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); } $contextEl = $this->_child($entry, self::CONTEXT); @@ -322,6 +330,7 @@ class Activity * * @return DOMElement Atom entry */ + function toAtomEntry() { return null; @@ -330,7 +339,12 @@ class 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', @@ -518,9 +532,7 @@ class Activity $xs->elementEnd('entry'); - $str = $xs->getString(); - - return $str; + return; } private function _child($element, $tag, $namespace=self::SPEC) diff --git a/lib/activitymover.php b/lib/activitymover.php new file mode 100644 index 0000000000..7032331104 --- /dev/null +++ b/lib/activitymover.php @@ -0,0 +1,168 @@ +. + * + * @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("No such user {$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/activitysink.php b/lib/activitysink.php new file mode 100644 index 0000000000..fbe1f1e7ff --- /dev/null +++ b/lib/activitysink.php @@ -0,0 +1,169 @@ +. + * + * @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) { + throw new ClientException("{$url} {$status} {$reason}"); + } else if ($status >= 500 && $status < 600) { + throw new ServerException("{$url} {$status} {$reason}"); + } else { + // That's unexpected. + throw new Exception("{$url} {$status} {$reason}"); + } + } +} diff --git a/lib/apiaction.php b/lib/apiaction.php index 2de513cbb1..dcce18ef27 100644 --- a/lib/apiaction.php +++ b/lib/apiaction.php @@ -1437,41 +1437,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/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/common.php b/lib/common.php index 6138200e49..08779fb6fd 100644 --- a/lib/common.php +++ b/lib/common.php @@ -22,13 +22,13 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } //exit with 200 response, if this is checking fancy from the installer if (isset($_REQUEST['p']) && $_REQUEST['p'] == 'check-fancy') { exit; } -define('STATUSNET_BASE_VERSION', '0.9.8'); -define('STATUSNET_LIFECYCLE', 'dev'); // 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release' +define('STATUSNET_BASE_VERSION', '0.9.7'); +define('STATUSNET_LIFECYCLE', 'alpha1'); // 'dev', 'alpha[0-9]+', 'beta[0-9]+', 'rc[0-9]+', 'release' define('STATUSNET_VERSION', STATUSNET_BASE_VERSION . STATUSNET_LIFECYCLE); define('LACONICA_VERSION', STATUSNET_VERSION); // compatibility -define('STATUSNET_CODENAME', 'Letter Never Sent'); +define('STATUSNET_CODENAME', 'World Leader Pretend'); define('AVATAR_PROFILE_SIZE', 96); define('AVATAR_STREAM_SIZE', 48); @@ -63,8 +63,13 @@ if (!function_exists('dl')) { // Fortunately trying to call the disabled one will only trigger // a warning, not a fatal, so it's safe to leave it for our case. // Callers will be suppressing warnings anyway. - $disabled = array_filter(array_map('trim', explode(',', ini_get('disable_functions')))); - if (!in_array('dl', $disabled)) { + try { + // Reading the ini setting is hard as we don't know PHP's parsing, + // but we can check if it is disabled through reflection. + $dl = new ReflectionFunction('dl'); + // $disabled = $dl->isDisabled(); // don't need to check this now + } catch (ReflectionException $e) { + // Ok, it *really* doesn't exist! function dl($library) { return false; } @@ -95,7 +100,11 @@ function _have_config() return StatusNet::haveConfig(); } -function __autoload($cls) +/** + * Wrapper for class autoloaders. + * This used to be the special function name __autoload(), but that causes bugs with PHPUnit 3.5+ + */ +function autoload_sn($cls) { if (file_exists(INSTALLDIR.'/classes/' . $cls . '.php')) { require_once(INSTALLDIR.'/classes/' . $cls . '.php'); @@ -111,6 +120,8 @@ function __autoload($cls) } } +spl_autoload_register('autoload_sn'); + // XXX: how many of these could be auto-loaded on use? // XXX: note that these files should not use config options // at compile time since DB config options are not yet loaded. diff --git a/lib/connectsettingsaction.php b/lib/connectsettingsaction.php index 325276c5fc..20f18ef0d9 100644 --- a/lib/connectsettingsaction.php +++ b/lib/connectsettingsaction.php @@ -96,7 +96,7 @@ class ConnectSettingsNav extends Widget $action_name = $this->action->trimmed('action'); $this->action->elementStart('ul', array('class' => 'nav')); - if (Event::handle('StartConnectSettingsNav', array(&$this->action))) { + if (Event::handle('StartConnectSettingsNav', array($this->action))) { # action => array('prompt', 'title') $menu = array(); @@ -129,7 +129,7 @@ class ConnectSettingsNav extends Widget $action_name === $menuaction); } - Event::handle('EndConnectSettingsNav', array(&$this->action)); + Event::handle('EndConnectSettingsNav', array($this->action)); } $this->action->elementEnd('ul'); 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..d67ec94f00 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,41 @@ * @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 +70,14 @@ 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,7 +86,12 @@ 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) { if (substr($user_id, 0, 5) == 'http:' || @@ -67,13 +100,23 @@ 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,8 +125,13 @@ 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) { // Normalize the incoming $id to make sure we have a uri @@ -107,10 +155,20 @@ class Discovery } // TRANS: Exception. - throw new Exception(sprintf(_m('Unable to find services for %s.'),$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 +180,17 @@ 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 +198,18 @@ 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 +223,60 @@ 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 +300,38 @@ 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 +349,14 @@ 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 +367,39 @@ 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 +412,16 @@ 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 +432,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/groupeditform.php b/lib/groupeditform.php index cc25f06886..8a111b4642 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) { @@ -151,7 +143,7 @@ class GroupEditForm extends Form $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')); + _('1-64 lowercase letters or numbers, no punctuation or spaces.')); $this->out->elementEnd('li'); $this->out->elementStart('li'); $this->out->input('fullname', _('Full name'), @@ -167,8 +159,8 @@ class GroupEditForm extends Form 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', + $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); } @@ -201,7 +193,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..56a7b7d4a2 100644 --- a/lib/imagefile.php +++ b/lib/imagefile.php @@ -128,7 +128,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 +138,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,7 +167,7 @@ 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)) { throw new Exception(_('Lost our file.')); @@ -247,25 +260,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/linkheader.php b/lib/linkheader.php new file mode 100644 index 0000000000..a08fb67116 --- /dev/null +++ b/lib/linkheader.php @@ -0,0 +1,132 @@ +. + * + * @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..0fd0f45c7d 100644 --- a/lib/logingroupnav.php +++ b/lib/logingroupnav.php @@ -73,7 +73,7 @@ class LoginGroupNav extends Widget $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'), @@ -87,7 +87,7 @@ class LoginGroupNav extends Widget $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..9b6b7d6988 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -121,7 +121,7 @@ function mail_notify_from() $domain = mail_domain(); - $notifyfrom = '"'.common_config('site', 'name') .'" '; + $notifyfrom = '"'. str_replace('"', '\\"', common_config('site', 'name')) .'" '; } return $notifyfrom; diff --git a/lib/profileaction.php b/lib/profileaction.php index 4bfc4d48d9..5e4e0f52a0 100644 --- a/lib/profileaction.php +++ b/lib/profileaction.php @@ -99,6 +99,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 +121,9 @@ 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'); + $this->statsSectionLink('subscriptions', _('Subscriptions')); + $this->elementEnd('h2'); $cnt = 0; @@ -120,10 +137,7 @@ class ProfileAction extends OwnerDesignAction 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')); + $this->statsSectionLink('subscriptions', _('All subscriptions'), 'more'); $this->elementEnd('p'); } @@ -141,7 +155,9 @@ class ProfileAction extends OwnerDesignAction if (Event::handle('StartShowSubscribersMiniList', array($this))) { - $this->element('h2', null, _('Subscribers')); + $this->elementStart('h2'); + $this->statsSectionLink('subscribers', _('Subscribers')); + $this->elementEnd('h2'); $cnt = 0; @@ -155,10 +171,7 @@ class ProfileAction extends OwnerDesignAction 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')); + $this->statsSectionLink('subscribers', _('All subscribers'), 'more'); $this->elementEnd('p'); } @@ -170,10 +183,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... @@ -186,59 +196,73 @@ class ProfileAction extends OwnerDesignAction $this->element('h2', null, _('Statistics')); - // Other stats...? - $this->elementStart('dl', 'entity_user-id'); - $this->element('dt', null, _('User ID')); - $this->element('dd', null, $this->profile->id); - $this->elementEnd('dl'); + $profile = $this->profile; + $actionParams = array('nickname' => $profile->nickname); + $stats = array( + array( + 'id' => 'user-id', + 'label' => _('User ID'), + 'value' => $profile->id, + ), + array( + 'id' => 'member-since', + 'label' => _('Member since'), + 'value' => date('j M Y', strtotime($profile->created)) + ), + array( + 'id' => 'subscriptions', + 'label' => _('Subscriptions'), + 'link' => common_local_url('subscriptions', $actionParams), + 'value' => $profile->subscriptionCount(), + ), + array( + 'id' => 'subscribers', + 'label' => _('Subscribers'), + 'link' => common_local_url('subscribers', $actionParams), + 'value' => $profile->subscriberCount(), + ), + array( + 'id' => 'groups', + 'label' => _('Groups'), + 'link' => common_local_url('usergroups', $actionParams), + 'value' => $profile->getGroups()->N, + ), + array( + 'id' => 'notices', + 'label' => _('Notices'), + 'value' => $notice_count, + ), + array( + 'id' => 'daily_notices', + // TRANS: Average count of posts made per day since account registration + 'label' => _('Daily average'), + 'value' => $daily_count + ) + ); - $this->elementStart('dl', 'entity_member-since'); - $this->element('dt', null, _('Member since')); - $this->element('dd', null, date('j M Y', - strtotime($this->profile->created))); - $this->elementEnd('dl'); - - $this->elementStart('dl', 'entity_subscriptions'); - $this->elementStart('dt'); - $this->element('a', array('href' => common_local_url('subscriptions', - array('nickname' => $this->profile->nickname))), - _('Subscriptions')); - $this->elementEnd('dt'); - $this->element('dd', null, $subs_count); - $this->elementEnd('dl'); - - $this->elementStart('dl', 'entity_subscribers'); - $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', $subbed_count); - $this->elementEnd('dl'); - - $this->elementStart('dl', 'entity_groups'); - $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', $group_count); - $this->elementEnd('dl'); - - $this->elementStart('dl', 'entity_notices'); - $this->element('dt', null, _('Notices')); - $this->element('dd', null, $notice_count); - $this->elementEnd('dl'); - - $this->elementStart('dl', 'entity_daily_notices'); - // TRANS: Average count of posts made per day since account registration - $this->element('dt', null, _('Daily average')); - $this->element('dd', null, $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); @@ -246,7 +270,9 @@ 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'); + $this->statsSectionLink('usergroups', _('Groups')); + $this->elementEnd('h2'); if ($groups) { $gml = new GroupMiniList($groups, $this->profile, $this); @@ -258,10 +284,7 @@ class ProfileAction extends OwnerDesignAction 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')); + $this->statsSectionLink('usergroups', _('All groups'), 'more'); $this->elementEnd('p'); } diff --git a/lib/queuemanager.php b/lib/queuemanager.php index 65a972e234..5b59444bc2 100644 --- a/lib/queuemanager.php +++ b/lib/queuemanager.php @@ -268,6 +268,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/useractivitystream.php b/lib/useractivitystream.php index 0fc315e26e..7d9b02ded8 100644 --- a/lib/useractivitystream.php +++ b/lib/useractivitystream.php @@ -28,6 +28,8 @@ class UserActivityStream extends AtomUserNoticeFeed { + public $activities = array(); + function __construct($user, $indent = true) { parent::__construct($user, null, $indent); @@ -45,10 +47,15 @@ class UserActivityStream extends AtomUserNoticeFeed usort($objs, 'UserActivityStream::compareObject'); foreach ($objs as $obj) { - $act = $obj->asActivity(); + $this->activities[] = $obj->asActivity(); + } + } + + function renderEntries() + { + foreach ($this->activities as $act) { // 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)); } } diff --git a/lib/userprofile.php b/lib/userprofile.php index 2813f735ea..91c5fb413a 100644 --- a/lib/userprofile.php +++ b/lib/userprofile.php @@ -242,7 +242,7 @@ class UserProfile extends Widget $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(); @@ -250,13 +250,13 @@ class UserProfile extends Widget $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 @@ -376,13 +376,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)); } } 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..40372b9d7a 100644 --- a/lib/xrd.php +++ b/lib/xrd.php @@ -173,6 +173,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..b59e0f78a4 100644 --- a/lib/xrdaction.php +++ b/lib/xrdaction.php @@ -99,7 +99,9 @@ class XrdAction extends Action $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); diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index 2c4a22665d..deb8809e07 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:32+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:55:43+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\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: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -78,6 +78,7 @@ 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 text for saving "Other settings" in profile. @@ -89,13 +90,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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "احفظ" @@ -113,6 +114,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. @@ -133,8 +136,8 @@ msgstr "لا صفحة كهذه." #: 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,7 +148,7 @@ msgstr "لا صفحة كهذه." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -307,7 +310,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "تعذّر تحديث المستخدم." @@ -329,7 +346,8 @@ 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 "لم يمكن حفظ الملف." @@ -339,7 +357,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -365,8 +383,8 @@ msgstr[5] "" #: 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/userdesignsettings.php:201 actions/userdesignsettings.php:211 +#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263 #, fuzzy msgid "Unable to save your design settings." msgstr "تعذّر حذف إعدادات التصميم." @@ -375,13 +393,17 @@ msgstr "تعذّر حذف إعدادات التصميم." #. TRANS: Client error displayed when a database error occurs updating profile colours. #: actions/apiaccountupdateprofilebackgroundimage.php:191 #: actions/apiaccountupdateprofilecolors.php:139 +#: actions/groupdesignsettings.php:266 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. @@ -392,31 +414,38 @@ msgstr "" 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 "فشل منع المستخدم." @@ -510,7 +539,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:91 msgid "Could not delete favorite." msgstr "تعذّر حذف المفضلة." @@ -558,7 +588,7 @@ msgstr "تعذّر إيجاد المستخدم الهدف." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "الاسم المستعار مستخدم بالفعل. جرّب اسمًا آخرًا." @@ -568,7 +598,7 @@ msgstr "الاسم المستعار مستخدم بالفعل. جرّب اسمً #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "ليس اسمًا مستعارًا صحيحًا." @@ -580,7 +610,7 @@ msgstr "ليس اسمًا مستعارًا صحيحًا." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "الصفحة الرئيسية ليست عنونًا صالحًا." @@ -590,7 +620,7 @@ msgstr "الصفحة الرئيسية ليست عنونًا صالحًا." #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -622,7 +652,7 @@ msgstr[5] "المنظمة طويلة جدا (الأقصى %d حرفا)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -684,24 +714,28 @@ 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." @@ -713,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." @@ -753,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 "توكن دخول غير صحيح محدد." @@ -776,18 +812,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -807,18 +847,21 @@ 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 IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "" @@ -864,9 +907,9 @@ msgstr "الحساب" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "الاسم المستعار" @@ -874,7 +917,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "كلمة السر" @@ -885,7 +928,7 @@ msgstr "كلمة السر" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -960,6 +1003,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,40 +1023,52 @@ msgstr "لا يمكنك تكرار ملحوظتك الخاصة." 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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 "احذف الإشعار" @@ -1154,51 +1210,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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, fuzzy, php-format msgid "No content for notice %d." msgstr "ابحث عن محتويات في الإشعارات" #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, fuzzy, 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 @@ -1210,108 +1264,137 @@ msgstr "لم يتم العثور على وسيلة API." 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 +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 +#. 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 -msgid "No such group" -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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "لم يتم العثور على وسيلة API." - -#: 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. @@ -1319,40 +1402,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +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: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 #, fuzzy, php-format -msgid "Unknown profile %s" +msgid "Unknown profile %s." msgstr "نوع ملف غير معروف" #. TRANS: Client error displayed trying to get a non-existing attachment. @@ -1363,10 +1443,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "لا اسم مستعار." @@ -1397,30 +1478,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "معاينة" @@ -1458,7 +1545,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "" @@ -1477,35 +1565,42 @@ msgstr "فشل تحديث الأفتار." msgid "Avatar deleted." msgstr "حُذف الأفتار." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "الخلفية" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1536,14 +1631,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: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:158 actions/deleteuser.php:156 +#: actions/block.php:158 msgid "Do not block this user" msgstr "لا تمنع هذا المستخدم" @@ -1555,7 +1649,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "نعم" @@ -1571,31 +1665,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 @@ -1667,23 +1736,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 @@ -1745,7 +1797,8 @@ 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 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "أنشئ حسابًا" @@ -1767,8 +1820,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "أكّد" @@ -1840,8 +1894,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 "لا اسم مستعار." @@ -1894,10 +1950,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1935,98 +1992,133 @@ msgstr "لا تحذف هذا الإشعار" 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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2034,99 +2126,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 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 "أرسل" - +#. 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:84 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:99 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. @@ -2221,14 +2323,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "يجب أن تكون إداريا لتعدل المجموعة." @@ -2289,8 +2393,8 @@ msgstr "عنوان البريد الإلكتروني المُؤكد الحالي #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "أزل" @@ -2313,15 +2417,15 @@ msgstr "عنوان البريد الإلكتروني، مثل \"UserName@example #. 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 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "البريد الإلكتروني الوارد" @@ -2332,13 +2436,13 @@ 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:180 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:189 actions/smssettings.php:182 msgid "Make a new email address for posting to; cancels the old one." msgstr "أنشئ عنوان بريد إلكتروني لترسل إليه؛ ألغِ القديم." @@ -2351,7 +2455,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "جديد" @@ -2426,9 +2530,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2441,8 +2546,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 #, fuzzy msgid "No pending confirmation to cancel." msgstr "أُلغي تأكيد المراسلة الفورية." @@ -2454,8 +2559,9 @@ 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:468 actions/smssettings.php:413 +#, fuzzy +msgid "Could not delete email confirmation." msgstr "تعذّر حذف تأكيد البريد الإلكتروني." #. TRANS: Message given after successfully canceling e-mail address confirmation. @@ -2474,25 +2580,26 @@ msgstr "هذا ليس عنوان بريدك الإلكتروني." msgid "The email address was removed." msgstr "أزيل عنوان البريد الإلكتروني." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 #, 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 #, fuzzy msgid "New incoming email address added." msgstr "لا عنوان بريد إلكتروني وارد." @@ -2586,7 +2693,7 @@ msgstr "لم أتوقع هذا الرد!" msgid "User being listened to does not exist." msgstr "المستخدم الذي تستمع إليه غير موجود." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "تستطيع استخدام الاشتراك المحلي!" @@ -2715,45 +2822,47 @@ 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 -msgid "Couldn't update your design." -msgstr "تعذّر تحديث تصميمك." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, 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:244 msgid "Upload" msgstr "ارفع" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 #, fuzzy msgid "Crop" msgstr "مجموعات" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "حُدّث الشعار." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "فشل رفع الشعار." @@ -2837,7 +2946,7 @@ msgstr "" "عبر الصياغة \"!اسم_المجموعة\". ألا ترى مجموعة تعجبك؟ جرّب [البحث عن مجموعة](%%" "%%action.groupsearch%%%%) أو [ابدأ مجموعتك!](%%%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "أنشئ مجموعة جديدة" @@ -2889,14 +2998,14 @@ msgid "Error removing the block." msgstr "خطأ أثناء منع الحجب." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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](%%" @@ -2904,23 +3013,23 @@ msgid "" msgstr "" #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "عنوان المراسلة الفورية" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk address." msgstr "عنوان جابر أو محادثة غوغل المعتمد حاليًا." #. TRANS: Form note in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:124 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2932,7 +3041,7 @@ msgstr "" #. 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 " @@ -2940,68 +3049,68 @@ msgid "" msgstr "" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "تفضيلات المحادثة الفورية" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 #, fuzzy msgid "Send me notices through Jabber/GTalk." msgstr "أرسل لي إشعارات بالاشتراكات الجديدة عبر البريد الإلكتروني." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 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 +#: actions/imsettings.php:178 #, fuzzy msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "انشر هوية مصغّرة لعنوان بريدي الإلكتروني." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "حُفِظت التفضيلات." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: actions/imsettings.php:304 msgid "No Jabber ID." msgstr "لا هوية جابر." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:320 +#: actions/imsettings.php:312 #, fuzzy msgid "Cannot normalize that Jabber ID" msgstr "ليست هوية جابر صالحة" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:325 +#: 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3009,28 +3118,29 @@ msgid "" msgstr "" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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." +#: 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 +#: actions/imsettings.php:396 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 +#: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "أزيل عنوان المراسلة الفورية هذا." @@ -3212,131 +3322,145 @@ 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 "" -#: 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 "" @@ -3360,11 +3484,11 @@ msgstr "لُج" msgid "Login to site" msgstr "لُج إلى الموقع" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "تذكّرني" -#: 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 "لُج تلقائيًا في المستقبل؛ هذا الخيار ليس مُعدًا للحواسيب المشتركة!" @@ -3745,7 +3869,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 "تغيير كلمة السر" @@ -3753,7 +3878,8 @@ 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 "كلمة السر الجديدة" @@ -3761,7 +3887,7 @@ msgstr "كلمة السر الجديدة" msgid "6 or more characters" msgstr "6 أحرف أو أكثر" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "نفس كلمة السر أعلاه" @@ -3785,11 +3911,12 @@ msgstr "كلمة السر القديمة غير صحيحة" msgid "Error saving user; invalid." msgstr "خطأ أثناء حفظ المستخدم؛ غير صالح." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "تعذّر حفظ كلمة السر الجديدة." -#: 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 "حُفظت كلمة السر." @@ -4113,44 +4240,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:433 +#: lib/groupeditform.php:146 #, 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "الصفحة الرئيسية" #. 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 "مسار صفحتك الرئيسية أو مدونتك أو ملفك الشخصي على موقع آخر" @@ -4158,7 +4286,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,71 +4298,71 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 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" 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 +#: 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 "اشترك تلقائيًا بأي شخص يشترك بي (يفضل أن يستخدم لغير البشر)" @@ -4242,7 +4370,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,53 +4382,50 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "أنشئ حسابًا" @@ -4418,129 +4543,180 @@ 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 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: 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 "نفس كلمة السر أعلاه" + +#. 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "تعذّر حفظ كلمة السر الجديدة." + +#. 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 "خطأ أثناء ضبط المستخدم." -#: 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 "" @@ -4556,7 +4732,7 @@ msgstr "عذرا، رمز دعوة غير صالح." msgid "Registration successful" msgstr "نجح التسجيل" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "سجّل" @@ -4583,67 +4759,59 @@ msgid "" "link up to friends and colleagues. " msgstr "" -#: actions/register.php:433 +#: actions/register.php:437 #, 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 "نفس كلمة السر أعلاه. مطلوب." +msgid "6 or more characters." +msgstr "6 أحرف أو أكثر" #. 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 "البريد الإلكتروني" -#: 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 "" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "" -#: actions/register.php:463 +#: actions/register.php:462 msgid "URL of your homepage, blog, or profile on another site" msgstr "مسار صفحتك الرئيسية أو مدونتك أو ملفك الشخصي على موقع آخر" -#: 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 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4662,13 +4830,13 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: 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.)" msgstr "" -#: actions/remotesubscribe.php:98 +#: actions/remotesubscribe.php:97 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -4676,72 +4844,75 @@ 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 +#: 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 +#: actions/remotesubscribe.php:133 msgid "URL of your profile on another compatible microblogging service" msgstr "" -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "اشترك" -#: actions/remotesubscribe.php:159 +#: 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 +#, 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "مكرر" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "مكرر!" @@ -4964,7 +5135,7 @@ msgstr "المنظمة" #. 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 "الوصف" @@ -4988,8 +5159,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:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "احذف" @@ -5112,7 +5284,7 @@ msgid "Note" msgstr "ملاحظة" #. 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 "الكنى" @@ -5497,147 +5669,147 @@ 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 "" #. 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 +#: 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 #, 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 "" #. 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 " @@ -5645,7 +5817,7 @@ msgid "" msgstr "" #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "لم تدخل رمزًا" @@ -5901,10 +6073,6 @@ 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." @@ -6130,18 +6298,18 @@ 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 "استمتع بالنقانق!" @@ -7104,23 +7272,27 @@ 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 "" @@ -7705,25 +7877,25 @@ msgstr "" "tracking - لم يطبق بعد.\n" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 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 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "اذهب إلى المُثبّت." @@ -7794,12 +7966,21 @@ 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: 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 @@ -7877,23 +8058,19 @@ 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 +#: lib/groupeditform.php:155 #, fuzzy msgid "URL of the homepage or blog of the group or topic." msgstr "مسار صفحة هذا التطبيق" -#: lib/groupeditform.php:168 +#: lib/groupeditform.php:160 msgid "Describe the group or topic" msgstr "صِف المجموعة أو الموضوع" -#: 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] "صِف المجموعة أو الموضوع" msgstr[1] "صِف المجموعة أو الموضوع" msgstr[2] "صِف المجموعة أو الموضوع" @@ -7901,13 +8078,13 @@ msgstr[3] "صِف المجموعة أو الموضوع" msgstr[4] "صِف المجموعة أو الموضوع" msgstr[5] "صِف المجموعة أو الموضوع" -#: lib/groupeditform.php:182 +#: lib/groupeditform.php:174 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." msgstr "مكان تواجدك، على سبيل المثال \"المدينة، الولاية (أو المنطقة)، الدولة\"" -#: lib/groupeditform.php:190 +#: lib/groupeditform.php:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9070,14 +9247,9 @@ msgstr[5] "" 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 ليس لونًا صحيحًا!" @@ -9117,3 +9289,30 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "لا مجموعة كهذه" + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "لم يتم العثور على وسيلة API." + +#~ msgid "Reset" +#~ msgstr "أعد الضبط" + +#, fuzzy +#~ msgid "" +#~ "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#~ msgstr "1-64 حرفًا إنجليزيًا أو رقمًا بدون نقاط أو مسافات" + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 حروف أو أكثر. مطلوب." + +#~ msgid "Same as password above. Required." +#~ msgstr "نفس كلمة السر أعلاه. مطلوب." + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "1-64 حرفًا إنجليزيًا أو رقمًا بدون نقاط أو مسافات" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s ليس لونًا صحيحًا!" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index ae0912c5b0..717851daee 100644 --- a/locale/arz/LC_MESSAGES/statusnet.po +++ b/locale/arz/LC_MESSAGES/statusnet.po @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:33+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:55:48+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 (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\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: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -81,6 +81,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -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. @@ -137,8 +140,8 @@ msgstr "لا وسم كهذا." #: 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,7 +152,7 @@ msgstr "لا وسم كهذا." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -311,7 +314,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "تعذّر تحديث المستخدم." @@ -333,7 +350,8 @@ 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,7 +361,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -369,8 +387,8 @@ msgstr[5] "" #: 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/userdesignsettings.php:201 actions/userdesignsettings.php:211 +#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263 #, fuzzy msgid "Unable to save your design settings." msgstr "تعذّر حذف إعدادات التصميم." @@ -379,13 +397,17 @@ msgstr "تعذّر حذف إعدادات التصميم." #. TRANS: Client error displayed when a database error occurs updating profile colours. #: actions/apiaccountupdateprofilebackgroundimage.php:191 #: actions/apiaccountupdateprofilecolors.php:139 +#: actions/groupdesignsettings.php:266 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. @@ -396,31 +418,38 @@ msgstr "" 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 "فشل منع المستخدم." @@ -515,7 +544,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:91 msgid "Could not delete favorite." msgstr "تعذّر حذف المفضله." @@ -564,7 +594,7 @@ msgstr "تعذّر إيجاد المستخدم الهدف." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "" @@ -574,7 +604,7 @@ msgstr "" #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "ليس اسمًا مستعارًا صحيحًا." @@ -586,7 +616,7 @@ msgstr "ليس اسمًا مستعارًا صحيحًا." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "الصفحه الرئيسيه ليست عنونًا صالحًا." @@ -596,7 +626,7 @@ msgstr "الصفحه الرئيسيه ليست عنونًا صالحًا." #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -628,7 +658,7 @@ msgstr[5] "المنظمه طويله جدا (اكتر حاجه %d رمز)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -690,24 +720,28 @@ 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." @@ -720,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." @@ -760,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 "امارة تسجيل الدخول اللى اتحطت مش موجوده." @@ -783,18 +819,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -814,18 +854,21 @@ 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 IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "" @@ -871,9 +914,9 @@ msgstr "الحساب" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "الاسم المستعار" @@ -881,7 +924,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "كلمه السر" @@ -892,7 +935,7 @@ msgstr "كلمه السر" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 #, fuzzy msgctxt "BUTTON" @@ -968,6 +1011,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 @@ -987,41 +1031,53 @@ msgstr "مش نافعه تتكرر الملاحظتك بتاعتك." 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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 "احذف الإشعار" @@ -1163,51 +1219,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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, fuzzy, php-format msgid "No content for notice %d." msgstr "ابحث عن محتويات فى الإشعارات" #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, fuzzy, 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 @@ -1220,109 +1274,138 @@ msgstr "الـ API method مش موجوده." 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. +#: 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 "لا ملف كهذا." +#. 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 -msgid "No such group" -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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "الـ API method مش موجوده." - -#: 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. @@ -1330,40 +1413,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +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: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 #, fuzzy, php-format -msgid "Unknown profile %s" +msgid "Unknown profile %s." msgstr "نوع ملف غير معروف" #. TRANS: Client error displayed trying to get a non-existing attachment. @@ -1374,10 +1454,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "لا اسم مستعار." @@ -1408,30 +1489,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "عاين" @@ -1470,7 +1557,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "" @@ -1489,35 +1577,42 @@ msgstr "فشل تحديث الأفتار." msgid "Avatar deleted." msgstr "حُذف الأفتار." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "الخلفية" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1548,14 +1643,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: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:158 actions/deleteuser.php:156 +#: actions/block.php:158 msgid "Do not block this user" msgstr "لا تمنع هذا المستخدم" @@ -1567,7 +1661,7 @@ 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:185 #, fuzzy msgctxt "BUTTON" msgid "Yes" @@ -1584,31 +1678,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 @@ -1681,23 +1750,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 @@ -1759,7 +1811,8 @@ 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 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "أنشئ مجموعه جديدة" @@ -1781,8 +1834,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "أكّد" @@ -1857,8 +1911,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 "لا اسم مستعار." @@ -1911,10 +1967,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1952,99 +2009,134 @@ msgstr "لا تحذف هذا الإشعار" 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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, fuzzy, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2052,99 +2144,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 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 "أرسل" - +#. 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:84 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:99 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. @@ -2241,14 +2343,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "لازم تكون ادارى علشان تعدّل الجروپ." @@ -2309,8 +2413,8 @@ msgstr "عنوان البريد الإلكترونى المُؤكد الحالى #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "استرجع" @@ -2333,8 +2437,8 @@ msgstr "عنوان البريد الإلكترونى، مثل \"UserName@example #. 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 +#: actions/emailsettings.php:144 actions/imsettings.php:147 +#: actions/smssettings.php:158 #, fuzzy msgctxt "BUTTON" msgid "Add" @@ -2342,7 +2446,7 @@ 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "البريد الإلكترونى الوارد" @@ -2353,13 +2457,13 @@ 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:180 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:189 actions/smssettings.php:182 msgid "Make a new email address for posting to; cancels the old one." msgstr "أنشئ عنوان بريد إلكترونى لترسل إليه؛ ألغِ القديم." @@ -2372,7 +2476,7 @@ 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:199 actions/smssettings.php:185 #, fuzzy msgctxt "BUTTON" msgid "New" @@ -2451,9 +2555,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2466,8 +2571,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 #, fuzzy msgid "No pending confirmation to cancel." msgstr "لا رمز تأكيد." @@ -2480,8 +2585,9 @@ 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:468 actions/smssettings.php:413 +#, fuzzy +msgid "Could not delete email confirmation." msgstr "تعذّر حذف تأكيد البريد الإلكترونى." #. TRANS: Message given after successfully canceling e-mail address confirmation. @@ -2500,7 +2606,7 @@ msgstr "هذا ليس عنوان بريدك الإلكترونى." msgid "The email address was removed." msgstr "لا عنوان بريد إلكترونى." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 #, fuzzy msgid "No incoming email address." msgstr "لا عنوان بريد إلكترونى." @@ -2508,19 +2614,19 @@ 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 +#: actions/smssettings.php:564 actions/smssettings.php:587 #, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 #, 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 #, fuzzy msgid "New incoming email address added." msgstr "لا عنوان بريد إلكترونى." @@ -2614,7 +2720,7 @@ msgstr "لم أتوقع هذا الرد!" msgid "User being listened to does not exist." msgstr "المستخدم الذى تستمع إليه غير موجود." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 #, fuzzy msgid "You can use the local subscription!" msgstr "تعذّر حفظ الاشتراك." @@ -2746,46 +2852,48 @@ 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 -msgid "Couldn't update your design." -msgstr "تعذّر تحديث تصميمك." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, 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:244 msgid "Upload" msgstr "ارفع" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 #, fuzzy msgid "Crop" msgstr "مجموعات" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "حُدّث الشعار." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "فشل رفع الشعار." @@ -2866,7 +2974,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "أنشئ مجموعه جديدة" @@ -2916,14 +3024,14 @@ msgid "Error removing the block." msgstr "خطأ أثناء منع الحجب." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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](%%" @@ -2931,24 +3039,24 @@ msgid "" msgstr "" #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: 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." msgstr "عنوان البريد الإلكترونى المُؤكد الحالى." #. TRANS: Form note in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:124 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2960,7 +3068,7 @@ msgstr "" #. 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 " @@ -2968,67 +3076,67 @@ msgid "" msgstr "" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "حُفِظت التفضيلات." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 #, fuzzy msgid "Send me notices through Jabber/GTalk." msgstr "أرسل لى إشعارات بالاشتراكات الجديده عبر البريد الإلكترونى." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "حُفِظت التفضيلات." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: actions/imsettings.php:304 msgid "No Jabber ID." msgstr "لا هويه جابر." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:320 +#: actions/imsettings.php:312 #, fuzzy msgid "Cannot normalize that Jabber ID" msgstr "ليست هويه جابر صالحة" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:325 +#: 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3036,29 +3144,29 @@ msgid "" msgstr "" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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 +#: 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 +#: actions/imsettings.php:396 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 +#: 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 +#: actions/imsettings.php:440 #, fuzzy msgid "The IM address was removed." msgstr "أزيل هذا العنوان." @@ -3243,133 +3351,147 @@ 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 "" @@ -3393,11 +3515,11 @@ msgstr "لُج" msgid "Login to site" msgstr "لُج إلى الموقع" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "تذكّرني" -#: 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 "" @@ -3777,7 +3899,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 "تغيير كلمه السر" @@ -3785,7 +3908,8 @@ 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 "كلمه سر جديدة" @@ -3794,7 +3918,7 @@ msgstr "كلمه سر جديدة" msgid "6 or more characters" msgstr "6 حروف أو أكثر. مطلوب." -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "نفس كلمه السر أعلاه" @@ -3818,11 +3942,12 @@ msgstr "كلمه السر القديمه غير صحيحة" msgid "Error saving user; invalid." msgstr "خطأ أثناء حفظ المستخدم؛ غير صالح." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "تعذّر حفظ كلمه السر الجديده." -#: 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 "حُفظت كلمه السر." @@ -4144,50 +4269,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:433 +#: lib/groupeditform.php:146 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "الصفحه الرئيسية" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:125 +#: actions/profilesettings.php:121 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:471 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4199,70 +4325,70 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 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" 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 +#: 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)" @@ -4271,7 +4397,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)." @@ -4283,53 +4409,50 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "أنشئ مجموعه جديدة" @@ -4447,130 +4570,181 @@ 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 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: 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 "نفس كلمه السر أعلاه" + +#. 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "تعذّر حفظ كلمه السر الجديده." + +#. 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 "خطأ أثناء ضبط المستخدم." -#: 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 "" @@ -4586,7 +4760,7 @@ msgstr "عذرا، رمز دعوه غير صالح." msgid "Registration successful" msgstr "نجح التسجيل" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "سجّل" @@ -4613,66 +4787,59 @@ 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 "" - -#: actions/register.php:438 -msgid "6 or more characters. Required." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." 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:445 actions/register.php:449 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "البريد الإلكتروني" -#: 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 "" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "" -#: actions/register.php:463 +#: actions/register.php:462 msgid "URL of your homepage, blog, or profile on another site" msgstr "" -#: 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 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4691,13 +4858,13 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: 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.)" msgstr "" -#: actions/remotesubscribe.php:98 +#: actions/remotesubscribe.php:97 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -4705,72 +4872,75 @@ 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 +#: 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 +#: actions/remotesubscribe.php:133 msgid "URL of your profile on another compatible microblogging service" msgstr "" -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "اشترك" -#: actions/remotesubscribe.php:159 +#: 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 "لقد منعك المستخدم." -#: 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "مكرر" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "مكرر!" @@ -4994,7 +5164,7 @@ msgstr "المنظمه" #. 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 "الوصف" @@ -5018,8 +5188,9 @@ msgstr "OAuth applications" 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:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "احذف" @@ -5144,7 +5315,7 @@ msgid "Note" msgstr "ملاحظة" #. 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 "الكنى" @@ -5531,152 +5702,152 @@ 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 +#: 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 " @@ -5684,7 +5855,7 @@ 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" msgstr "لا محتوى!" @@ -5937,10 +6108,6 @@ 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." @@ -6168,18 +6335,18 @@ 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 "استمتع بالنقانق!" @@ -7162,24 +7329,28 @@ 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 "" @@ -7730,25 +7901,25 @@ msgid "" msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 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 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "اذهب إلى المُثبّت." @@ -7819,12 +7990,21 @@ 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: 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 @@ -7902,24 +8082,20 @@ 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 "" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 #, fuzzy msgid "URL of the homepage or blog of the group or topic." msgstr "انت مش بتملك الapplication دى." -#: lib/groupeditform.php:168 +#: lib/groupeditform.php:160 #, fuzzy msgid "Describe the group or topic" msgstr "اوصف الapplication بتاعتك" -#: 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] "اوصف الapplication بتاعتك" msgstr[1] "اوصف الapplication بتاعتك" msgstr[2] "اوصف الapplication بتاعتك" @@ -7927,12 +8103,12 @@ msgstr[3] "اوصف الapplication بتاعتك" msgstr[4] "اوصف الapplication بتاعتك" msgstr[5] "اوصف الapplication بتاعتك" -#: lib/groupeditform.php:182 +#: lib/groupeditform.php:174 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." msgstr "" -#: lib/groupeditform.php:190 +#: lib/groupeditform.php:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9077,14 +9253,9 @@ msgstr[5] "" 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 ليس لونًا صحيحًا!" @@ -9124,3 +9295,22 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "لا مجموعه كهذه" + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "الـ API method مش موجوده." + +#~ msgid "Reset" +#~ msgstr "أعد الضبط" + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 حروف أو أكثر. مطلوب." + +#~ msgid "Same as password above. Required." +#~ msgstr "نفس كلمه السر أعلاه. مطلوب." + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s ليس لونًا صحيحًا!" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 024dae0acc..ce865ea049 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:34+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:55:56+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\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: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -75,6 +75,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" 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. @@ -130,8 +133,8 @@ msgstr "Няма такака страница." #: 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,7 +145,7 @@ msgstr "Няма такака страница." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -302,7 +305,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "Грешка при обновяване на потребителя." @@ -324,7 +341,8 @@ 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 "Грешка при запазване на профила." @@ -334,7 +352,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -356,8 +374,8 @@ msgstr[1] "" #: 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/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" @@ -366,14 +384,18 @@ msgstr "Грешка при записване настройките за Twitt #. TRANS: Client error displayed when a database error occurs updating profile colours. #: actions/apiaccountupdateprofilebackgroundimage.php:191 #: actions/apiaccountupdateprofilecolors.php:139 +#: actions/groupdesignsettings.php:266 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. @@ -384,31 +406,38 @@ msgstr "" 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 "Грешка при блокиране на потребителя." @@ -503,7 +532,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:91 msgid "Could not delete favorite." msgstr "Грешка при изтриване на любима бележка." @@ -550,7 +580,7 @@ msgstr "Целевият потребител не беше открит." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Опитайте друг псевдоним, този вече е зает." @@ -560,7 +590,7 @@ msgstr "Опитайте друг псевдоним, този вече е за #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Неправилен псевдоним." @@ -572,7 +602,7 @@ msgstr "Неправилен псевдоним." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "Адресът на личната страница не е правилен URL." @@ -582,7 +612,7 @@ msgstr "Адресът на личната страница не е правил #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -610,7 +640,7 @@ msgstr[1] "Описанието е твърде дълго (до %d символ #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -668,23 +698,27 @@ 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 "Грешка при обновяване на групата." @@ -696,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." @@ -736,7 +772,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 "Не е указана бележка." @@ -759,18 +795,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -790,18 +830,21 @@ 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 IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Неочаквано изпращане на форма." @@ -847,9 +890,9 @@ msgstr "Сметка" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Псевдоним" @@ -857,7 +900,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Парола" @@ -868,7 +911,7 @@ msgstr "Парола" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -941,6 +984,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,40 +1004,52 @@ msgstr "Не можете да повтаряте собствени бележ 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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 "Изтриване на бележката" @@ -1127,51 +1183,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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, fuzzy, php-format msgid "No content for notice %d." msgstr "Търсене в съдържанието на бележките" #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, fuzzy, 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." @@ -1182,108 +1236,137 @@ msgstr "Методът в API все още се разработва." 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 +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 +#. 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 -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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "Не е открит методът в API." - -#: 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. @@ -1291,40 +1374,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +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: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 #, fuzzy, php-format -msgid "Unknown profile %s" +msgid "Unknown profile %s." msgstr "Неподдържан вид файл" #. TRANS: Client error displayed trying to get a non-existing attachment. @@ -1335,10 +1415,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Няма псевдоним." @@ -1370,30 +1451,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Преглед" @@ -1431,7 +1518,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "" @@ -1450,35 +1538,42 @@ msgstr "Неуспешно обновяване на аватара." msgid "Avatar deleted." msgstr "Аватарът е изтрит." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "Фон" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1509,14 +1604,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: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:158 actions/deleteuser.php:156 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Да не се блокира този потребител" @@ -1528,7 +1622,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Да" @@ -1544,31 +1638,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 @@ -1640,23 +1709,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 @@ -1718,7 +1770,8 @@ 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 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Създаване на нова сметка" @@ -1740,8 +1793,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Потвърждаване" @@ -1813,8 +1867,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 "Няма псевдоним." @@ -1867,10 +1923,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1908,103 +1965,138 @@ msgstr "Да не се изтрива бележката" 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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2014,101 +2106,110 @@ 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 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 "Запазване" - +#. 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 #, 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:84 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:99 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. @@ -2207,14 +2308,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "За да редактирате група, трябва да сте влезли." @@ -2277,8 +2380,8 @@ msgstr "Текущ потвърден адрес на е-поща." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Премахване" @@ -2303,15 +2406,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Входяща поща" @@ -2322,13 +2425,13 @@ 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:180 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:189 actions/smssettings.php:182 msgid "Make a new email address for posting to; cancels the old one." msgstr "Задаване на нова е-поща, от която да се публикува. Отменя предишната." @@ -2341,7 +2444,7 @@ 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:199 actions/smssettings.php:185 #, fuzzy msgctxt "BUTTON" msgid "New" @@ -2417,9 +2520,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2435,8 +2539,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Няма потвърждения, очакващи да бъдат отказани." @@ -2448,8 +2552,9 @@ 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:468 actions/smssettings.php:413 +#, fuzzy +msgid "Could not delete email confirmation." msgstr "Грешка при изтриване потвърждението по е-поща." #. TRANS: Message given after successfully canceling e-mail address confirmation. @@ -2468,24 +2573,25 @@ msgstr "Това не е вашият адрес на е-поща." msgid "The email address was removed." msgstr "Входящият адрес на е-поща е премахнат." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Добавен е нов входящ адрес на е-поща." @@ -2579,7 +2685,7 @@ msgstr "Неочакван отговор." msgid "User being listened to does not exist." msgstr "Потребителят, когото проследявате, не съществува. " -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Можете да ползвате локален абонамент!" @@ -2711,47 +2817,48 @@ 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 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, 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:244 msgid "Upload" msgstr "Качване" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Изрязване" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 #, 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:413 msgid "Logo updated." msgstr "Лотого е обновено." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "Неуспешно обновяване на логото." @@ -2832,7 +2939,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Създаване на нова група" @@ -2885,14 +2992,14 @@ msgid "Error removing the block." msgstr "Грешка при повтаряне на бележката." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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 +#: actions/imsettings.php:71 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2902,24 +3009,24 @@ msgstr "" "%). Въведете адреса си в настройките по-долу." #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "Адрес на е-поща" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2933,7 +3040,7 @@ msgstr "" #. 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 " @@ -2943,63 +3050,63 @@ msgstr "" "сте добавили %s в списъка си с приятели в IM или GTalk клиента си." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "Настройки на е-поща" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Изпращане на бележките по Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Публикуване промяната на състоянието ми в Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Публикуване на MicroID за адреса в Jabber/GTalk." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Настройките са запазени." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3009,29 +3116,29 @@ msgstr "" "от %s, трябва да го одобрите." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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 +#: 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 +#: actions/imsettings.php:396 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 +#: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "Входящият адрес на е-поща е премахнат." @@ -3234,131 +3341,145 @@ 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 "" @@ -3383,11 +3504,11 @@ msgstr "Вход" msgid "Login to site" msgstr "Вход в сайта" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Запомни ме" -#: 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 "Автоматично влизане занапред. Да не се ползва на общи компютри!" @@ -3779,7 +3900,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 "Паролата е записана." @@ -3788,7 +3910,8 @@ 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 "Нова парола" @@ -3796,7 +3919,7 @@ msgstr "Нова парола" msgid "6 or more characters" msgstr "6 или повече знака" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Също като паролата по-горе" @@ -3820,11 +3943,12 @@ msgstr "Грешна стара парола" msgid "Error saving user; invalid." msgstr "Грешка при запазване на потребител — невалидност." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Грешка при запазване на новата парола." -#: 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 "Паролата е записана." @@ -4144,44 +4268,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:433 +#: lib/groupeditform.php:146 #, 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Лична страница" #. 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 "Адрес на личната ви страница, блог или профил в друг сайт" @@ -4189,7 +4314,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" @@ -4197,70 +4322,70 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 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" 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 +#: 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 "" @@ -4270,7 +4395,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)." @@ -4278,54 +4403,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 #, 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Създаване на нова сметка" @@ -4437,35 +4558,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 " @@ -4474,67 +4603,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 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: 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 "Също като паролата по-горе" + +#. 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." @@ -4542,24 +4704,35 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Грешка при запазване на новата парола." + +#. 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 "Грешка в настройките на потребителя." -#: 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 "Новата парола е запазена. Влязохте успешно." @@ -4576,7 +4749,7 @@ msgstr "Грешка в кода за потвърждение." msgid "Registration successful" msgstr "Записването е успешно." -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Регистриране" @@ -4602,68 +4775,59 @@ 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 малки букви или цифри, без пунктоация и интервали. Задължително " -"поле." - -#: actions/register.php:438 -msgid "6 or more characters. Required." -msgstr "6 или повече знака. Задължително поле." - -#: actions/register.php:442 -msgid "Same as password above. Required." -msgstr "Същото като паролата по-горе. Задължително поле." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 или повече знака" #. 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 "Е-поща" -#: 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 "Използва се само за промени, обяви или възстановяване на паролата" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "По-дълго име, за предпочитане \"истинското\" ви име." -#: actions/register.php:463 +#: actions/register.php:462 msgid "URL of your homepage, blog, or profile on another site" msgstr "Адрес на личната ви страница, блог или профил в друг сайт" -#: 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 #, 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:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4696,7 +4860,7 @@ msgstr "" "Благодарим, че се включихте в сайта и дано ползването на услугата ви носи " "само приятни мигове!" -#: 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.)" @@ -4704,7 +4868,7 @@ msgstr "" "(Трябва да получите веднага електронно писмо с указания за потвърждаване " "адреса на е-пощата ви.)" -#: actions/remotesubscribe.php:98 +#: actions/remotesubscribe.php:97 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -4716,74 +4880,76 @@ 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 +#: 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 +#: actions/remotesubscribe.php:133 msgid "URL of your profile on another compatible microblogging service" msgstr "Адрес на профила ви в друга, съвместима услуга за микроблогване" -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Абониране" -#: actions/remotesubscribe.php:159 +#: 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 "" "Неправилен адрес на профил (няма документ 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Повторено" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Повторено!" @@ -5004,7 +5170,7 @@ msgstr "Организация" #. 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 "Описание" @@ -5028,8 +5194,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:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Изтриване" @@ -5149,7 +5316,7 @@ msgid "Note" msgstr "Бележка" #. 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 "Псевдоними" @@ -5520,72 +5687,72 @@ 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 +#: 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." @@ -5594,33 +5761,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." @@ -5630,40 +5797,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 " @@ -5673,7 +5840,7 @@ msgstr "" "не фигурира тук, пишете ни на адрес %s." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Не е въведен код." @@ -5927,10 +6094,6 @@ 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 "" @@ -6168,19 +6331,19 @@ 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 "" @@ -7150,24 +7313,28 @@ 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 "" @@ -7699,26 +7866,26 @@ msgid "" msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 #, fuzzy msgid "Go to the installer." msgstr "Влизане в сайта" @@ -7792,12 +7959,22 @@ 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: 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 "Обновяване" +msgid "Couldn't update your design." +msgstr "Грешка при обновяване на потребителя." #. TRANS: Success message displayed if design settings were saved after clicking "Use defaults". #: lib/designsettings.php:433 @@ -7875,34 +8052,30 @@ 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 +#: lib/groupeditform.php:155 #, fuzzy msgid "URL of the homepage or blog of the group or topic." msgstr "Адрес на страница, блог или профил в друг сайт на групата" -#: lib/groupeditform.php:168 +#: lib/groupeditform.php:160 msgid "Describe the group or topic" msgstr "Опишете групата или темата" -#: 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] "Опишете групата или темата в до %d букви" msgstr[1] "Опишете групата или темата в до %d букви" -#: lib/groupeditform.php:182 +#: lib/groupeditform.php:174 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." msgstr "" "Къде се намира групата — град, община, държава и т.н. (ако е приложимо)" -#: lib/groupeditform.php:190 +#: lib/groupeditform.php:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9014,14 +9187,9 @@ msgstr[1] "" 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 шестнадесетични знака." @@ -9061,3 +9229,31 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "Няма такава група" + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "Не е открит методът в API." + +#~ msgid "Reset" +#~ msgstr "Обновяване" + +#~ msgid "" +#~ "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#~ msgstr "" +#~ "От 1 до 64 малки букви или цифри, без пунктоация и интервали. " +#~ "Задължително поле." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 или повече знака. Задължително поле." + +#~ msgid "Same as password above. Required." +#~ msgstr "Същото като паролата по-горе. Задължително поле." + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "От 1 до 64 малки букви или цифри, без пунктоация и интервали" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s не е допустим цвят!" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index 186a2a5670..c40fb0c47e 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:35+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:56:01+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -78,6 +78,7 @@ 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 text for saving "Other settings" in profile. @@ -89,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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Enrollañ" @@ -113,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. @@ -133,8 +136,8 @@ msgstr "N'eus ket eus ar bajenn-se." #: 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,7 +148,7 @@ msgstr "N'eus ket eus ar bajenn-se." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -309,7 +312,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "Dibosupl eo hizivaat an implijer." @@ -331,7 +348,8 @@ 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 "Dibosupl eo enrollañ ar profil." @@ -341,7 +359,7 @@ msgstr "Dibosupl 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -363,8 +381,8 @@ msgstr[1] "" #: 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/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ñ." @@ -372,13 +390,18 @@ 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/groupdesignsettings.php:266 actions/userdesignsettings.php:179 msgid "Could not update your design." msgstr "Dibosupl eo hizivaat ho design." -#: actions/apiatomservice.php:86 +#. TRANS: Title for Atom feed. +#: actions/apiatomservice.php:85 +#, fuzzy +msgctxt "ATOM" msgid "Main" 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. @@ -389,31 +412,38 @@ msgstr "Pennañ" 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 +#. 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 "Pennrolloù" -#: 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 "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." @@ -508,7 +538,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:91 msgid "Could not delete favorite." msgstr "Diposupl eo dilemel ar pennroll-mañ." @@ -556,7 +587,7 @@ msgstr "Dibosupl eo kavout an implijer pal." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Implijet eo dija al lesanv-se. Klaskit unan all." @@ -566,7 +597,7 @@ msgstr "Implijet eo dija al lesanv-se. Klaskit unan all." #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "N'eo ket ul lesanv mat." @@ -578,7 +609,7 @@ msgstr "N'eo ket ul lesanv mat." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "N'eo ket chomlec'h al lec'hienn personel un URL reizh." @@ -588,7 +619,7 @@ msgstr "N'eo ket chomlec'h al lec'hienn personel un URL reizh." #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -616,7 +647,7 @@ msgstr[1] "Re hir eo an deskrivadur (%d arouezenn d'ar muiañ)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -674,22 +705,26 @@ 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 "Dibosupl eo stagañ an implijer %1$s d'ar strollad %2$s." @@ -701,9 +736,11 @@ 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." @@ -740,7 +777,7 @@ 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 +#: actions/apioauthaccesstoken.php:102 #, fuzzy msgid "Invalid request token or verifier." msgstr "Fichenn direizh." @@ -763,18 +800,22 @@ msgid "Request token already authorized." msgstr "N'oc'h ket aotreet." #. 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/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -794,18 +835,21 @@ msgstr "Ur fazi 'zo bet en ur ensoc'hañ an avatar" #. 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 IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Kinnig ar furmskrid dic'hortoz." @@ -850,9 +894,9 @@ msgstr "Kont" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Lesanv" @@ -860,7 +904,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Ger-tremen" @@ -871,7 +915,7 @@ msgstr "Ger-tremen" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -941,6 +985,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 @@ -960,40 +1005,52 @@ msgstr "Ne c'helloc'h ket adlavar ho alioù." msgid "Already repeated that notice." msgstr "Kemenn bet adkemeret dija." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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 !" -#: 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." #. 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 "" +#. 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 "Dibosupl eo dilemel ar c'hemenn-mañ." -#: 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 "Dilemel un ali" @@ -1127,51 +1184,49 @@ msgstr "N'eus nemet an implijerien kevreet hag a c'hell adkemer alioù." 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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, fuzzy, php-format msgid "No content for notice %d." msgstr "Klask alioù en danvez" #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, 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." @@ -1183,108 +1238,137 @@ msgstr "Hentenn API war sevel." msgid "User not found." msgstr "N'eo ket bet kavet an hentenn 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 +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 "" - -#: 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 "Dibosupl eo dilemel ar c'houmanant." -#. 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 "Klask alioù en danvez" -#: 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 +#. TRANS: Client exception thrown when trying favorite a notice without content. +#: actions/atompubfavoritefeed.php:259 #, fuzzy msgid "Unknown note." msgstr "Dianav" -#: 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 "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." - +#. 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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:242 +#, fuzzy +msgid "Can only handle join activities." +msgstr "Klask alioù en danvez" -#: 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 "Dianav" -#: 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 "An holl izili" -#: 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 "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" +msgid "Cannot delete someone else's favorite." msgstr "Diposupl eo dilemel ar pennroll-mañ." -#: actions/atompubshowmembership.php:81 -msgid "No such group" -msgstr "N'eus ket eus ar strollad-se" +#. 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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. 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 "An holl izili" -#: actions/atompubshowmembership.php:115 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "N'eo ket bet kavet an hentenn API !" - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "" +msgid "Cannot delete someone else's membership." +msgstr "Dibosupl eo dilemel ar c'houmanant." #. 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. @@ -1292,40 +1376,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +msgid "No such profile id: %d." msgstr "N'eus ket eus ar profil-se." #. 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" +msgid "Profile %1$d not subscribed to profile %2$d." msgstr "N'oc'h ket koumanantet d'ar profil-se." #. 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" +msgid "Cannot delete someone else's subscription." 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 error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 #, fuzzy, php-format -msgid "Unknown profile %s" +msgid "Unknown profile %s." msgstr "Dizanv eo seurt ar restr" #. TRANS: Client error displayed trying to get a non-existing attachment. @@ -1336,10 +1417,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Lesanv ebet." @@ -1370,30 +1452,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Rakwelet" @@ -1428,7 +1516,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Kollet eo bet roadennoù." @@ -1447,35 +1536,42 @@ msgstr "Ur gudenn 'zo bet e-pad hizivadenn an avatar." msgid "Avatar deleted." msgstr "Dilammet eo bet an Avatar." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "N'eus nemet an implijerien kevreet hag a c'hell adkemer alioù." +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "Background" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1506,14 +1602,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Arabat stankañ an implijer-mañ" @@ -1525,7 +1620,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Ya" @@ -1541,31 +1636,6 @@ msgstr "Stankañ an implijer-mañ" msgid "Failed to save block information." msgstr "Dibosupl 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." - #. TRANS: Title for first page with list of users blocked from a group. #. TRANS: %s is a group nickname. #: actions/blockedfromgroup.php:101 @@ -1636,23 +1706,6 @@ 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 "Dibosupl 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 @@ -1714,7 +1767,8 @@ msgid "Account deleted." msgstr "Dilammet eo bet an Avatar." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Krouiñ ur gont" @@ -1736,8 +1790,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Kadarnaat" @@ -1809,8 +1864,10 @@ msgid "You must be logged in to delete a group." msgstr "Ret eo deoc'h bezañ kevreet evit kuitaat 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." @@ -1861,10 +1918,11 @@ msgid "Delete this group" msgstr "Diverkañ an implijer-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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1902,97 +1960,132 @@ msgstr "Arabat dilemel ar c'hemenn-mañ" 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 +#, fuzzy +msgctxt "TITLE" msgid "Delete user" msgstr "Diverkañ an implijer" -#: actions/deleteuser.php:136 +#. TRANS: Fieldset legend on delete user page. +#: actions/deleteuser.php:134 +msgid "Delete user" +msgstr "Diverkañ an implijer" + +#. 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 ar c'hemenn-mañ" + #. 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 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 +#. TRANS: Client error displayed when an SSL logo URL is invalid. +#: actions/designadminpanel.php:333 #, fuzzy msgid "Invalid SSL logo URL." msgstr "URL fall evit al 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 "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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2000,98 +2093,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 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 "Adlakaat an neuz dre ziouer." +#. 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 "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 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 "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:84 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:99 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. @@ -2183,14 +2286,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "Rankout a reer bezañ merour evit kemmañ ar strollad." @@ -2251,8 +2356,8 @@ msgstr "Chomlec'h postel gwiriekaet er mare-mañ." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Dilemel" @@ -2275,15 +2380,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Postel o tont" @@ -2294,14 +2399,14 @@ 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:180 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:189 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" @@ -2315,7 +2420,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Nevez" @@ -2391,9 +2496,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2406,8 +2512,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Kadarnadenn ebet da vezañ nullet." @@ -2418,8 +2524,9 @@ 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." +#: actions/emailsettings.php:468 actions/smssettings.php:413 +#, fuzzy +msgid "Could not delete email confirmation." msgstr "Dibosupl eo dilemel ar postel kadarnadur." #. TRANS: Message given after successfully canceling e-mail address confirmation. @@ -2438,24 +2545,25 @@ msgstr "N'eo ket ho postel." msgid "The email address was removed." msgstr "Dilamet eo bet ar chomlec'h postel." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, fuzzy +msgid "Could not update user record." msgstr "Dibosupl eo hizivaat doser an implijer." #. TRANS: Message given after successfully removing an incoming e-mail address. -#: actions/emailsettings.php:544 actions/smssettings.php:581 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Ouzhpennet ez eus bet ur chomlec'h postel nevez o tont tre" @@ -2552,7 +2660,7 @@ msgstr "Ne oa ket gortozet ar respont-mañ !" msgid "User being listened to does not exist." msgstr "" -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 #, fuzzy msgid "You can use the local subscription!" msgstr "Dibosupl eo dilemel ar c'houmanant." @@ -2681,45 +2789,47 @@ 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 -msgid "Couldn't update your design." -msgstr "Dibosupl eo hizivaat ho design." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, 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:244 msgid "Upload" msgstr "Enporzhiañ" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Adframmañ" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 #, 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:413 msgid "Logo updated." msgstr "Logo hizivaet." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "N'eo ket bet kaset da benn an hizivadenn." @@ -2799,7 +2909,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Krouiñ ur strollad nevez" @@ -2856,14 +2966,14 @@ 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 +#: 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](%%" @@ -2871,23 +2981,23 @@ msgid "" msgstr "" #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "Chomlec'h postelerezh prim" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2899,7 +3009,7 @@ msgstr "" #. 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 " @@ -2907,65 +3017,65 @@ msgid "" msgstr "" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "Penndibaboù ar bostelerezh prim" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Kas din an alioù dre Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 #, fuzzy msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Embann ur MicroID evit ma chomlec'h Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 #, fuzzy msgid "Send me replies through Jabber/GTalk 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk 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 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Penndibaboù enrollet" #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 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 +#: actions/imsettings.php:317 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2973,29 +3083,29 @@ msgid "" msgstr "" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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 +#: 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 +#: 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: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "Dilamet eo bet ar chomlec'h IM." @@ -3171,131 +3281,145 @@ 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 -#, 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 zo bet 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" @@ -3321,11 +3445,11 @@ msgstr "Kevreañ" msgid "Login to site" msgstr "Kevreañ d'al lec'hienn" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Kaout soñj" -#: 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 "" "Digeriñ va dalc'h war-eeun ar wechoù o tont ; arabat en ober war " @@ -3718,7 +3842,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" @@ -3726,7 +3851,8 @@ 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" @@ -3734,7 +3860,7 @@ msgstr "Ger-tremen nevez" msgid "6 or more characters" msgstr "6 arouezenn pe muioc'h" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Memestra eget ar ger tremen a-us" @@ -3758,11 +3884,12 @@ msgstr "Ger-termen kozh direizh" msgid "Error saving user; invalid." msgstr "Ur fazi 'zo bet e-pad enolladenn an implijer ; diwiriek." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Dibosupl eo enrollañ ar ger-tremen nevez." -#: 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 "Ger-tremen enrollet." @@ -4084,12 +4211,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 "" @@ -4097,33 +4224,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:433 +#: lib/groupeditform.php:146 #, 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Pajenn degemer" #. 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 "URL ho pajenn degemer, ho blog, pe ho profil en ul lec'hienn all" @@ -4131,7 +4259,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:471 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4139,44 +4267,44 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "Balizennoù" #. 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 "" @@ -4184,27 +4312,27 @@ msgstr "" "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 +#: actions/profilesettings.php:171 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 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -4214,7 +4342,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)." @@ -4222,52 +4350,50 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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 "Dibosupl 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 "Dibosupl 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Krouiñ ur gont" @@ -4387,35 +4513,43 @@ msgstr "" msgid "Tag cloud" msgstr "Koumoulenn merkoù" -#: 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." @@ -4423,68 +4557,101 @@ 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. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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 -msgid "Reset" -msgstr "Adderaouekaat" +#. 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 "Memestra eget ar ger tremen a-us" -#: actions/recoverpassword.php:252 +#. 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 "Adderaouiñ" + +#. 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." @@ -4492,24 +4659,35 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Dibosupl eo enrollañ ar ger-tremen nevez." + +#. 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 "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ñ." @@ -4527,7 +4705,7 @@ msgstr "Digarezit, kod pedadenn direizh." msgid "Registration successful" msgstr "Krouet eo bet ar gont." -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Krouiñ ur gont" @@ -4555,69 +4733,61 @@ msgid "" "link up to friends and colleagues. " msgstr "" -#: actions/register.php:433 +#: actions/register.php:437 #, 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." +msgid "6 or more characters." +msgstr "6 arouezenn pe muioc'h" #. 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 "Postel" -#: 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 "" "Implijet hepken evit an hizivadennoù, ar c'hemennoù, pe adtapout gerioù-" "tremen" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Anv hiroc'h, ho anv \"gwir\" a zo gwelloc'h" -#: actions/register.php:463 +#: actions/register.php:462 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:524 +#: actions/register.php:523 #, 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:533 #, 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:537 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:540 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: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 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4636,7 +4806,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: 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.)" @@ -4644,7 +4814,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." @@ -4652,72 +4822,75 @@ 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 +#: actions/remotesubscribe.php:129 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 +#: actions/remotesubscribe.php:133 msgid "URL of your profile on another compatible microblogging service" msgstr "" -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "En em enskrivañ" -#: actions/remotesubscribe.php:159 +#: actions/remotesubscribe.php:158 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Adlavaret" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Adlavaret !" @@ -4939,7 +5112,7 @@ msgstr "Aozadur" #. 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 "Deskrivadur" @@ -4962,8 +5135,9 @@ msgstr "Obererezhioù ar poellad" msgid "Reset key & secret" msgstr "Adderaouekaat an alc'hwez hag ar sekred" +#. TRANS: Title of form for deleting a user. #: actions/showapplication.php:252 lib/deletegroupform.php:121 -#: lib/deleteuserform.php:66 lib/noticelist.php:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Diverkañ" @@ -5082,7 +5256,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Aliasoù" @@ -5464,13 +5638,13 @@ 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 "" @@ -5478,131 +5652,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" 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 " @@ -5610,7 +5784,7 @@ msgid "" msgstr "" #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "N'eo bet lakaet kod ebet" @@ -5871,10 +6045,6 @@ 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." @@ -6105,18 +6275,18 @@ 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 !" @@ -7055,23 +7225,27 @@ 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 "" @@ -7602,26 +7776,26 @@ msgid "" msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Mont d'ar meziant staliañ" @@ -7690,11 +7864,21 @@ 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 -msgctxt "BUTTON" -msgid "Reset" -msgstr "Adderaouiñ" +#. 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: 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 @@ -7774,34 +7958,30 @@ msgstr "Mont" 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 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 #, 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:160 #, fuzzy msgid "Describe the group or topic" msgstr "Deskrivit ho poellad" -#: 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] "Diskrivit ho poellad gant %d arouezenn" msgstr[1] "Diskrivit ho poellad gant %d arouezenn" -#: lib/groupeditform.php:182 +#: lib/groupeditform.php:174 #, 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:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -8913,14 +9093,9 @@ msgstr[1] "tro %d miz zo" msgid "about a year ago" msgstr "bloaz zo well-wazh" -#: lib/webcolor.php:80 -#, 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 +#. 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 "N'eo ket %s ul liv reizh ! Implijit 3 pe 6 arouezenn heksdekvedennel." @@ -8960,3 +9135,30 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "N'eus ket eus ar strollad-se" + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "N'eo ket bet kavet an hentenn API !" + +#~ msgid "Reset" +#~ msgstr "Adderaouekaat" + +#, 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" + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 arouezenn pe muioc'h. Rekis." + +#~ msgid "Same as password above. Required." +#~ msgstr "Memestra hag ar ger-tremen a-us. Rekis." + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "1 da 64 lizherenn vihan pe sifr, hep poentaouiñ nag esaouenn" + +#~ msgid "%s is not a valid color!" +#~ msgstr "n'eo ket %s ul liv reizh !" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 7d05968301..077907af09 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:37+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:56:11+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\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: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -83,6 +83,7 @@ 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 text for saving "Other settings" in profile. @@ -94,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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Desa" @@ -118,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. @@ -138,8 +141,8 @@ msgstr "No existeix la pàgina." #: 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,7 +153,7 @@ msgstr "No existeix la pàgina." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -320,7 +323,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: 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." @@ -342,7 +359,8 @@ 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." @@ -352,7 +370,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -378,8 +396,8 @@ msgstr[1] "" #: 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/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." @@ -387,13 +405,18 @@ 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/groupdesignsettings.php:266 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 +#, fuzzy +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. @@ -404,31 +427,38 @@ msgstr "Principal" 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 +#. 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 preferits" -#: 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 "%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." @@ -520,7 +550,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:91 msgid "Could not delete favorite." msgstr "No s'ha pogut eliminar el preferit." @@ -566,7 +597,7 @@ msgstr "No s'ha pogut trobar l'usuari de destinació." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Aquest sobrenom ja existeix. Prova un altre. " @@ -576,7 +607,7 @@ msgstr "Aquest sobrenom ja existeix. Prova un altre. " #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Sobrenom no vàlid." @@ -588,7 +619,7 @@ msgstr "Sobrenom no vàlid." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "La pàgina personal no és un URL vàlid." @@ -598,7 +629,7 @@ msgstr "La pàgina personal no és un URL vàlid." #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." msgstr "El vostre nom sencer és massa llarg (màx. 255 caràcters)." @@ -625,7 +656,7 @@ msgstr[1] "La descripció és massa llarga (màx. %d caràcters)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 msgid "Location is too long (maximum 255 characters)." msgstr "La localització és massa llarga (màx. 255 caràcters)." @@ -682,22 +713,26 @@ 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." @@ -709,9 +744,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." @@ -748,7 +785,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." @@ -768,18 +805,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -800,18 +841,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Enviament de formulari inesperat." @@ -862,9 +906,9 @@ msgstr "Compte" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Sobrenom" @@ -872,7 +916,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contrasenya" @@ -883,7 +927,7 @@ msgstr "Contrasenya" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -956,6 +1000,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 @@ -975,39 +1020,51 @@ msgstr "No podeu repetir els vostres propis avisos." msgid "Already repeated that notice." msgstr "Avís duplicat." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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 +#. 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 "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 +#, fuzzy +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" @@ -1140,51 +1197,49 @@ msgstr "Només l'usuari pot afegir a la pròpia línia temporal." msgid "Only accept AtomPub for Atom feeds." msgstr "Només accepta AtomPub per als canals Atom." -#: 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 "L'enviament Atom no ha de ser buit." -#: 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 "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:334 +#: actions/apitimelineuser.php:336 msgid "Can only handle POST activities." 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:345 +#: actions/apitimelineuser.php:347 #, php-format msgid "Cannot handle activity object type \"%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:378 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, php-format msgid "No content for notice %d." msgstr "No hi ha contingut de l'avís %d" #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, php-format msgid "Notice with URI \"%s\" already exists." msgstr "L'avís amb URI «%s» amb ja existeix." -#: actions/apitimelineuser.php:437 -#, 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." @@ -1195,96 +1250,130 @@ msgstr "Mètode API en construcció." msgid "User not found." msgstr "No s'ha trobat el mètode API!" -#: actions/atompubfavoritefeed.php:70 -msgid "No such profile" -msgstr "No existeix el perfil" - -#: actions/atompubfavoritefeed.php:145 -#, php-format -msgid "Notices %s has favorited to on %s" -msgstr "Els avisos que %s ha preferit a %s" - -#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222 -msgid "Can't add someone else's subscription" -msgstr "No es pot afegir la subscripció d'algú altre" - -#. 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 "Només es poden gestionar les activitats de preferència." - -#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248 -msgid "Can only fave notices." -msgstr "Només es poden preferir els avisos." - -#: actions/atompubfavoritefeed.php:256 -msgid "Unknown note." -msgstr "Nota desconeguda." - -#: actions/atompubfavoritefeed.php:263 -msgid "Already a favorite." -msgstr "Ja és una preferit." - -#: 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 msgid "No such profile." msgstr "No existeix el perfil." +#. 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 "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 +#, fuzzy +msgid "Can only handle favorite activities." +msgstr "Només es poden gestionar les activitats de preferència." + +#. 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 #, php-format msgid "%s group memberships" msgstr "%s pertinències a grup" -#: actions/atompubmembershipfeed.php:147 -#, php-format -msgid "Groups %s is a member of on %s" -msgstr "Els grups en què %s és membre a %s" - -#: 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 +#, fuzzy +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 -msgid "Can only handle Join activities." +#: actions/atompubmembershipfeed.php:242 +#, fuzzy +msgid "Can only handle join activities." msgstr "Només es poden gestionar les activitats d'unió." -#: 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 "Grup desconegut." -#: 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 "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 "Bloquejat per l'administrador." -#: actions/atompubshowfavorite.php:89 +#. TRANS: Client exception thrown when referencing a non-existing favorite. +#: actions/atompubshowfavorite.php:90 msgid "No such favorite." msgstr "No existeix el preferit." +#. 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" +#, fuzzy +msgid "Cannot delete someone else's favorite." msgstr "No es pot eliminar el preferit d'algú altre" -#: 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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 -msgid "Not a member" +#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group +#: actions/atompubshowmembership.php:91 +#, fuzzy +msgid "Not a member." msgstr "No és un membre" -#: actions/atompubshowmembership.php:115 -msgid "Method not supported" -msgstr "El mètode no està implementat" - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 +#, fuzzy +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. @@ -1292,41 +1381,38 @@ msgstr "No es pot eliminar la pertinència d'algú altre" #: actions/atompubshowsubscription.php:72 #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 -#, php-format -msgid "No such profile id: %d" +#, fuzzy, php-format +msgid "No such profile id: %d." msgstr "No existeix l'id de perfil: %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" +msgid "Profile %1$d not subscribed to profile %2$d." msgstr "El perfil %d no està subscrit al perfil %d" #. 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" +msgid "Cannot delete someone else's subscription." msgstr "No es pot eliminar la subscripció d'algú altre" -#: actions/atompubsubscriptionfeed.php:150 -#, php-format -msgid "People %s has subscribed to on %s" -msgstr "La gent a qui %s s'ha subscrit a %s" - #. TRANS: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 msgid "Can only handle Follow activities." 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:257 msgid "Can only follow people." msgstr "Només es pot seguir gent." -#: actions/atompubsubscriptionfeed.php:262 -#, php-format -msgid "Unknown profile %s" +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 +#, fuzzy, php-format +msgid "Unknown profile %s." msgstr "Perfil desconegut %s" #. TRANS: Client error displayed trying to get a non-existing attachment. @@ -1337,10 +1423,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Cap sobrenom." @@ -1372,30 +1459,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Vista prèvia" @@ -1432,7 +1525,8 @@ msgstr "" "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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "S'ha perdut el nostre fitxer de dades." @@ -1451,35 +1545,42 @@ msgstr "Error en actualitzar avatar." msgid "Avatar deleted." msgstr "S'ha eliminat l'avatar." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "Només els usuaris que han iniciat una sessió poden enviar avisos." +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "Fons" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1513,14 +1614,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "No bloquis l'usuari" @@ -1532,7 +1632,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Sí" @@ -1548,31 +1648,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 @@ -1642,23 +1717,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 @@ -1719,7 +1777,8 @@ msgid "Account deleted." msgstr "S'ha eliminat l'avatar." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Crea un compte" @@ -1741,8 +1800,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Confirma" @@ -1816,8 +1876,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." @@ -1868,10 +1930,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1911,19 +1974,30 @@ msgstr "No eliminis aquest avís" 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 +#, fuzzy +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." @@ -1931,78 +2005,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 grup" + #. 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 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2011,98 +2109,108 @@ 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 +#, fuzzy +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 +#, fuzzy +msgctxt "BUTTON" msgid "Use defaults" msgstr "Utilitza els paràmetres per defecte" +#. 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 "Restaura els dissenys per defecte" +#. 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 "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 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 "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:84 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:99 msgid "Add to favorites" msgstr "Afegeix als preferits" -#: 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 existeix el document «%s»" #. TRANS: Title for "Edit application" form. @@ -2192,14 +2300,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "Heu de ser administrador per editar el grup." @@ -2260,8 +2370,8 @@ msgstr "Adreça electrònica confirmada actualment." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Elimina" @@ -2286,15 +2396,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Correu electrònic entrant" @@ -2305,13 +2415,13 @@ 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:180 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:189 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." @@ -2326,7 +2436,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Nou" @@ -2402,9 +2512,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 actions/imsettings.php:343 +#: actions/smssettings.php:365 +#, fuzzy +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. @@ -2420,8 +2531,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Cap confirmació pendent per cancel·lar." @@ -2432,8 +2543,9 @@ 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:468 actions/smssettings.php:413 +#, fuzzy +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. @@ -2452,24 +2564,25 @@ msgstr "Aquest no és el teu correu electrònic" 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 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, fuzzy +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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Nou correu electrònic entrant afegit." @@ -2568,7 +2681,7 @@ msgstr "Resposta inesperada!" msgid "User being listened to does not exist." msgstr "L'usuari que s'escolta no existeix." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Podeu utilitzar la subscripció local!" @@ -2697,22 +2810,19 @@ 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." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -2720,23 +2830,28 @@ 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:244 msgid "Upload" msgstr "Puja" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Retalla" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "Logo actualitzat." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "Error en actualitzar logo." @@ -2821,7 +2936,7 @@ msgstr "" "agradi? Proveu de [cercar-ne un](%%%%action.groupsearch%%%%) o [comenceu-ne " "un de propi!](%%%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Crea un grup nou" @@ -2877,14 +2992,14 @@ 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 +#: 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](%%" @@ -2894,23 +3009,23 @@ msgstr "" "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 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "Adreça de missatgeria instantània" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2925,7 +3040,7 @@ msgstr "" #. 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 " @@ -2936,65 +3051,65 @@ msgstr "" "missatgeria instantània o al GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "Preferències de MI" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Envia'm avisos per Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 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 IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Envia'm respostes a través de Jabber/GTalk de la gent a la que no estic " "subscrita." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:182 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publica una MicroID per al meu compte de Jabber/GTalk." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "S'han desat les preferències." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 msgid "Cannot normalize that Jabber ID" msgstr "Impossible normalitzar aquest Jabber ID" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:325 +#: actions/imsettings.php:317 msgid "Not a valid Jabber ID" msgstr "Jabber ID no vàlid" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:329 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3004,28 +3119,29 @@ msgstr "" "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 +#: 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." +#: actions/imsettings.php:391 +#, fuzzy +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 +#: 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: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "S'ha eliminat l'adreça de MI." @@ -3227,44 +3343,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 -#, 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 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 -#, 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 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." @@ -3272,88 +3395,95 @@ 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" @@ -3379,11 +3509,11 @@ msgstr "Inici de sessió" msgid "Login to site" msgstr "Accedir al lloc" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Recorda'm" -#: 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 "" "Inicia la sessió automàticament en el futur; no ho activeu en ordinadors " @@ -3778,7 +3908,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." @@ -3786,7 +3917,8 @@ 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" @@ -3794,7 +3926,7 @@ msgstr "Nova contrasenya" msgid "6 or more characters" msgstr "6 o més caràcters" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Igual a la contrasenya de dalt" @@ -3818,11 +3950,12 @@ msgstr "Contrasenya antiga incorrecta" 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 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "No es pot desar la nova contrasenya." -#: 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 "Contrasenya guardada." @@ -4131,12 +4264,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 "" @@ -4144,40 +4277,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:433 +#: lib/groupeditform.php:146 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Pàgina personal" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:125 +#: actions/profilesettings.php:121 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:471 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4185,44 +4319,44 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "Etiquetes" #. 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 "" @@ -4230,27 +4364,27 @@ msgstr "" "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 +#: actions/profilesettings.php:171 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 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -4260,7 +4394,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 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4268,51 +4402,49 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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 +#, fuzzy +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 +#, fuzzy +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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Crea un compte" @@ -4437,35 +4569,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." @@ -4473,69 +4613,102 @@ 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. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 +#, 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 "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 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!" +#. 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 caràcters, i no te n'oblidis!" -#: 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 "Igual a la contrasenya de dalt" + +#. 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." @@ -4543,23 +4716,34 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "No es pot desar la nova contrasenya." + +#. 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 "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ó." @@ -4575,7 +4759,7 @@ msgstr "El codi d'invitació no és vàlid." msgid "Registration successful" msgstr "Registre satisfactori" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Registre" @@ -4603,62 +4787,54 @@ 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." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 o més caràcters" #. 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 "Correu electrònic" -#: 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 "" "Utilitzat només per a actualitzacions, anuncis i recuperació de contrasenya" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Nom llarg, preferiblement el vostre nom «real»" -#: actions/register.php:463 +#: actions/register.php:462 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:524 +#: actions/register.php:523 #, 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:533 #, 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:537 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:540 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:545 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4668,7 +4844,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:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4701,7 +4877,7 @@ msgstr "" "\n" "Gràcies per registrar-vos-hi i esperem que en gaudiu." -#: 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.)" @@ -4709,7 +4885,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." @@ -4721,74 +4897,77 @@ 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 +#: actions/remotesubscribe.php:129 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 +#: actions/remotesubscribe.php:133 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 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Subscriu-m'hi" -#: actions/remotesubscribe.php:159 +#: actions/remotesubscribe.php:158 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 +#, fuzzy +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 +#, fuzzy +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 +#, fuzzy +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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Repetit" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Repetit!" @@ -5016,7 +5195,7 @@ msgstr "Organització" #. 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 "Descripció" @@ -5039,8 +5218,9 @@ msgstr "Accions d'aplicació" msgid "Reset key & secret" msgstr "Reinicialitza la clau i la secreta" +#. TRANS: Title of form for deleting a user. #: actions/showapplication.php:252 lib/deletegroupform.php:121 -#: lib/deleteuserform.php:66 lib/noticelist.php:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Elimina" @@ -5167,7 +5347,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Àlies" @@ -5559,13 +5739,13 @@ 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 "" @@ -5573,58 +5753,58 @@ 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 +#: actions/smssettings.php:152 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." @@ -5633,32 +5813,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." @@ -5668,39 +5848,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 " @@ -5711,7 +5891,7 @@ 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 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "No s'ha introduït cap codi" @@ -5974,10 +6154,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 "" @@ -6211,12 +6387,12 @@ 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." @@ -6224,7 +6400,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à!" @@ -7197,22 +7373,26 @@ 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 +#, fuzzy +msgid "Database error updating OAuth application user." +msgstr "Error de la base de dades en inserir 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." @@ -7772,24 +7952,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:150 +#: lib/common.php:155 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:153 +#: lib/common.php:158 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Vés a l'instal·lador." @@ -7856,11 +8036,21 @@ 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: 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 @@ -7938,33 +8128,28 @@ msgstr "Vés-hi" msgid "Grant this user the \"%s\" role" msgstr "Atorga a l'usuari el rol «%s»" -#: lib/groupeditform.php:154 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" -"1-64 lletres en minúscula o números, sense signes de puntuació o espais" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 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:160 msgid "Describe the group or topic" msgstr "Descriviu el grup o la temàtica" -#: 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" +#: 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." 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:174 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:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9169,14 +9354,9 @@ msgstr[1] "aproximadament fa %d mesos" 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." @@ -9213,3 +9393,32 @@ msgstr "L'XML no és vàlid, hi manca l'arrel XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "Es recupera la còpia de seguretat del fitxer '%s'." + +#~ msgid "No such group" +#~ msgstr "No s'ha trobat el grup." + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "El mètode HTTP no està implementat." + +#~ msgid "Reset" +#~ msgstr "Reinicialitza" + +#~ 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." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 o més caràcters. Requerit." + +#~ msgid "Same as password above. Required." +#~ msgstr "Igual a la contrasenya de dalt. Requerit." + +#~ 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" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s no és un color vàlid!" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index a299248211..2cf23d5bb7 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -11,18 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:38+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:56:16+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\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: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -77,6 +77,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Uložit" @@ -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. @@ -132,8 +135,8 @@ msgstr "Tady žádná taková stránka není." #: 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,7 +147,7 @@ msgstr "Tady žádná taková stránka není." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -313,7 +316,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: 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" @@ -335,7 +352,8 @@ 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." @@ -345,7 +363,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, fuzzy, php-format @@ -374,8 +392,8 @@ msgstr[2] "" #: 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/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." @@ -383,13 +401,17 @@ 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/groupdesignsettings.php:266 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. @@ -400,31 +422,38 @@ msgstr "" 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." @@ -516,7 +545,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:91 msgid "Could not delete favorite." msgstr "Nelze smazat oblíbenou položku." @@ -563,7 +593,7 @@ msgstr "Nepodařilo se najít cílového uživatele." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Přezdívku již někdo používá. Zkuste jinou." @@ -573,7 +603,7 @@ msgstr "Přezdívku již někdo používá. Zkuste jinou." #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Není platnou přezdívkou." @@ -585,7 +615,7 @@ msgstr "Není platnou přezdívkou." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "Domovská stránka není platná URL." @@ -595,7 +625,7 @@ msgstr "Domovská stránka není platná 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:151 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)." @@ -624,7 +654,7 @@ msgstr[2] "Popis je příliš dlouhý (maximálně %d znaků)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -683,22 +713,26 @@ 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." @@ -710,9 +744,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." @@ -749,7 +785,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." @@ -772,18 +808,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -803,18 +843,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Nečekaný požadavek." @@ -866,9 +909,9 @@ msgstr "Účet" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Přezdívka" @@ -876,7 +919,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Heslo" @@ -887,7 +930,7 @@ msgstr "Heslo" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -961,6 +1004,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 @@ -980,40 +1024,52 @@ msgstr "Nelze opakovat své vlastní oznámení." msgid "Already repeated that notice." msgstr "Již jste zopakoval toto oznámení." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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í" @@ -1149,51 +1205,49 @@ 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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, 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:406 +#: actions/apitimelineuser.php:409 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." msgstr "Oznámení s tímto id neexistuje." -#: 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." @@ -1205,108 +1259,137 @@ msgstr "API metoda ve výstavbě." 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 +msgid "No such profile." msgstr "Žádný takový profil." -#: actions/atompubfavoritefeed.php:145 -#, php-format -msgid "Notices %s has favorited to on %s" -msgstr "" - -#: 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 -msgid "No such group" -msgstr "Žádná taková skupina" +#. 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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr " API metoda nebyla nalezena." - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "" +msgid "Cannot delete someone else's membership." +msgstr "Nelze smazat odebírání sebe sama" #. 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. @@ -1314,40 +1397,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +msgid "Cannot delete someone else's subscription." msgstr "Nelze smazat odebírání sebe sama" -#: actions/atompubsubscriptionfeed.php:150 -#, fuzzy, php-format -msgid "People %s has subscribed to on %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 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: 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 get a non-existing attachment. @@ -1358,10 +1438,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Žádná přezdívka." @@ -1392,30 +1473,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Náhled" @@ -1453,7 +1540,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Ztratili jsme údaje souboru." @@ -1472,35 +1560,42 @@ msgstr "Nahrávání obrázku selhalo." msgid "Avatar deleted." msgstr "Avatar smazán." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "Pozadí" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1534,14 +1629,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Zablokovat tohoto uživatele" @@ -1553,7 +1647,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Ano" @@ -1569,31 +1663,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 @@ -1664,23 +1733,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 @@ -1742,7 +1794,8 @@ msgid "Account deleted." msgstr "Avatar smazán." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Zaregistrujte se" @@ -1764,8 +1817,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Potvrdit" @@ -1839,8 +1893,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." @@ -1895,10 +1951,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1938,19 +1995,30 @@ msgstr "Neodstraňujte toto oznámení" 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." @@ -1958,80 +2026,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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2040,98 +2132,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 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 "Obnovit výchozí vzhledy" +#. 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 "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 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 "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:84 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:99 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. @@ -2223,14 +2325,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "K úpravě skupiny musíte být admin." @@ -2291,8 +2395,8 @@ msgstr "Aktuální potvrzená e-mailová adresa." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Odstranit" @@ -2317,15 +2421,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Příchozí e-mail" @@ -2336,13 +2440,13 @@ 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:180 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:189 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." @@ -2355,7 +2459,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Nová" @@ -2429,9 +2533,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2447,8 +2552,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Žádné potvrzení ke zrušení." @@ -2459,8 +2564,9 @@ 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:468 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. @@ -2479,24 +2585,25 @@ msgstr "To není vaše e-mailová adresa." msgid "The email address was removed." msgstr "E-mailová adresa byla odstraněna." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Přidána nová příchozí e-mailová adresa." @@ -2595,7 +2702,7 @@ msgstr "Nečekaná odpověď!" msgid "User being listened to does not exist." msgstr "Úživatel, kterému nasloucháte neexistuje." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Můžete použít místní odebírání." @@ -2724,22 +2831,19 @@ 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." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -2747,23 +2851,28 @@ 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:244 msgid "Upload" msgstr "Upload" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Oříznout" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 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:416 msgid "Failed updating logo." msgstr "Nepodařilo se aktualizovat logo." @@ -2848,7 +2957,7 @@ msgstr "" "Zkuste ji [vyhledat](%%%%action.groupsearch%%%%) nebo [založit!](%%%%action." "newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Vytvořit novou skupinu" @@ -2904,14 +3013,14 @@ msgid "Error removing the block." msgstr "Chyba při odstraňování bloku." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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 +#: actions/imsettings.php:71 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2921,23 +3030,23 @@ msgstr "" "%) .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 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "IM adresa" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2951,7 +3060,7 @@ msgstr "" #. 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 " @@ -2962,64 +3071,64 @@ msgstr "" "nebo na GTalku." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "Nastavení IM" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Zasílat oznámení pomocí Jabber/GTalk" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk 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 +#: actions/imsettings.php:171 msgid "Send me replies through Jabber/GTalk 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk 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 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Nastavení uloženo" #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 msgid "Cannot normalize that Jabber ID" msgstr "Nelze normalizovat tento JabberID" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:325 +#: actions/imsettings.php:317 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3029,28 +3138,29 @@ msgstr "" "posílal zprávy." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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." +#: 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 +#: 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: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "IM adresa byla odstraněna." @@ -3254,132 +3364,146 @@ 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 "" @@ -3403,11 +3527,11 @@ msgstr "Přihlásit" msgid "Login to site" msgstr "Přihlásit se na stránky" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Zapamatuj si mě" -#: 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 "" "Příště automaticky přihlásit; ne pro počítače, které používá více lidí! " @@ -3798,7 +3922,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" @@ -3806,7 +3931,8 @@ 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" @@ -3814,7 +3940,7 @@ msgstr "Nové heslo" msgid "6 or more characters" msgstr "6 a více znaků" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Stejné jako heslo výše" @@ -3838,11 +3964,12 @@ msgstr "Nesprávné staré heslo" msgid "Error saving user; invalid." msgstr "Chyba při ukládaní uživatele; neplatný." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Nelze uložit nové heslo" -#: 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 "Heslo uloženo" @@ -4167,12 +4294,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 "" @@ -4180,33 +4307,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:433 +#: lib/groupeditform.php:146 #, 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Moje stránky" #. 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 "Adresa vašich stránek, blogu nebo profilu na jiných stránkách." @@ -4214,7 +4342,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:471 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4223,70 +4351,70 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "Tagy" #. 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 "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 +#: actions/profilesettings.php:171 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 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -4296,7 +4424,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)." @@ -4305,52 +4433,50 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Zaregistrujte se" @@ -4471,35 +4597,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." @@ -4507,67 +4641,101 @@ 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. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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: 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 "Stejné jako heslo výše" + +#. 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." @@ -4575,24 +4743,35 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Nelze uložit nové heslo" + +#. 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 "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." @@ -4608,7 +4787,7 @@ msgstr "Litujeme, neplatný kód pozvánky." msgid "Registration successful" msgstr "Registrace úspěšná" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrovat" @@ -4636,59 +4815,52 @@ 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é." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 a více znaků" #. 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 "Email" -#: 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 "Použije se pouze pro aktualizace, oznámení a obnovu hesla." -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Delší jméno, nejlépe vaše \"skutečné\" jméno" -#: actions/register.php:463 +#: actions/register.php:462 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:524 +#: actions/register.php:523 #, 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:533 #, 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:537 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:540 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:545 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4697,7 +4869,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:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4730,7 +4902,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:612 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -4738,7 +4910,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." @@ -4749,74 +4921,77 @@ 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 +#: actions/remotesubscribe.php:129 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 +#: actions/remotesubscribe.php:133 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 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Odebírat" -#: actions/remotesubscribe.php:159 +#: actions/remotesubscribe.php:158 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Opakované" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Opakované!" @@ -5044,7 +5219,7 @@ msgstr "Organizace" #. 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 "Popis" @@ -5068,8 +5243,9 @@ msgstr "Akce aplikace" msgid "Reset key & secret" msgstr "Resetovat klíč a tajemství" +#. TRANS: Title of form for deleting a user. #: actions/showapplication.php:252 lib/deletegroupform.php:121 -#: lib/deleteuserform.php:66 lib/noticelist.php:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Odstranit" @@ -5195,7 +5371,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Aliasy" @@ -5584,70 +5760,70 @@ 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 +#: actions/smssettings.php:152 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." @@ -5656,32 +5832,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." @@ -5690,39 +5866,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 " @@ -5732,7 +5908,7 @@ 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 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Nezadán kód" @@ -5996,10 +6172,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 "" @@ -6232,12 +6404,12 @@ 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." @@ -6245,7 +6417,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!" @@ -7211,23 +7383,27 @@ 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 "" @@ -7788,26 +7964,26 @@ msgstr "" "tracking - Dosud neimplementován.\n" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Jdi na instalaci." @@ -7879,12 +8055,21 @@ 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: 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 @@ -7962,28 +8147,24 @@ msgstr "Jdi" msgid "Grant this user the \"%s\" role" msgstr "Dát tomuto uživateli roli \"%s\"" -#: lib/groupeditform.php:154 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 #, 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:160 msgid "Describe the group or topic" msgstr "Popište skupinu nebo téma" -#: 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] "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:174 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." @@ -7991,7 +8172,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:182 #, fuzzy, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9203,14 +9384,9 @@ msgstr[2] "" 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ů." @@ -9247,3 +9423,29 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "Žádná taková skupina" + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr " API metoda nebyla nalezena." + +#~ msgid "Reset" +#~ msgstr "Reset" + +#~ 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é." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 a více znaků. Nutné." + +#~ msgid "Same as password above. Required." +#~ msgstr "Stejné jako heslo uvedeno výše. Povinné." + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "1-64 znaků nebo čísel, bez teček, čárek a mezer" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s není platná barva!" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 763be8a28e..b814ba6076 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -19,17 +19,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:40+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:56:20+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -85,6 +85,7 @@ 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 text for saving "Other settings" in profile. @@ -96,13 +97,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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Speichern" @@ -120,6 +121,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. @@ -140,8 +143,8 @@ msgstr "Seite nicht vorhanden" #: 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 @@ -152,7 +155,7 @@ msgstr "Seite nicht vorhanden" #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -322,7 +325,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "Konnte Benutzerdaten nicht aktualisieren." @@ -344,7 +361,8 @@ 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." @@ -354,7 +372,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -380,8 +398,8 @@ msgstr[1] "" #: 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/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." @@ -389,13 +407,17 @@ 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/groupdesignsettings.php:266 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. @@ -406,31 +428,38 @@ msgstr "" 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 +#. 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 Favoriten" -#: 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 "%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." @@ -525,7 +554,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:91 msgid "Could not delete favorite." msgstr "Konnte Favoriten nicht löschen." @@ -573,7 +603,7 @@ msgstr "Konnte keine Statusmeldungen finden." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Benutzername wird bereits verwendet. Suche dir einen anderen aus." @@ -583,7 +613,7 @@ msgstr "Benutzername wird bereits verwendet. Suche dir einen anderen aus." #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Ungültiger Benutzername." @@ -595,7 +625,7 @@ msgstr "Ungültiger Benutzername." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "" @@ -606,7 +636,7 @@ msgstr "" #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." msgstr "Der bürgerliche Name ist zu lang (maximal 255 Zeichen)." @@ -633,7 +663,7 @@ msgstr[1] "Die Beschreibung ist zu lang (max. %d Zeichen)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 msgid "Location is too long (maximum 255 characters)." msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)." @@ -690,22 +720,26 @@ 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." @@ -717,9 +751,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." @@ -756,7 +792,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." @@ -776,18 +812,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -806,18 +846,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Unerwartete Formulareingabe." @@ -868,9 +911,9 @@ msgstr "Profil" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Benutzername" @@ -878,7 +921,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Passwort" @@ -889,7 +932,7 @@ msgstr "Passwort" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -963,6 +1006,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 @@ -982,39 +1026,51 @@ msgstr "Du kannst deine eigenen Nachrichten nicht wiederholen." msgid "Already repeated that notice." msgstr "Nachricht bereits wiederholt" +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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 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 #, php-format 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 +#, fuzzy +msgid "Cannot delete this notice." msgstr "Die Nachricht konnte nicht gelöscht werden." -#: 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 "Notiz %d löschen" @@ -1154,51 +1210,49 @@ msgstr "Nur der Benutzer selbst kann seinen Posteingang lesen." 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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, php-format msgid "No content for notice %d." msgstr "Kein Inhalt für Nachricht %d." #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, php-format msgid "Notice with URI \"%s\" already exists." msgstr "Nachricht mit URI „%s“ existiert bereits." -#: 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." @@ -1209,142 +1263,171 @@ msgstr "API-Methode im Aufbau." msgid "User not found." msgstr "API-Methode nicht gefunden." -#: actions/atompubfavoritefeed.php:70 -msgid "No such profile" +#. 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 +msgid "No such profile." msgstr "Profil nicht gefunden." -#: actions/atompubfavoritefeed.php:145 -#, php-format -msgid "Notices %s has favorited to on %s" -msgstr "" - -#: 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 +#. TRANS: Client exception thrown when trying favorite a notice without content. +#: actions/atompubfavoritefeed.php:259 msgid "Unknown note." msgstr "Unbekannter Hinweis." -#: actions/atompubfavoritefeed.php:263 +#. TRANS: Client exception thrown when trying favorite an already favorited notice. +#: actions/atompubfavoritefeed.php:267 msgid "Already a favorite." msgstr "Bereits ein Favorit." -#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76 -#: actions/atompubshowmembership.php:73 actions/subscribe.php:107 -msgid "No such profile." -msgstr "Profil nicht gefunden." - +#. TRANS: Title for group membership feed. +#. TRANS: %s is a username. #: actions/atompubmembershipfeed.php:144 #, php-format msgid "%s group memberships" msgstr "%s Gruppen-Mitgliedschaften" -#: actions/atompubmembershipfeed.php:147 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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:242 +#, fuzzy +msgid "Can only handle join activities." +msgstr "Durchsuche den Inhalt der Nachrichten" -#: 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 "Unbekannte Gruppe." -#: 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 "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 "" -#: actions/atompubshowfavorite.php:89 +#. TRANS: Client exception thrown when referencing a non-existing favorite. +#: actions/atompubshowfavorite.php:90 #, fuzzy msgid "No such favorite." msgstr "Datei 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 -msgid "No such group" -msgstr "Keine derartige Gruppe" +#. 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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 -msgid "Not a member" +#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group +#: actions/atompubshowmembership.php:91 +#, fuzzy +msgid "Not a member." msgstr "Kein Mitglied" -#: actions/atompubshowmembership.php:115 -msgid "Method not supported" -msgstr "Methode wird nicht unterstützt" - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "" +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 +#, fuzzy +msgid "Cannot delete someone else's membership." +msgstr "Konnte Selbst-Abonnement nicht löschen." #. 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" +#, fuzzy, 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 "Profile %1$d not subscribed to profile %2$d" +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" +msgid "Cannot delete someone else's subscription." msgstr "Konnte Selbst-Abonnement nicht löschen." -#: actions/atompubsubscriptionfeed.php:150 -#, fuzzy, php-format -msgid "People %s has subscribed to on %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 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 -#, php-format -msgid "Unknown profile %s" +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 +#, fuzzy, php-format +msgid "Unknown profile %s." msgstr "Profil %s ist unbekannt" #. TRANS: Client error displayed trying to get a non-existing attachment. @@ -1355,10 +1438,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Kein Benutzername." @@ -1390,30 +1474,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Vorschau" @@ -1449,7 +1539,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Daten verloren." @@ -1468,35 +1559,42 @@ msgstr "Aktualisierung des Avatars fehlgeschlagen." msgid "Avatar deleted." msgstr "Avatar gelöscht." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "Hintergrund" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1530,14 +1628,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Diesen Benutzer freigeben" @@ -1549,7 +1646,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Ja" @@ -1565,31 +1662,6 @@ msgstr "Diesen Benutzer blockieren" 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 @@ -1659,23 +1731,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 @@ -1736,7 +1791,8 @@ msgid "Account deleted." msgstr "Avatar gelöscht." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Neues Benutzerkonto erstellen" @@ -1758,8 +1814,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Bestätigen" @@ -1832,8 +1889,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" @@ -1884,10 +1943,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1927,19 +1987,30 @@ msgstr "Diese Nachricht nicht löschen" 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 +#, fuzzy +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." @@ -1947,78 +2018,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 "Diese Gruppe nicht löschen" + #. 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 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2028,98 +2123,108 @@ 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 +#, fuzzy +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 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 "Standard-Design wiederherstellen" +#. 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 "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 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 "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:84 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:99 msgid "Add to favorites" msgstr "Zu Favoriten hinzufügen" -#: 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 "Unbekanntes Dokument „%s“" #. TRANS: Title for "Edit application" form. @@ -2210,14 +2315,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "Du musst ein Admin sein, um die Gruppe zu bearbeiten" @@ -2278,8 +2385,8 @@ msgstr "Aktuelle bestätigte E-Mail-Adresse." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Entfernen" @@ -2304,15 +2411,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Eingehende E-Mail" @@ -2323,13 +2430,13 @@ 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:180 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:189 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 " @@ -2344,7 +2451,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Neu" @@ -2420,9 +2527,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2438,8 +2546,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Keine ausstehende Bestätigung, die abgebrochen werden kann." @@ -2450,8 +2558,9 @@ 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:468 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. @@ -2470,24 +2579,25 @@ msgstr "Dies ist nicht deine E-Mail-Adresse." msgid "The email address was removed." msgstr "Die E-Mail-Adresse wurde entfernt." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Neue Eingangs-E-Mail-Adresse hinzugefügt." @@ -2586,7 +2696,7 @@ msgstr "Unerwartete Antwort!" msgid "User being listened to does not exist." msgstr "Aufgeführter Benutzer existiert nicht." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Du kannst ein lokales Abonnement erstellen!" @@ -2717,22 +2827,19 @@ 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." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -2740,23 +2847,28 @@ 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:244 msgid "Upload" msgstr "Hochladen" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Zuschneiden" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "Logo aktualisiert." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "Aktualisierung des Logos fehlgeschlagen." @@ -2841,7 +2953,7 @@ msgstr "" "action.groupsearch%%%%) oder deine eigene [Gruppe aufmachen!](%%%%action." "newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Neue Gruppe erstellen" @@ -2898,14 +3010,14 @@ msgid "Error removing the block." msgstr "Fehler beim Freigeben des Benutzers." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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 +#: actions/imsettings.php:71 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2915,23 +3027,23 @@ msgstr "" "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 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "IM-Adresse" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2946,7 +3058,7 @@ msgstr "" #. 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 " @@ -2957,65 +3069,65 @@ msgstr "" "Programm oder GTalk aufgenommen hast." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "IM-Einstellungen" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Schicke mir Nachrichten mittels Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk 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 +#: actions/imsettings.php:171 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Schicke mir Antworten von Leuten, die ich nicht abonniert habe, mit Jabber/" "GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:182 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk 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 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Einstellungen gesichert." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 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 +#: actions/imsettings.php:317 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3025,28 +3137,29 @@ msgstr "" "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 +#: 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." +#: 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 +#: 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: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "Die IM-Adresse wurde entfernt." @@ -3252,44 +3365,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." @@ -3297,87 +3417,94 @@ 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" @@ -3402,11 +3529,11 @@ msgstr "Anmelden" msgid "Login to site" msgstr "An Seite anmelden" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Anmeldedaten merken" -#: 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 "Automatisch anmelden; nicht bei gemeinsam genutzten PCs einsetzen!" @@ -3800,7 +3927,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" @@ -3808,7 +3936,8 @@ 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" @@ -3816,7 +3945,7 @@ msgstr "Neues Passwort" msgid "6 or more characters" msgstr "6 oder mehr Zeichen" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Gleiches Passwort wie zuvor" @@ -3840,11 +3969,12 @@ msgstr "Altes Passwort falsch" msgid "Error saving user; invalid." msgstr "Fehler beim Speichern des Benutzers, ungültig." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Konnte neues Passwort nicht speichern" -#: 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 "Passwort gespeichert." @@ -4154,12 +4284,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 "" @@ -4167,32 +4297,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:433 +#: lib/groupeditform.php:146 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Homepage" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:125 +#: actions/profilesettings.php:121 msgid "URL of your homepage, blog, or profile on another site." msgstr "" "URL deiner Homepage, deines Blogs, oder deines Profils auf einer anderen " @@ -4201,7 +4332,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 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4209,44 +4340,44 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "Tags" #. 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 "" @@ -4254,27 +4385,27 @@ msgstr "" "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 +#: actions/profilesettings.php:171 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 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -4284,7 +4415,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 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4292,51 +4423,49 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Neues Benutzerkonto erstellen" @@ -4463,35 +4592,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." @@ -4499,67 +4636,100 @@ 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. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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: 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 "Gleiches Passwort wie zuvor" + +#. 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." @@ -4567,23 +4737,34 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Konnte neues Passwort nicht speichern" + +#. 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 "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." @@ -4599,7 +4780,7 @@ msgstr "Entschuldigung, ungültiger Einladungscode." msgid "Registration successful" msgstr "Registrierung erfolgreich" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrieren" @@ -4628,65 +4809,57 @@ 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." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 oder mehr Zeichen" #. 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 "E-Mail" -#: 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 "" "Wird nur für Updates, wichtige Mitteilungen und zur " "Passwortwiederherstellung verwendet" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Längerer Name, bevorzugt dein bürgerlicher Name" -#: actions/register.php:463 +#: actions/register.php:462 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:524 +#: actions/register.php:523 #, 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:533 #, 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:537 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:540 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:545 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4695,7 +4868,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:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4728,7 +4901,7 @@ msgstr "" "\n" "Danke für deine Anmeldung, wir hoffen, dass dir der Service gefällt." -#: 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.)" @@ -4736,7 +4909,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." @@ -4748,73 +4921,76 @@ 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 +#: actions/remotesubscribe.php:129 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 +#: actions/remotesubscribe.php:133 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 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Abonnieren" -#: actions/remotesubscribe.php:159 +#: actions/remotesubscribe.php:158 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Wiederholt" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Wiederholt!" @@ -5043,7 +5219,7 @@ msgstr "Organisation" #. 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 "Beschreibung" @@ -5066,8 +5242,9 @@ msgstr "Programmaktionen" msgid "Reset key & secret" msgstr "Schlüssel zurücksetzen" +#. TRANS: Title of form for deleting a user. #: actions/showapplication.php:252 lib/deletegroupform.php:121 -#: lib/deleteuserform.php:66 lib/noticelist.php:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Löschen" @@ -5195,7 +5372,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Pseudonyme" @@ -5587,70 +5764,70 @@ 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 +#: actions/smssettings.php:152 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." @@ -5659,32 +5836,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." @@ -5694,39 +5871,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 " @@ -5737,7 +5914,7 @@ msgstr "" "s." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Kein Code eingegeben" @@ -5999,10 +6176,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 "" @@ -6235,12 +6408,12 @@ 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." @@ -6248,7 +6421,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ß!" @@ -7221,23 +7394,27 @@ 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." @@ -7796,24 +7973,24 @@ msgstr "" "tracking - noch nicht implementiert\n" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 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:153 +#: lib/common.php:158 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Zur Installation gehen." @@ -7880,11 +8057,21 @@ 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: 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 @@ -7962,31 +8149,27 @@ msgstr "Los geht's" msgid "Grant this user the \"%s\" role" msgstr "Teile dem Benutzer die „%s“-Rolle zu" -#: lib/groupeditform.php:154 -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:155 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:160 msgid "Describe the group or topic" msgstr "Beschreibe die Gruppe oder das Thema" -#: 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" +#: 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." 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:174 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:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9195,14 +9378,9 @@ msgstr[1] "vor ca. %d Monaten" 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." @@ -9241,3 +9419,30 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "Hole Backup von der Datei „%s“." + +#~ msgid "No such group" +#~ msgstr "Keine derartige Gruppe" + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "HTTP-Methode wird nicht unterstützt." + +#~ msgid "Reset" +#~ msgstr "Zurücksetzen" + +#~ msgid "" +#~ "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#~ msgstr "" +#~ "1-64 Kleinbuchstaben oder Zahlen, keine Satz- oder Leerzeichen. Pflicht." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 oder mehr Buchstaben. Pflicht." + +#~ msgid "Same as password above. Required." +#~ msgstr "Gleiches Passwort wie zuvor. Pflichteingabe." + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "1-64 Kleinbuchstaben oder Zahlen, keine Satz- oder Leerzeichen" + +#~ msgid "%s is not a valid color!" +#~ msgstr "„%s“ ist keine gültige Farbe!" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index e4634df86c..42526cb7f3 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -13,17 +13,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:41+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:56: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 (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\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: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -78,6 +78,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Save" @@ -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. @@ -133,8 +136,8 @@ msgstr "No such page." #: 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,7 +148,7 @@ msgstr "No such page." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -314,7 +317,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "Could not update user." @@ -336,7 +353,8 @@ 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." @@ -346,7 +364,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, fuzzy, php-format @@ -372,8 +390,8 @@ msgstr[1] "" #: 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/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." @@ -381,13 +399,17 @@ 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/groupdesignsettings.php:266 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. @@ -398,31 +420,38 @@ msgstr "" 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." @@ -513,7 +542,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:91 msgid "Could not delete favorite." msgstr "Could not delete favourite." @@ -560,7 +590,7 @@ msgstr "Could not find target user." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Nickname already in use. Try another one." @@ -570,7 +600,7 @@ msgstr "Nickname already in use. Try another one." #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Not a valid nickname." @@ -582,7 +612,7 @@ msgstr "Not a valid nickname." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "Homepage is not a valid URL." @@ -592,7 +622,7 @@ msgstr "Homepage is not a valid 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:151 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)." @@ -620,7 +650,7 @@ msgstr[1] "Description is too long (max %d chars)" #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -678,22 +708,26 @@ 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." @@ -705,9 +739,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." @@ -744,7 +780,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." @@ -765,18 +801,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -796,18 +836,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Unexpected form submission." @@ -859,9 +902,9 @@ msgstr "Account" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Nickname" @@ -869,7 +912,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Password" @@ -880,7 +923,7 @@ msgstr "Password" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -952,6 +995,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 @@ -971,40 +1015,52 @@ msgstr "Cannot repeat your own notice." msgid "Already repeated that notice." msgstr "Already repeated that notice." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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" @@ -1138,51 +1194,49 @@ 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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, 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:406 +#: actions/apitimelineuser.php:409 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." msgstr "Notice with that id does not exist." -#: 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." @@ -1193,108 +1247,137 @@ msgstr "API method under construction." 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 +msgid "No such profile." msgstr "No such profile." -#: actions/atompubfavoritefeed.php:145 -#, php-format -msgid "Notices %s has favorited to on %s" -msgstr "" - -#: 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 -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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "API method not found." - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "" +msgid "Cannot delete someone else's membership." +msgstr "Could not delete self-subscription." #. 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. @@ -1302,40 +1385,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +msgid "Cannot delete someone else's subscription." msgstr "Could not delete self-subscription." -#: actions/atompubsubscriptionfeed.php:150 -#, fuzzy, php-format -msgid "People %s has subscribed to on %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 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: 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 get a non-existing attachment. @@ -1346,10 +1426,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "No nickname." @@ -1380,30 +1461,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Preview" @@ -1441,7 +1528,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Lost our file data." @@ -1460,35 +1548,42 @@ msgstr "Failed updating avatar." msgid "Avatar deleted." msgstr "Avatar deleted." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "Background" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1522,14 +1617,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Do not block this user" @@ -1541,7 +1635,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Yes" @@ -1557,31 +1651,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 @@ -1652,23 +1721,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 @@ -1730,7 +1782,8 @@ msgid "Account deleted." msgstr "Avatar deleted." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Create an account" @@ -1752,8 +1805,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Confirm" @@ -1827,8 +1881,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." @@ -1879,10 +1935,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1922,19 +1979,30 @@ msgstr "Do not delete this notice" 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." @@ -1942,78 +2010,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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2023,98 +2115,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 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 "Restore default designs" +#. 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 "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 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 "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:84 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:99 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. @@ -2206,14 +2308,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "You must be an admin to edit the group." @@ -2274,8 +2378,8 @@ msgstr "Current confirmed e-mail 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Remove" @@ -2300,15 +2404,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Incoming e-mail" @@ -2319,13 +2423,13 @@ 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:180 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:189 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." @@ -2338,7 +2442,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "New" @@ -2412,9 +2516,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2429,8 +2534,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "No pending confirmation to cancel." @@ -2441,8 +2546,9 @@ 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:468 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. @@ -2461,24 +2567,25 @@ msgstr "That is not your e-mail address." msgid "The email address was removed." msgstr "The email address was removed." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "New incoming e-mail address added." @@ -2576,7 +2683,7 @@ msgstr "Not expecting this response!" msgid "User being listened to does not exist." msgstr "User being listened to does not exist." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "You can use the local subscription!" @@ -2706,45 +2813,47 @@ 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." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, 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:244 msgid "Upload" msgstr "Upload" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Crop" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "Logo updated." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "Failed updating logo." @@ -2829,7 +2938,7 @@ msgstr "" "for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" "%%%%)" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Create a new group" @@ -2885,14 +2994,14 @@ msgid "Error removing the block." msgstr "Error removing the block." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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 +#: actions/imsettings.php:71 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2902,23 +3011,23 @@ msgstr "" "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 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "IM address" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2932,7 +3041,7 @@ msgstr "" #. 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 " @@ -2942,64 +3051,64 @@ msgstr "" "add %s to your buddy list in your IM client or on GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "IM preferences" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Send me notices through Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Post a notice when my Jabber/GTalk status changes." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Send me replies through Jabber/GTalk from people I'm not subscribed to." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:182 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk 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 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Preferences saved." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 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 +#: actions/imsettings.php:317 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3009,28 +3118,29 @@ msgstr "" "s for sending messages to you." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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." +#: 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 +#: 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: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "The IM address was removed." @@ -3233,131 +3343,145 @@ 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 "" @@ -3381,11 +3505,11 @@ msgstr "Login" msgid "Login to site" msgstr "Login to site" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Remember me" -#: 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 "Automatically login in the future; not for shared computers!" @@ -3773,7 +3897,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" @@ -3781,7 +3906,8 @@ 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" @@ -3789,7 +3915,7 @@ msgstr "New password" msgid "6 or more characters" msgstr "6 or more characters" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Same as password above" @@ -3813,11 +3939,12 @@ msgstr "Incorrect old password" msgid "Error saving user; invalid." msgstr "Error saving user; invalid." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Can't save new password." -#: 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 "Password saved." @@ -4133,45 +4260,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:433 +#: lib/groupeditform.php:146 #, 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Homepage" #. 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 "URL of your homepage, blog, or profile on another site" @@ -4179,7 +4307,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:471 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4187,71 +4315,71 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "Tags" #. 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 "" "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 +#: actions/profilesettings.php:171 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 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -4260,7 +4388,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)." @@ -4268,52 +4396,50 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Create an account" @@ -4436,35 +4562,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." @@ -4472,67 +4606,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 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: 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 "Same as password above" + +#. 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." @@ -4540,24 +4707,35 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Can't save new password." + +#. 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 "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." @@ -4573,7 +4751,7 @@ msgstr "Sorry, invalid invitation code." msgid "Registration successful" msgstr "Registration successful" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Register" @@ -4599,59 +4777,52 @@ 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 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." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 or more characters" #. 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 "E-mail" -#: 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 "Used only for updates, announcements, and password recovery" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Longer name, preferably your \"real\" name" -#: actions/register.php:463 +#: actions/register.php:462 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: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, " @@ -4660,7 +4831,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:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4693,7 +4864,7 @@ msgstr "" "\n" "Thanks for signing up and we hope you enjoy using this service." -#: 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.)" @@ -4701,7 +4872,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." @@ -4712,72 +4883,75 @@ 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 +#: actions/remotesubscribe.php:129 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 +#: actions/remotesubscribe.php:133 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 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Subscribe" -#: actions/remotesubscribe.php:159 +#: actions/remotesubscribe.php:158 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Repeated" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Repeated!" @@ -5000,7 +5174,7 @@ msgstr "Organization" #. 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 "Description" @@ -5023,8 +5197,9 @@ msgstr "Application actions" 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:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Delete" @@ -5149,7 +5324,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "" @@ -5533,70 +5708,70 @@ 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 +#: actions/smssettings.php:152 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." @@ -5605,32 +5780,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." @@ -5639,39 +5814,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 " @@ -5681,7 +5856,7 @@ 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 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "No code entered" @@ -5938,10 +6113,6 @@ msgid "" 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." @@ -6172,12 +6343,12 @@ 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." @@ -6185,7 +6356,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 "" @@ -7135,23 +7306,27 @@ 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 "" @@ -7698,26 +7873,26 @@ msgstr "" "tracking - not yet implemented.\n" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Go to the installer." @@ -7785,12 +7960,21 @@ 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: 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 @@ -7868,34 +8052,30 @@ msgstr "Go" 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 lowercase letters or numbers, no punctuation or spaces" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 #, 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:160 msgid "Describe the group or topic" msgstr "Describe the group or topic" -#: 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] "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:174 #, 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:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9004,14 +9184,9 @@ msgstr[1] "" 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." @@ -9047,3 +9222,30 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "No such group." + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "API method not found." + +#~ msgid "Reset" +#~ msgstr "Reset" + +#~ msgid "" +#~ "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#~ msgstr "" +#~ "1-64 lowercase letters or numbers, no punctuation or spaces. Required." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 or more characters. Required." + +#~ msgid "Same as password above. Required." +#~ msgstr "Same as password above. Required." + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "1-64 lowercase letters or numbers, no punctuation or spaces" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s is not a valid colour!" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index 1b69f13b35..d4b72d3e9b 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -17,17 +17,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:42+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:56:29+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\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: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -82,6 +82,7 @@ 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 text for saving "Other settings" in profile. @@ -93,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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Konservu" @@ -117,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. @@ -137,8 +140,8 @@ msgstr "Ne estas tiu paĝo." #: 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,7 +152,7 @@ msgstr "Ne estas tiu paĝo." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -318,7 +321,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "Malsukcesis ĝisdatigi uzanton" @@ -340,7 +357,8 @@ 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." @@ -350,7 +368,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -376,8 +394,8 @@ msgstr[1] "" #: 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/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" @@ -385,13 +403,18 @@ 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/groupdesignsettings.php:266 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 "Ĉ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. @@ -402,31 +425,38 @@ msgstr "Ĉefa" 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 +#. 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 da ŝatolisteroj" -#: 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 "%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." @@ -516,7 +546,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:91 msgid "Could not delete favorite." msgstr "Malsukcesis forigi ŝataton." @@ -562,7 +593,7 @@ msgstr "Malsukcesis trovi celan uzanton." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "La uzantnomo jam uziĝis. Provu ion alian." @@ -572,7 +603,7 @@ msgstr "La uzantnomo jam uziĝis. Provu ion alian." #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Ne valida kromnomo." @@ -584,7 +615,7 @@ msgstr "Ne valida kromnomo." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "Ĉefpaĝo ne estas valida URL." @@ -594,7 +625,7 @@ msgstr "Ĉefpaĝo ne estas valida 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:151 actions/profilesettings.php:256 +#: actions/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." msgstr "Kompleta nomo tro longas (maksimume 255 signoj)" @@ -621,7 +652,7 @@ msgstr[1] "Priskribo estas tro longa (maksimume %d signoj)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 msgid "Location is too long (maximum 255 characters)." msgstr "Lokonomo tro longas (maksimume 255 signoj)" @@ -678,22 +709,26 @@ 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." @@ -705,9 +740,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." @@ -744,7 +781,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." @@ -764,18 +801,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -795,18 +836,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Neatendita formo-sendo." @@ -857,9 +901,9 @@ msgstr "Konto" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Kromnomo" @@ -867,7 +911,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Pasvorto" @@ -878,7 +922,7 @@ msgstr "Pasvorto" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -952,6 +996,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 @@ -971,40 +1016,52 @@ msgstr "Vi ne povas ripeti vian propran avizon." msgid "Already repeated that notice." msgstr "La avizo jam ripetiĝis." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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" @@ -1140,51 +1197,49 @@ 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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, 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:406 +#: actions/apitimelineuser.php:409 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." msgstr "Avizo kun tiu identigaĵo ne ekzistas." -#: 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." @@ -1196,109 +1251,137 @@ msgstr "API-metodo farata." 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 +msgid "No such profile." msgstr "Ne ekzistas tia profilo." -#: actions/atompubfavoritefeed.php:145 -#, php-format -msgid "Notices %s has favorited to on %s" -msgstr "" - -#: 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 "Eraris enmeti novan abonon." -#. 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 "Serĉi enhavon ĉe la retejo" -#: 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 "Serĉi enhavon ĉe la retejo" -#: actions/atompubfavoritefeed.php:256 +#. 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." - +#. 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 "Eraris enmeti novan abonon." #. 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" -#: 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." +#. 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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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" +msgid "Not a member." msgstr "Ĉiuj grupanoj" -#: actions/atompubshowmembership.php:115 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "Metodo de API ne troviĝas." - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "" +msgid "Cannot delete someone else's membership." +msgstr "Ne eblas forigi abonon al vi mem." #. 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. @@ -1306,40 +1389,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +msgid "No such profile id: %d." msgstr "Ne ekzistas tia 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" +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" +msgid "Cannot delete someone else's subscription." msgstr "Ne eblas forigi abonon al vi mem." -#: actions/atompubsubscriptionfeed.php:150 -#, fuzzy, php-format -msgid "People %s has subscribed to on %s" -msgstr "Abonantoj de %s" - #. TRANS: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 #, fuzzy, php-format -msgid "Unknown profile %s" +msgid "Unknown profile %s." msgstr "Nekonata dosiertipo" #. TRANS: Client error displayed trying to get a non-existing attachment. @@ -1350,10 +1430,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Neniu kromnomo." @@ -1384,30 +1465,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Antaŭrigardo" @@ -1445,7 +1532,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Perdiĝis nia dosiera datumo." @@ -1464,35 +1552,42 @@ msgstr "Eraris ĝisdatigi vizaĝbildon." msgid "Avatar deleted." msgstr "Vizaĝbildo forigita." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "Fono" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1525,14 +1620,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Ne bloki la uzanton" @@ -1544,7 +1638,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Jes" @@ -1560,31 +1654,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 @@ -1655,23 +1724,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 @@ -1733,7 +1785,8 @@ msgid "Account deleted." msgstr "Vizaĝbildo forigita." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Krei konton" @@ -1755,8 +1808,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Konfirmi" @@ -1830,8 +1884,10 @@ msgid "You must be logged in to delete a group." msgstr "Ensalutu por eksaniĝi." #. 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." @@ -1886,10 +1942,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1928,19 +1985,30 @@ msgstr "Ne forigi la avizon" 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." @@ -1948,80 +2016,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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2029,98 +2121,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 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 "Restaŭri defaŭltajn desegnojn" +#. 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 "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 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 "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:84 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:99 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. @@ -2212,14 +2314,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "Vi devas esti administranto por redakti la grupon." @@ -2280,8 +2384,8 @@ msgstr "Nuna konfirmita retpoŝtadreso." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Forigi" @@ -2306,15 +2410,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Alveninta poŝto" @@ -2325,13 +2429,13 @@ 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:180 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:189 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." @@ -2344,7 +2448,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Nova" @@ -2418,9 +2522,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2435,8 +2540,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Ne estas peto-konfirmo por nuligi." @@ -2447,8 +2552,9 @@ 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:468 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. @@ -2467,24 +2573,25 @@ msgstr "Tiu ne estas via retpoŝtadreso." msgid "The email address was removed." msgstr "La retpoŝtadreso estas forigita." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Nova alvena retpoŝtadreso aldonita." @@ -2581,7 +2688,7 @@ msgstr "Neatendita respondo!" msgid "User being listened to does not exist." msgstr "Vizitata uzanto ne ekzistas." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Vi povas aboni loke!" @@ -2708,45 +2815,47 @@ msgid "" "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." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, 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:244 msgid "Upload" msgstr "Alŝuti" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Tranĉi" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "Emblemo ĝisdatigita." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "Malsukcesis ĝisdatigi emblemon." @@ -2831,7 +2940,7 @@ msgstr "" "(%%%%action.groupsearch%%%%) aŭ [kreu vian propran grupon!](%%%%action." "newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Krei novan grupon" @@ -2887,14 +2996,14 @@ msgid "Error removing the block." msgstr "Eraro ĉe provo malbloki." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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 +#: actions/imsettings.php:71 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2904,23 +3013,23 @@ msgstr "" "%). 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 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "Tujmesaĝila adreso" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2934,7 +3043,7 @@ msgstr "" #. 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 " @@ -2944,64 +3053,64 @@ msgstr "" "s al via amikolisto je via tujmesaĝilo-kliento aŭ je GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "Tujmesaĝilaj preferoj" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Sendu al mi avizojn per Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk 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 +#: actions/imsettings.php:171 msgid "Send me replies through Jabber/GTalk 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk 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 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Prefero konservita." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 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 +#: actions/imsettings.php:317 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3011,28 +3120,29 @@ msgstr "" "al %s sendi mesaĝojn al vi." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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." +#: 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 +#: 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: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "La tujmesaĝila adreso estas forigita." @@ -3232,131 +3342,145 @@ 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 "" @@ -3380,11 +3504,11 @@ msgstr "Ensaluti" msgid "Login to site" msgstr "Ensaluti al la retejo" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Memoru min" -#: 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 "Aŭtomate ensaluti estonte; ne taŭge por komuna komputilo!" @@ -3771,7 +3895,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" @@ -3779,7 +3904,8 @@ 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" @@ -3787,7 +3913,7 @@ msgstr "Nova pasvorto" msgid "6 or more characters" msgstr "6 aŭ pli da literoj" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Same kiel pasvorto supra" @@ -3811,11 +3937,12 @@ msgstr "Neĝusta malnova pasvorto" msgid "Error saving user; invalid." msgstr "Eraris konservi uzanton: nevalida." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Malsukcesis konservi novan pasvorton." -#: 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 "Pasvorto konservitas." @@ -4123,12 +4250,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 "" @@ -4136,33 +4263,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:433 +#: lib/groupeditform.php:146 #, 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Hejmpaĝo" #. 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 "URL de via hejmpaĝo, blogo aŭ profilo ĉe alia retejo" @@ -4170,7 +4298,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:471 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4178,44 +4306,44 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "Markiloj" #. 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 "" @@ -4223,27 +4351,27 @@ msgstr "" "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 +#: actions/profilesettings.php:171 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 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "Aŭtomate aboni iun ajn, kiu abonas min (prefereble por ne-homoj)" @@ -4251,7 +4379,7 @@ 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:229 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4259,52 +4387,50 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Krei konton" @@ -4424,35 +4550,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." @@ -4460,67 +4594,101 @@ 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 +#, fuzzy +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 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: 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 "Same kiel pasvorto supra" + +#. 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." @@ -4528,24 +4696,35 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Malsukcesis konservi novan pasvorton." + +#. 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 "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." @@ -4561,7 +4740,7 @@ msgstr "Pardonon, nevalida invitkodo." msgid "Registration successful" msgstr "Registriĝo sukcesa" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Registri" @@ -4589,61 +4768,53 @@ 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." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 aŭ pli da literoj" #. 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 "Retpoŝto" -#: 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 "Uzu nur por ĝisdatigo, anonco, kaj rehavi pasvorton." -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Pli longa nomo, prefere via \"vera\" nomo." -#: actions/register.php:463 +#: actions/register.php:462 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:524 +#: actions/register.php:523 #, 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:533 #, 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:537 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:540 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:545 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4652,7 +4823,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:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4684,14 +4855,14 @@ msgstr "" "\n" "Dankon pro registriĝo, kaj ni esperas al vi ĝuon de uzi ĉi servon." -#: 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.)" 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." @@ -4702,73 +4873,76 @@ 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 +#: actions/remotesubscribe.php:129 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 +#: actions/remotesubscribe.php:133 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 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Aboni" -#: actions/remotesubscribe.php:159 +#: actions/remotesubscribe.php:158 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Ripetita" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Ripetita!" @@ -4997,7 +5171,7 @@ msgstr "Organizaĵo" #. 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 "Priskribo" @@ -5020,8 +5194,9 @@ msgstr "Aplikaĵa ago" msgid "Reset key & secret" msgstr "Rekomencigi ŝlosilon & sekreton" +#. TRANS: Title of form for deleting a user. #: actions/showapplication.php:252 lib/deletegroupform.php:121 -#: lib/deleteuserform.php:66 lib/noticelist.php:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Forigi" @@ -5146,7 +5321,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Alnomo" @@ -5533,70 +5708,70 @@ 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 +#: actions/smssettings.php:152 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." @@ -5605,32 +5780,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." @@ -5639,39 +5814,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 " @@ -5681,7 +5856,7 @@ 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 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Neniu kodo entajpita" @@ -5939,10 +6114,6 @@ 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." @@ -6171,18 +6342,18 @@ 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!" @@ -7140,23 +7311,27 @@ 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." @@ -7715,26 +7890,26 @@ msgstr "" "tracking -ankoraŭ ne realigita.\n" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Al la instalilo." @@ -7805,12 +7980,21 @@ 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: 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 @@ -7888,34 +8072,30 @@ msgstr "Iri" msgid "Grant this user the \"%s\" role" msgstr "Donu al la uzanto rolon \"%s\"" -#: lib/groupeditform.php:154 -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:155 #, 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:160 msgid "Describe the group or topic" msgstr "Priskribo de grupo aŭ temo" -#: 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] "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:174 #, 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:182 #, fuzzy, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9120,14 +9300,9 @@ msgstr[1] "antaŭ ĉirkaŭ %d monatoj" 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." @@ -9163,3 +9338,31 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#, fuzzy +#~ msgid "No such group" +#~ msgstr "Ne estas tiu grupo." + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "Metodo de API ne troviĝas." + +#~ msgid "Reset" +#~ msgstr "Restarigi" + +#~ msgid "" +#~ "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#~ msgstr "" +#~ "1-64 minusklaj literoj aŭ ciferoj, neniu interpunkcio aŭ spaco. Bezonate." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 aŭ pli da literoj. Bezonate." + +#~ msgid "Same as password above. Required." +#~ msgstr "Same kiel supra pasvorto. Bezonate." + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "1-64 minusklaj literoj aŭ ciferoj, neniu interpunkcio aŭ spaco" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s ne estas valida koloro!" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index e0fe7a83df..155932d023 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -5,6 +5,7 @@ # Author: Crazymadlover # Author: Locos epraix # Author: McDutchie +# Author: Ovruni # Author: Patcito # Author: PerroVerd # Author: Peter17 @@ -16,17 +17,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:43+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:56:33+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -81,6 +82,7 @@ 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 text for saving "Other settings" in profile. @@ -92,13 +94,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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Guardar" @@ -116,6 +118,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. @@ -136,8 +140,8 @@ msgstr "No existe tal página." #: 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,7 +152,7 @@ msgstr "No existe tal página." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -318,7 +322,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "No se pudo actualizar el usuario." @@ -340,7 +358,8 @@ 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." @@ -350,7 +369,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, fuzzy, php-format @@ -376,8 +395,8 @@ msgstr[1] "" #: 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/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." @@ -385,13 +404,17 @@ 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/groupdesignsettings.php:266 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. @@ -402,31 +425,38 @@ msgstr "" 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." @@ -517,7 +547,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:91 msgid "Could not delete favorite." msgstr "No se pudo borrar favorito." @@ -564,7 +595,7 @@ msgstr "No se pudo encontrar ningún usuario de destino." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "El usuario ya existe. Prueba con otro." @@ -574,7 +605,7 @@ msgstr "El usuario ya existe. Prueba con otro." #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Usuario inválido" @@ -586,7 +617,7 @@ msgstr "Usuario invá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:147 actions/profilesettings.php:252 +#: actions/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "La página de inicio no es un URL válido." @@ -596,7 +627,7 @@ msgstr "La página de inicio no es un URL válido." #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -624,7 +655,7 @@ msgstr[1] "La descripción es demasiado larga (máx. %d caracteres)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -682,22 +713,26 @@ 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" @@ -709,9 +744,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." @@ -748,7 +785,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." @@ -771,18 +808,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -803,18 +844,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Envío de formulario inesperado." @@ -857,7 +901,6 @@ msgstr "" #. TRANS: Fieldset legend. #: actions/apioauthauthorize.php:455 -#, fuzzy msgctxt "LEGEND" msgid "Account" msgstr "Cuenta" @@ -866,9 +909,9 @@ msgstr "Cuenta" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Usuario" @@ -876,7 +919,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contraseña" @@ -887,7 +930,7 @@ msgstr "Contraseña" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -961,6 +1004,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 @@ -980,40 +1024,52 @@ msgstr "No puedes repetir tus propios mensajes" msgid "Already repeated that notice." msgstr "Este mensaje ya se ha repetido." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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" @@ -1149,51 +1205,49 @@ 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 "" #. TRANS: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/apitimelineuser.php:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, fuzzy, php-format msgid "No content for notice %d." msgstr "Buscar en el contenido de mensajes" #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." msgstr "No existe ningún mensaje con ese ID." -#: 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." @@ -1204,108 +1258,137 @@ msgstr "Método API en construcción." 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 +msgid "No such profile." msgstr "No existe tal perfil." -#: actions/atompubfavoritefeed.php:145 -#, php-format -msgid "Notices %s has favorited to on %s" -msgstr "" - -#: 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 "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 "" +#. 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 en el contenido de mensajes" -#: 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 en el contenido de mensajes" -#: actions/atompubfavoritefeed.php:256 +#. TRANS: Client exception thrown when trying favorite a notice without content. +#: actions/atompubfavoritefeed.php:259 #, fuzzy msgid "Unknown note." msgstr "Desconocido" -#: 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 "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." - +#. TRANS: Title for group membership feed. +#. TRANS: %s is a username. #: 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 exception thrown when trying subscribe someone else to a group. +#: actions/atompubmembershipfeed.php:219 +#, fuzzy +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/atompubmembershipfeed.php:241 -msgid "Can only handle Join activities." -msgstr "" +#: actions/atompubmembershipfeed.php:242 +#, fuzzy +msgid "Can only handle join activities." +msgstr "Buscar en el contenido de mensajes" -#: 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 -msgid "No such group" -msgstr "No existe ese grupo" +#. 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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "Método de API no encontrado." - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "" +msgid "Cannot delete someone else's membership." +msgstr "No se pudo eliminar la auto-suscripción." #. 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. @@ -1313,40 +1396,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +msgid "Cannot delete someone else's subscription." msgstr "No se pudo eliminar la auto-suscripción." -#: actions/atompubsubscriptionfeed.php:150 -#, fuzzy, php-format -msgid "People %s has subscribed to on %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 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: 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 get a non-existing attachment. @@ -1357,10 +1437,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Ningún nombre de usuario." @@ -1391,37 +1472,42 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Vista previa" #. 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 -#, fuzzy msgctxt "BUTTON" msgid "Delete" msgstr "Borrar" @@ -1429,7 +1515,6 @@ msgstr "Borrar" #. 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 -#, fuzzy msgctxt "BUTTON" msgid "Upload" msgstr "Subir" @@ -1452,7 +1537,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Se perdió nuestros datos de archivo." @@ -1471,35 +1557,42 @@ msgstr "Error al actualizar la imagen." msgid "Avatar deleted." msgstr "Imagen borrada." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "Fondo" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1533,14 +1626,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "No bloquear a este usuario" @@ -1552,7 +1644,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Sí" @@ -1568,31 +1660,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 @@ -1664,23 +1731,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 @@ -1742,7 +1792,8 @@ msgid "Account deleted." msgstr "Imagen borrada." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Crear una cuenta" @@ -1764,8 +1815,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Confirmar" @@ -1840,8 +1892,10 @@ msgid "You must be logged in to delete a group." msgstr "Debes estar conectado para dejar 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." @@ -1868,9 +1922,8 @@ msgstr "%1$s ha dejado el grupo %2$s" #. 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 @@ -1885,21 +1938,20 @@ msgstr "" #. 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" +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" +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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1939,19 +1991,30 @@ msgstr "No eliminar este mensaje" 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 +#, fuzzy +msgctxt "TITLE" msgid "Delete user" msgstr "Borrar usuario" -#: actions/deleteuser.php:136 +#. TRANS: Fieldset legend on delete user page. +#: actions/deleteuser.php:134 +msgid "Delete user" +msgstr "Borrar 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." @@ -1959,80 +2022,104 @@ 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 grupo" + #. 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 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 "" -#: 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 +#. TRANS: Client error displayed when an SSL logo URL is invalid. +#: actions/designadminpanel.php:333 #, fuzzy msgid "Invalid SSL logo URL." msgstr "URL de logotipo inválido." -#: 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 +#. TRANS: Field label for SSL StatusNet site logo. +#: actions/designadminpanel.php:452 #, fuzzy msgid "SSL logo" msgstr "Logo del sitio" -#: 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2042,98 +2129,108 @@ 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 +#, fuzzy +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 +#, fuzzy +msgctxt "BUTTON" msgid "Use defaults" msgstr "Utilizar los valores predeterminados" +#. 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 "Restaurar los diseños predeterminados" +#. 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 "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 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 "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:84 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:99 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. @@ -2225,14 +2322,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "Para editar el grupo debes ser administrador." @@ -2293,8 +2392,8 @@ msgstr "Actual dirección de correo electrónico confirmada" #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Eliminar" @@ -2319,15 +2418,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Correo entrante" @@ -2338,13 +2437,13 @@ 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:180 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:189 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." @@ -2357,7 +2456,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Nuevo" @@ -2434,9 +2533,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2452,8 +2552,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Ninguna confirmación pendiente para cancelar." @@ -2464,8 +2564,9 @@ 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:468 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. @@ -2484,24 +2585,25 @@ msgstr "Esa no es tu dirección de correo electrónico" 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 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Nueva dirección de correo entrante agregada." @@ -2600,7 +2702,7 @@ msgstr "¡Respuesta inesperada!" 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 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "¡Puedes usar la suscripción local!" @@ -2732,22 +2834,19 @@ 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." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -2755,23 +2854,28 @@ 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:244 msgid "Upload" msgstr "Subir" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Cortar" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "Logo actualizado." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "Error al actualizar el logo." @@ -2856,7 +2960,7 @@ 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 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Crear un nuevo grupo" @@ -2912,14 +3016,14 @@ 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 +#: 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 +#: actions/imsettings.php:71 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2929,23 +3033,23 @@ msgstr "" "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 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "Dirección de mensajería instantánea" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2960,7 +3064,7 @@ msgstr "" #. 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 " @@ -2971,64 +3075,64 @@ msgstr "" "mensajería instantánea o en GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: 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 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Enviarme mensajes por Jabber/GTalk" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk 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 +#: actions/imsettings.php:171 msgid "Send me replies through Jabber/GTalk 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk 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 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Preferencias guardadas." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 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 +#: actions/imsettings.php:317 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3039,28 +3143,29 @@ msgstr "" "mensajes." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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." +#: 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 +#: 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: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "La dirección de mensajería instantánea ha sido eliminada." @@ -3264,131 +3369,145 @@ 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 "" @@ -3412,11 +3531,11 @@ msgstr "Inicio de sesión" msgid "Login to site" msgstr "Ingresar a sitio" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Recordarme" -#: 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 "" "Iniciar sesión automáticamente en el futuro. ¡No usar en ordenadores " @@ -3810,7 +3929,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" @@ -3818,7 +3938,8 @@ 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" @@ -3826,7 +3947,7 @@ msgstr "Nueva contraseña" msgid "6 or more characters" msgstr "6 o más caracteres" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Igual a la contraseña de arriba" @@ -3850,11 +3971,12 @@ msgstr "Contraseña antigua incorrecta." msgid "Error saving user; invalid." msgstr "Error al guardar el usuario; inválido." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "No se puede guardar la nueva contraseña." -#: 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 "Se guardó la contraseña." @@ -4181,12 +4303,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 "" @@ -4194,12 +4316,13 @@ 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:433 +#: lib/groupeditform.php:146 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" @@ -4207,21 +4330,21 @@ 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 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 #, 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" @@ -4229,7 +4352,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:471 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4237,44 +4360,44 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "Etiquetas" #. 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 "" @@ -4282,27 +4405,27 @@ msgstr "" "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 +#: actions/profilesettings.php:171 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 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -4312,7 +4435,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)." @@ -4320,52 +4443,50 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Crear una cuenta" @@ -4491,37 +4612,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." @@ -4529,71 +4658,105 @@ 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 +#, fuzzy +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. " -#: 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 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: 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 "Igual a la contraseña de arriba" + +#. 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." @@ -4601,24 +4764,35 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "No se puede guardar la nueva contraseña." + +#. 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 "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." @@ -4634,7 +4808,7 @@ msgstr "El código de invitación no es válido." msgid "Registration successful" msgstr "Registro exitoso." -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrarse" @@ -4662,64 +4836,55 @@ 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" +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 o más caracteres" #. 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 "Correo electrónico" -#: 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 "" "Se usa sólo para actualizaciones, anuncios y recuperación de contraseñas" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Nombre más largo, preferiblemente tu nombre \"real\"" -#: actions/register.php:463 +#: actions/register.php:462 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:524 +#: actions/register.php:523 #, 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:533 #, 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:537 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:540 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:545 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4729,7 +4894,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:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4762,7 +4927,7 @@ msgstr "" "\n" "¡Gracias por apuntarte! Esperamos que disfrutes usando este servicio." -#: 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.)" @@ -4770,7 +4935,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." @@ -4782,74 +4947,77 @@ 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 +#: actions/remotesubscribe.php:129 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 +#: actions/remotesubscribe.php:133 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 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Suscribirse" -#: actions/remotesubscribe.php:159 +#: actions/remotesubscribe.php:158 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Repetido" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "¡Repetido!" @@ -5077,7 +5245,7 @@ msgstr "Organización" #. 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 "Descripción" @@ -5100,8 +5268,9 @@ msgstr "Acciones de la aplicación" msgid "Reset key & secret" msgstr "Reiniciar clave y secreto" +#. TRANS: Title of form for deleting a user. #: actions/showapplication.php:252 lib/deletegroupform.php:121 -#: lib/deleteuserform.php:66 lib/noticelist.php:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Borrar" @@ -5228,7 +5397,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Alias" @@ -5287,7 +5456,6 @@ msgstr "Creado" #. TRANS: Label for member count in statistics on group page. #: actions/showgroup.php:461 -#, fuzzy msgctxt "LABEL" msgid "Members" msgstr "Miembros" @@ -5624,71 +5792,71 @@ 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 +#: actions/smssettings.php:152 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." @@ -5697,32 +5865,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." @@ -5732,39 +5900,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 " @@ -5775,7 +5943,7 @@ msgstr "" "informarnos al %s." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "No ingresó código" @@ -6039,10 +6207,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 "" @@ -6277,12 +6441,12 @@ 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." @@ -6290,7 +6454,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!" @@ -7263,23 +7427,27 @@ 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." @@ -7840,26 +8008,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:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Ir al instalador." @@ -7931,12 +8099,21 @@ 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: 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 @@ -8014,28 +8191,23 @@ msgstr "Ir" msgid "Grant this user the \"%s\" role" msgstr "Otorgar al usuario el papel de \"%$\"" -#: lib/groupeditform.php:154 -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:155 #, 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:160 msgid "Describe the group or topic" msgstr "Describir al grupo o tema" -#: 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] "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:174 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." @@ -8043,7 +8215,7 @@ msgstr "" "Ubicación del grupo, si existe, por ejemplo \"Ciudad, Estado (o Región), País" "\"" -#: lib/groupeditform.php:190 +#: lib/groupeditform.php:182 #, fuzzy, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9256,14 +9428,9 @@ msgstr[1] "hace aproximadamente %d meses" 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" @@ -9299,3 +9466,32 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "No existe ese grupo" + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "Método de API no encontrado." + +#~ msgid "Reset" +#~ msgstr "Restablecer" + +#~ 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." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 o más caracters. Requerido." + +#~ msgid "Same as password above. Required." +#~ msgstr "Igual a la contraseña de arriba. Requerida" + +#~ 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" + +#~ msgid "%s is not a valid color!" +#~ msgstr "¡%s no es un color válido!" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index 01c7edf568..cb0a6fee8c 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -15,8 +15,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:45+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:56:39+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 (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -82,6 +82,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" 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. @@ -137,8 +140,8 @@ msgstr "چنین صفحه‌ای وجود ندارد." #: 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,7 +152,7 @@ msgstr "چنین صفحه‌ای وجود ندارد." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -316,7 +319,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "نمی‌توان کاربر را به‌هنگام‌سازی کرد." @@ -338,7 +355,8 @@ 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,7 +366,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, fuzzy, php-format @@ -370,8 +388,8 @@ msgstr[0] "" #: 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/userdesignsettings.php:201 actions/userdesignsettings.php:211 +#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263 msgid "Unable to save your design settings." msgstr "نمی‌توان تنظیمات طرح‌تان را ذخیره کرد." @@ -379,13 +397,18 @@ msgstr "نمی‌توان تنظیمات طرح‌تان را ذخیره کرد. #. TRANS: Client error displayed when a database error occurs updating profile colours. #: actions/apiaccountupdateprofilebackgroundimage.php:191 #: actions/apiaccountupdateprofilecolors.php:139 +#: actions/groupdesignsettings.php:266 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. @@ -396,31 +419,38 @@ msgstr "اصلی" 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 "مسدود کردن کاربر شکست خورد." @@ -510,7 +540,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:91 msgid "Could not delete favorite." msgstr "نمی‌توان پیام برگزیده را حذف کرد." @@ -557,7 +588,7 @@ msgstr "نمی‌توان کاربر هدف را پیدا کرد." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی دیگر انتخاب کنید." @@ -567,7 +598,7 @@ msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "لقب نا معتبر." @@ -579,7 +610,7 @@ msgstr "لقب نا معتبر." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "صفحهٔ خانگی یک نشانی معتبر نیست." @@ -589,7 +620,7 @@ msgstr "صفحهٔ خانگی یک نشانی معتبر نیست." #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -616,7 +647,7 @@ msgstr[0] "توصیف خیلی طولانی است (حداکثر %d نویسه)" #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -673,22 +704,26 @@ 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 کرد." @@ -700,9 +735,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." @@ -739,7 +776,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 "رمز ورود مشخص شده نامعتبر است." @@ -762,18 +799,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -793,18 +834,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "ارسال غیر قابل انتظار فرم." @@ -858,9 +902,9 @@ msgstr "حساب کاربری" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "نام کاربری" @@ -868,7 +912,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "گذرواژه" @@ -879,7 +923,7 @@ msgstr "گذرواژه" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -953,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 @@ -972,40 +1017,52 @@ msgstr "نمی توانید پیام خود را تکرار کنید." 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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 "پیام را پاک کن" @@ -1137,51 +1194,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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, fuzzy, php-format msgid "No content for notice %d." msgstr "پیدا کردن محتوای پیام‌ها" #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, fuzzy, 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." @@ -1193,108 +1248,137 @@ msgstr "روش API در دست ساخت." 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 +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 +#. 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 -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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "رابط مورد نظر پیدا نشد." - -#: 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. @@ -1302,40 +1386,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +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: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 #, fuzzy, php-format -msgid "Unknown profile %s" +msgid "Unknown profile %s." msgstr "نوع فایل پشتیبانی نشده" #. TRANS: Client error displayed trying to get a non-existing attachment. @@ -1346,10 +1427,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "لقبی وجود ندارد." @@ -1381,30 +1463,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "پیش‌نمایش" @@ -1443,7 +1531,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "فایل اطلاعات خود را گم کرده ایم." @@ -1462,35 +1551,42 @@ msgstr "به روز رسانی چهره موفقیت آمیر نبود." msgid "Avatar deleted." msgstr "چهره پاک شد." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "پیش‌زمینه" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1525,14 +1621,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: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:158 actions/deleteuser.php:156 +#: actions/block.php:158 msgid "Do not block this user" msgstr "کاربر را مسدود نکن" @@ -1544,7 +1639,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "بله" @@ -1560,31 +1655,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 @@ -1655,23 +1725,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 @@ -1733,7 +1786,8 @@ 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 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "ساختن یک جساب‌کاربری" @@ -1755,8 +1809,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "تایید" @@ -1831,8 +1886,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 "نام‌مستعار یا شناسه‌ای وجود ندارد." @@ -1887,10 +1944,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1930,19 +1988,30 @@ msgstr "این پیام را پاک نکن" 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." @@ -1950,82 +2019,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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2035,98 +2128,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 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 "ذخیره‌کردن" - +#. 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:84 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:99 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. @@ -2220,14 +2323,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "برای ویرایش گروه باید یک مدیر باشید." @@ -2288,8 +2393,8 @@ msgstr "نشانی پست الکترونیکی تایید شدهٔ کنونی" #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "حذف" @@ -2314,15 +2419,15 @@ msgstr "نشانی پست الکترونیکی، مانند «UserName@example.o #. 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 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "پست الکترونیک ورودی" @@ -2333,14 +2438,14 @@ 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:180 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:189 actions/smssettings.php:182 msgid "Make a new email address for posting to; cancels the old one." msgstr "نشانی جدید برای فرستادن پیام ایجاد کن؛ نشانی قبلی لغو می‌شود." @@ -2353,7 +2458,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "تازه" @@ -2429,9 +2534,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2446,8 +2552,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "هیچ تاییدی برای فسخ کردن وجود ندارد." @@ -2458,8 +2564,9 @@ 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:468 actions/smssettings.php:413 +#, fuzzy +msgid "Could not delete email confirmation." msgstr "نمی‌توان تصدیق پست الکترونیک را پاک کرد." #. TRANS: Message given after successfully canceling e-mail address confirmation. @@ -2478,24 +2585,25 @@ msgstr "آن نشانی شما نیست." msgid "The email address was removed." msgstr "نشانی پست الکترونیکی پاک شده است." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "نشانی ورودی جدید اضافه شد." @@ -2594,7 +2702,7 @@ msgstr "انتظار چنین واکنشی وجود نداشت!" msgid "User being listened to does not exist." msgstr "کاربری که دنبالش هستید وجود ندارد." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "شما می‌توانید از دنبال کردن محلی استفاده کنید!" @@ -2722,44 +2830,46 @@ 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 -msgid "Couldn't update your design." -msgstr "نمی‌توان ظاهر را به روز کرد." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, 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:244 msgid "Upload" msgstr "پایین‌گذاری" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "برش" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "نشان به‌هنگام‌سازی شد." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "به‌هنگام‌سازی نشان شکست خورد." @@ -2844,7 +2954,7 @@ msgstr "" "نمی‌بینید؟ می‌توانید برای یافتن آن [بگردید](%%%action.groupsearch%%%) !یا [آن " "را خودتان بسازید](%%%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "یک گروه جدید بساز" @@ -2900,14 +3010,14 @@ msgid "Error removing the block." msgstr "اشکال در پاکسازی" #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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](%%" @@ -2917,23 +3027,23 @@ msgstr "" "یا Gtalk ارسال/دریافت کنید. نشانی خود را در این قسمت تنظیم کنید" #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "نشانی پیام‌رسان فوری" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2947,7 +3057,7 @@ msgstr "" #. 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 " @@ -2957,63 +3067,63 @@ msgstr "" "به فهرست دوستان خود در کارگیر پیام‌رسان فوری‌تان یا در GTalk مطمئن شوید." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "ترجیحات پیام‌رسان فوری" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "پیام‌ها را از راه Jabber/GTalk برای من بفرست." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "هر وقت که وضعیت Jabber/Gtalk من تغییر کرد، یک پیام بفرست." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 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 +#: actions/imsettings.php:178 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:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "تنظیمات ذخیره شد." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: actions/imsettings.php:304 msgid "No Jabber ID." msgstr "هیچ شناسهٔ Jabber ای وجود ندارد." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:320 +#: actions/imsettings.php:312 msgid "Cannot normalize that Jabber ID" msgstr "نمی‌توان شناسهٔ Jabber را تایید کرد" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:325 +#: actions/imsettings.php:317 msgid "Not a valid Jabber ID" msgstr "شناسهٔ Jabber درست نیست" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:329 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3023,28 +3133,29 @@ msgstr "" "برای فرستادن پیام به شما، تایید کنید." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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." +#: 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 +#: actions/imsettings.php:396 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 +#: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "نشانی پیام‌رسان فوری پاک شده است." @@ -3243,131 +3354,145 @@ 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 "" @@ -3391,11 +3516,11 @@ msgstr "ورود" msgid "Login to site" msgstr "ورود به وب‌گاه" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "مرا به یاد بسپار" -#: 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 "وارد شدن خودکار. نه برای کامپیوترهای مشترک!" @@ -3784,7 +3909,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 "تغییر گذرواژه" @@ -3792,7 +3918,8 @@ 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 "گذرواژهٔ تازه" @@ -3800,7 +3927,7 @@ msgstr "گذرواژهٔ تازه" msgid "6 or more characters" msgstr "۶ نویسه یا بیش‌تر" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "مانند گذرواژهٔ بالا" @@ -3824,11 +3951,12 @@ msgstr "گذرواژه پیشین اشتباه است" msgid "Error saving user; invalid." msgstr "هنگام ذخیرهٔ کاربر خطا رخ داد؛ نامعتبر است." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "نمی‌توان گذرواژهٔ جدید را ذخیره کرد." -#: 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 "گذرواژه ذخیره شد." @@ -4153,12 +4281,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 "" @@ -4166,33 +4294,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:433 +#: lib/groupeditform.php:146 #, 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "صفحهٔ خانگی" #. 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 "نشانی اینترنتی صفحهٔ خانگی، وبلاگ یا نمایه‌تان در یک وب‌گاه دیگر" @@ -4200,78 +4329,78 @@ 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" 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 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" 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 +#: 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 "" @@ -4280,59 +4409,57 @@ 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)." 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "ساختن یک جساب‌کاربری" @@ -4454,35 +4581,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." @@ -4491,67 +4626,101 @@ msgstr "" "که به نشانی پست الکترونیکی‌تان که در حساب‌تان ذخیره کرده‌اید فرستاده شده است، " "بگیرید." -#: actions/recoverpassword.php:158 -msgid "You have been identified. Enter a new password below. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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: 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 "مانند گذرواژهٔ بالا" + +#. 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." @@ -4559,24 +4728,35 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "نمی‌توان گذرواژهٔ جدید را ذخیره کرد." + +#. 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 "هنگام گذاشتن کاربر خطا روی داد." -#: 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 "گذرواژه تازه با موفقیت ذخیره شد. شما اکنون وارد شده‌اید." @@ -4592,7 +4772,7 @@ msgstr "با عرض تاسف، کد دعوت نا معتبر است." msgid "Registration successful" msgstr "ثبت نام با موفقیت انجام شد." -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "ثبت نام" @@ -4620,59 +4800,52 @@ 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 "با گذرواژهٔ بالا یکسان باشد. مورد نیاز است." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "۶ نویسه یا بیش‌تر" #. 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 "پست الکترونیکی" -#: 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 "تنها برای به‌هنگام‌سازی‌ها، اعلامیه‌ها و بازیابی گذرواژه به کار می‌رود" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "نام بلند تر، به طور بهتر نام واقعیتان" -#: actions/register.php:463 +#: actions/register.php:462 msgid "URL of your homepage, blog, or profile on another site" msgstr "نشانی اینترنتی صفحهٔ خانگی، وبلاگ یا نمایه‌تان در یک وب‌گاه دیگر" -#: 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 "من متوجه هستم که محتوا و داده‌های %1$s خصوصی و محرمانه هستند." -#: actions/register.php:534 +#: actions/register.php:533 #, 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: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, " @@ -4681,7 +4854,7 @@ msgstr "" "نوشته‌ها و پرونده‌های من به جز داده‌های خصوصی گذرواژه، نشانی پست الکترونیک، " "نشانی پیام‌رسان فوری و شماره تلفن زیر مجوز %s هستند." -#: actions/register.php:589 +#: actions/register.php:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4715,7 +4888,7 @@ msgstr "" "از این‌که نام‌نویسی کرده‌اید، تشکر می‌کنیم و امیدواریم که از استفاده از این " "سرویس لذت ببرید." -#: 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.)" @@ -4723,7 +4896,7 @@ msgstr "" "(شما هر لحظه باید یک پیام با پست الکترونیکی با راهنمای چگونگی تایید نشانی " "پست الکترونیک‌تان دریافت کنید.)" -#: actions/remotesubscribe.php:98 +#: actions/remotesubscribe.php:97 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -4734,74 +4907,77 @@ 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 +#: 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 +#: actions/remotesubscribe.php:133 msgid "URL of your profile on another compatible microblogging service" msgstr "نشانی اینترنتی نمایهٔ شما در سرویس میکروبلاگینگ سازگار دیگری" -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "اشتراک" -#: actions/remotesubscribe.php:159 +#: 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 "" "این یک نشانی نمایهٔ صحیح نیست (هیچ سند 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "تکرار شده" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "تکرار شد!" @@ -5027,7 +5203,7 @@ msgstr "سازمان" #. 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 "توصیف" @@ -5050,8 +5226,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:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "حذف" @@ -5178,7 +5355,7 @@ msgid "Note" msgstr "یادداشت" #. 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 "نام های مستعار" @@ -5571,71 +5748,71 @@ 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 +#: 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." @@ -5644,32 +5821,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." @@ -5678,39 +5855,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 " @@ -5721,7 +5898,7 @@ msgstr "" "بفرستید تا ما باخبر شویم." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "کدی وارد نشد" @@ -5986,10 +6163,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 "از این روش برای افزودن برچسب به مشترک‌ها یا اشتراک‌هایتان استفاده کنید." @@ -6215,12 +6388,12 @@ 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." @@ -6228,7 +6401,7 @@ msgstr "" "شیوهٔ نمایش نمایهٔ خود را با یک تصویر پیش‌زمینه و یک رنگ از جعبهٔ رنگ‌ها به " "انتخاب خودتان سفارشی‌سازی کنید." -#: actions/userdesignsettings.php:282 +#: actions/userdesignsettings.php:272 msgid "Enjoy your hotdog!" msgstr "از هات داگ خود لذت ببرید!" @@ -7189,23 +7362,27 @@ 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 "" @@ -7760,26 +7937,26 @@ msgstr "" "tracking - هنوز پیاده نشده است.\n" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "برو به نصاب." @@ -7851,12 +8028,21 @@ 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: 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 @@ -7935,32 +8121,28 @@ 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 "۱-۶۴ کاراکتر کوچک یا اعداد، بدون نقطه گذاری یا فاصله" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 #, fuzzy msgid "URL of the homepage or blog of the group or topic." msgstr "نشانی اینترنتی صفحهٔ‌خانگی یا وبلاگ گروه یا موضوع" -#: lib/groupeditform.php:168 +#: lib/groupeditform.php:160 msgid "Describe the group or topic" msgstr "گروه یا موضوع را توصیف کنید" -#: 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] "گروه یا موضوع را در %d نویسه توصیف کنید" -#: lib/groupeditform.php:182 +#: lib/groupeditform.php:174 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." msgstr "مکان گروه، در صورت وجود داشتن، مانند «شهر، ایالت (یا استان)، کشور»" -#: lib/groupeditform.php:190 +#: lib/groupeditform.php:182 #, fuzzy, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9154,14 +9336,9 @@ msgstr[0] "" 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 یک رنگ صحیح نیست! از ۳ یا ۶ نویسه مبنای شانزده استفاده کنید" @@ -9198,3 +9375,29 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "چنین گروهی وجود ندارد." + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "رابط مورد نظر پیدا نشد." + +#~ msgid "Reset" +#~ msgstr "بازنشاندن" + +#~ msgid "" +#~ "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#~ msgstr "۱-۶۴ حرف کوچک یا اعداد، بدون نشانه گذاری یا فاصله نیاز است." + +#~ msgid "6 or more characters. Required." +#~ msgstr "۶ نویسه یا بیش‌تر مورد نیاز است." + +#~ msgid "Same as password above. Required." +#~ msgstr "با گذرواژهٔ بالا یکسان باشد. مورد نیاز است." + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "۱-۶۴ کاراکتر کوچک یا اعداد، بدون نقطه گذاری یا فاصله" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s یک رنگ صحیح نیست!" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 6d6904e95a..676b7b8f79 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:46+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:56:45+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\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: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -85,6 +85,7 @@ msgid "Save access settings" msgstr "Profiilikuva-asetukset" #. 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 text for saving "Other settings" in profile. @@ -96,13 +97,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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Tallenna" @@ -120,6 +121,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. @@ -140,8 +143,8 @@ msgstr "Sivua ei ole." #: 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 @@ -152,7 +155,7 @@ msgstr "Sivua ei ole." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -318,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: 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." @@ -340,7 +357,8 @@ 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." @@ -350,7 +368,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -372,8 +390,8 @@ msgstr[1] "" #: 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/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." @@ -381,14 +399,18 @@ 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 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:179 #, fuzzy msgid "Could not update your design." msgstr "Ei voitu päivittää käyttäjää." -#: 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. @@ -399,31 +421,38 @@ msgstr "" 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 +#. 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 "Suosikit" -#: 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 "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." @@ -518,7 +547,8 @@ msgid "That status is not a favorite." 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:91 msgid "Could not delete favorite." msgstr "Ei voitu poistaa suosikkia." @@ -565,7 +595,7 @@ msgstr "Ei voitu päivittää käyttäjää." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." @@ -575,7 +605,7 @@ msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Tuo ei ole kelvollinen tunnus." @@ -587,7 +617,7 @@ msgstr "Tuo ei ole kelvollinen tunnus." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "Kotisivun verkko-osoite ei ole toimiva." @@ -597,7 +627,7 @@ msgstr "Kotisivun verkko-osoite ei ole toimiva." #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -625,7 +655,7 @@ msgstr[1] "kuvaus on liian pitkä (max %d merkkiä)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -683,22 +713,26 @@ 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 +#: actions/apigroupjoin.php:142 actions/joingroup.php:139 lib/command.php:350 #, fuzzy, php-format msgid "Could not join user %1$s to group %2$s." msgstr "Käyttäjä %s ei voinut liittyä ryhmään %s." @@ -710,9 +744,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." @@ -749,7 +785,7 @@ 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 +#: actions/apioauthaccesstoken.php:102 #, fuzzy msgid "Invalid request token or verifier." msgstr "Päivityksen sisältö ei kelpaa" @@ -772,18 +808,22 @@ msgid "Request token already authorized." msgstr "Sinulla ei ole valtuutusta tähä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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -806,18 +846,21 @@ msgstr "Tietokantavirhe tallennettaessa risutagiä: %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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Odottamaton lomakkeen lähetys." @@ -863,9 +906,9 @@ msgstr "Käyttäjätili" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Tunnus" @@ -873,7 +916,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Salasana" @@ -884,7 +927,7 @@ msgstr "Salasana" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -957,6 +1000,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 @@ -977,40 +1021,52 @@ msgstr "Ilmoituksia ei voi pistää päälle." msgid "Already repeated that notice." msgstr "Tätä päivitystä ei voi poistaa." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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." -#: 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 "Formaattia 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 +#, fuzzy +msgid "Cannot delete this notice." msgstr "Tätä päivitystä ei voi poistaa." -#: 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 "Poista päivitys" @@ -1145,51 +1201,49 @@ msgstr "Vain käyttäjä voi lukea omaa postilaatikkoaan." 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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, fuzzy, php-format msgid "No content for notice %d." msgstr "Hae päivityksien sisällöstä" #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." msgstr "Ei profiilia tuolla id:llä." -#: 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." @@ -1200,109 +1254,138 @@ msgstr "API-metodi on työn alla!" msgid "User not found." msgstr "API-metodia ei löytynyt." -#: actions/atompubfavoritefeed.php:70 -#, fuzzy -msgid "No such profile" -msgstr "Tiedostoa ei ole." - -#: 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 "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 "" - -#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248 -#, fuzzy -msgid "Can only fave notices." -msgstr "Hae päivityksien sisällöstä" - -#: actions/atompubfavoritefeed.php:256 -#, fuzzy -msgid "Unknown note." -msgstr "Tuntematon toiminto" - -#: actions/atompubfavoritefeed.php:263 -#, fuzzy -msgid "Already a favorite." -msgstr "Lisää suosikkeihin" - -#: 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 "Tiedostoa ei ole." +#. 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 "Ei voitu lisätä uutta tilausta." + +#. 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 "Hae päivityksien sisällöstä" + +#. 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 "Hae päivityksien sisällöstä" + +#. TRANS: Client exception thrown when trying favorite a notice without content. +#: actions/atompubfavoritefeed.php:259 +#, fuzzy +msgid "Unknown note." +msgstr "Tuntematon toiminto" + +#. TRANS: Client exception thrown when trying favorite an already favorited notice. +#: actions/atompubfavoritefeed.php:267 +#, fuzzy +msgid "Already a favorite." +msgstr "Lisää suosikkeihin" + +#. 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" - -#: 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 +#, fuzzy +msgid "Can only handle join activities." +msgstr "Hae päivityksien sisällöstä" -#: 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 "Tuntematon toiminto" -#: 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 "Kaikki jäsenet" -#: 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 "Tiedostoa 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" +msgid "Cannot delete someone else's favorite." msgstr "Ei voitu poistaa suosikkia." -#: 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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. 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 "Kaikki jäsenet" -#: actions/atompubshowmembership.php:115 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "API-metodia ei löytynyt." - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "" +msgid "Cannot delete someone else's membership." +msgstr "Tilausta ei onnistuttu tallentamaan." #. 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. @@ -1310,40 +1393,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +msgid "No such profile id: %d." msgstr "Tiedostoa ei ole." #. 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" +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" +msgid "Cannot delete someone else's subscription." msgstr "Tilausta ei onnistuttu tallentamaan." -#: actions/atompubsubscriptionfeed.php:150 -#, fuzzy, php-format -msgid "People %s has subscribed to on %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 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: 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 get a non-existing attachment. @@ -1354,10 +1434,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Tunnusta ei ole." @@ -1388,30 +1469,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Esikatselu" @@ -1449,7 +1536,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Tiedoston data hävisi." @@ -1468,35 +1556,42 @@ msgstr "Profiilikuvan päivittäminen epäonnistui." msgid "Avatar deleted." msgstr "Kuva poistettu." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "Vain käyttäjä voi lukea omaa postilaatikkoaan." +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "Tausta" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1527,14 +1622,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:178 msgctxt "BUTTON" msgid "No" 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Älä estä tätä käyttäjää" @@ -1546,7 +1640,7 @@ 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 +#: actions/deleteuser.php:161 actions/groupblock.php:185 msgctxt "BUTTON" msgid "Yes" msgstr "Kyllä" @@ -1562,31 +1656,6 @@ msgstr "Estä tämä käyttäjä" 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 @@ -1657,23 +1726,6 @@ 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 @@ -1735,7 +1787,8 @@ msgid "Account deleted." msgstr "Kuva poistettu." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Luo uusi ryhmä" @@ -1757,8 +1810,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Vahvista" @@ -1834,8 +1888,10 @@ msgid "You must be logged in to delete a group." msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä." #. 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 "Tunnusta ei ole." @@ -1888,10 +1944,11 @@ msgid "Delete this group" msgstr "Poista käyttäjä" #. 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1931,103 +1988,138 @@ msgstr "Älä poista tätä päivitystä" 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 +#, fuzzy +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 "" +#. 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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 msgid "Delete this user" msgstr "Poista 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 "" -#: 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 +#. 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 "Pikaviestin ei ole käytettävissä." -#: 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 +#. TRANS: Field label for SSL StatusNet site logo. +#: actions/designadminpanel.php:452 #, fuzzy msgid "SSL logo" msgstr "Palvelun ilmoitus" -#: actions/designadminpanel.php:469 +#. TRANS: Fieldset legend for form change StatusNet site's theme. +#: actions/designadminpanel.php:467 #, fuzzy msgid "Change theme" msgstr "Vaihda" -#: actions/designadminpanel.php:486 +#. TRANS: Field label for dropdown to choose site theme. +#: actions/designadminpanel.php:485 #, fuzzy msgid "Site theme" msgstr "Palvelun ilmoitus" +#. 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" -#: 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 "" +#. 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:521 actions/designadminpanel.php:609 #: lib/designsettings.php:183 msgid "Background" msgstr "Tausta" -#: actions/designadminpanel.php:522 +#. TRANS: Form guide for background image upload form on theme designer page. +#: actions/designadminpanel.php:527 #, fuzzy, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2035,104 +2127,114 @@ msgid "" msgstr "Voit ladata ryhmälle logokuvan. Maksimikoko on %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 #, fuzzy msgid "Turn background image on or off." msgstr "Vaihda tautakuva" +#. 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 "Vaihda tautakuva" -#. 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 "Vaihda väriä" +#. 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 +#: actions/designadminpanel.php:637 lib/designsettings.php:211 #, fuzzy msgid "Sidebar" msgstr "Haku" +#. 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 "" -#: 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 "Käytä oletusasetuksia" +#. 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 #, fuzzy msgid "Restore default designs" msgstr "Käytä oletusasetuksia" +#. 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 #, fuzzy msgid "Reset back to default" msgstr "Käytä oletusasetuksia" -#. 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. #. 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 #, 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:84 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:99 msgid "Add to favorites" msgstr "Lisää suosikkeihin" -#: 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 "Liitettä ei ole." #. TRANS: Title for "Edit application" form. @@ -2233,14 +2335,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "" "Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja." @@ -2303,8 +2407,8 @@ msgstr "Tämän hetken vahvistettu sähköpostiosoite." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Poista" @@ -2330,15 +2434,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Saapuva sähköposti" @@ -2349,13 +2453,13 @@ 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:180 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:189 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 " @@ -2370,7 +2474,7 @@ 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:199 actions/smssettings.php:185 #, fuzzy msgctxt "BUTTON" msgid "New" @@ -2446,9 +2550,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2464,8 +2569,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Avoimia vahvistuksia ei ole peruutettavana." @@ -2477,8 +2582,9 @@ msgstr "Tämä on väärä pikaviestiosoite." #. 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:468 actions/smssettings.php:413 +#, fuzzy +msgid "Could not delete email confirmation." msgstr "Ei voitu poistaa sähköpostivahvistusta." #. TRANS: Message given after successfully canceling e-mail address confirmation. @@ -2497,24 +2603,25 @@ msgstr "Tämä ei ole sähköpostiosoitteesi." msgid "The email address was removed." msgstr "Saapuvan sähköpostin osoite poistettu." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, fuzzy +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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Uusi saapuvan sähköpostin osoite lisätty." @@ -2608,7 +2715,7 @@ msgstr "Odottamaton vastaus saatu!" 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 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Voit käyttää paikallista tilausta!" @@ -2740,44 +2847,46 @@ 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 -msgid "Couldn't update your design." -msgstr "Ei voitu päivittää sinun sivusi ulkoasua." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 msgid "Group logo" msgstr "Ryhmän logo" -#: actions/grouplogo.php:153 +#. TRANS: Instructions for group logo page. +#. TRANS: %s is the maximum file size for that site. +#: actions/grouplogo.php:157 #, fuzzy, 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:244 msgid "Upload" msgstr "Lataa" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Rajaa" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 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:416 msgid "Failed updating logo." msgstr "Logon päivittäminen epäonnistui." @@ -2857,7 +2966,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Luo uusi ryhmä" @@ -2910,14 +3019,14 @@ msgid "Error removing the block." msgstr "Tapahtui virhe, kun estoa poistettiin." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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 +#: actions/imsettings.php:71 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2927,23 +3036,23 @@ msgstr "" "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 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "Sähköpostiosoitteet" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2958,7 +3067,7 @@ msgstr "" #. 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 " @@ -2969,65 +3078,65 @@ msgstr "" "GTalkissa." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "Asetukset tallennettu." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Lähetä minulle päivityksiä Jabberilla/GTalkilla." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Lähetä päivitys kun Jabber/GTalk -tilatietoni vaihtuu." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 msgid "Send me replies through Jabber/GTalk 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Julkaise MicroID Jabber/GTalk-osoitteelleni." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Asetukset tallennettu." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 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 +#: actions/imsettings.php:317 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3037,29 +3146,29 @@ msgstr "" "antaa osoitteelle %s oikeus lähettää viestejä sinulle." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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 +#: 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 +#: 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: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "Saapuvan sähköpostin osoite poistettu." @@ -3266,132 +3375,146 @@ 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 "" -#: 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 "Tallenna" + +#: actions/licenseadminpanel.php:311 msgid "Save license settings" msgstr "" @@ -3416,11 +3539,11 @@ msgstr "Kirjaudu sisään" msgid "Login to site" msgstr "Kirjaudu sisään" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Muista minut" -#: 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 "" "Kirjaudu sisään automaattisesti tulevaisuudessa; ei tietokoneille joilla " @@ -3822,7 +3945,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" @@ -3830,7 +3954,8 @@ 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" @@ -3838,7 +3963,7 @@ msgstr "Uusi salasana" msgid "6 or more characters" msgstr "6 tai useampia merkkejä" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Sama kuin ylläoleva salasana" @@ -3862,11 +3987,12 @@ msgstr "Väärä vanha salasana" msgid "Error saving user; invalid." msgstr "Virhe tapahtui käyttäjän tallentamisessa; epäkelpo." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Uutta salasanaa ei voida tallentaa." -#: 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 "Salasana tallennettu." @@ -4197,12 +4323,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 "" @@ -4210,12 +4336,13 @@ 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:433 +#: lib/groupeditform.php:146 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" @@ -4224,21 +4351,21 @@ 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Kotisivu" #. 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 "Kotisivusi, blogisi tai toisella sivustolla olevan profiilisi osoite." @@ -4246,7 +4373,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:471 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4254,45 +4381,45 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 #, 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "Tagit" #. 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 "" @@ -4300,27 +4427,27 @@ msgstr "" "ää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 +#: actions/profilesettings.php:171 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 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -4330,7 +4457,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)." @@ -4338,53 +4465,50 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Luo uusi ryhmä" @@ -4501,35 +4625,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 " @@ -4538,69 +4670,102 @@ 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. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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: 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 kuin ylläoleva salasana" + +#. 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." @@ -4608,24 +4773,35 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Uutta salasanaa ei voida tallentaa." + +#. 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 "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." @@ -4642,7 +4818,7 @@ msgstr "Virheellinen kutsukoodin." msgid "Registration successful" msgstr "Rekisteröityminen onnistui" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Rekisteröidy" @@ -4668,63 +4844,54 @@ 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 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." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 tai useampia merkkejä" #. 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 "Sähköposti" -#: 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 "" "Käytetään ainoastaan päivityksien lähettämiseen, ilmoitusasioihin ja " "salasanan uudelleen käyttöönottoon." -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Pitempi nimi, mieluiten oikea nimesi" -#: actions/register.php:463 +#: actions/register.php:462 msgid "URL of your homepage, blog, or profile on another site" msgstr "Kotisivusi, blogisi tai toisella sivustolla olevan profiilisi osoite." -#: 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 #, fuzzy, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4733,7 +4900,7 @@ msgstr "" "poislukien yksityinen tieto: salasana, sähköpostiosoite, IM-osoite, " "puhelinnumero." -#: actions/register.php:589 +#: actions/register.php:588 #, fuzzy, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4766,7 +4933,7 @@ msgstr "" "\n" "Kiitokset rekisteröitymisestäsi ja toivomme että pidät palvelustamme." -#: 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.)" @@ -4774,7 +4941,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." @@ -4786,81 +4953,82 @@ 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 +#: actions/remotesubscribe.php:129 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 +#: actions/remotesubscribe.php:133 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 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Tilaa" -#: actions/remotesubscribe.php:159 +#: actions/remotesubscribe.php:158 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:692 +#: 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" @@ -5093,7 +5261,7 @@ msgstr "Sivutus" #. 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 "Kuvaus" @@ -5116,8 +5284,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:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Poista" @@ -5236,7 +5405,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Aliakset" @@ -5623,72 +5792,72 @@ 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 +#: actions/smssettings.php:152 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." @@ -5697,33 +5866,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." @@ -5732,40 +5901,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 " @@ -5776,7 +5945,7 @@ msgstr "" "sähköpostia meille osoitteeseen %s." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Koodia ei ole syötetty." @@ -6032,10 +6201,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 "" @@ -6280,19 +6445,19 @@ 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 "" @@ -7274,24 +7439,28 @@ 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 "" @@ -7820,26 +7989,26 @@ msgid "" msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 #, fuzzy msgid "Go to the installer." msgstr "Kirjaudu sisään palveluun" @@ -7912,12 +8081,21 @@ 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 "Vaihda" +#. 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: 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 @@ -7997,30 +8175,24 @@ msgstr "Mene" 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 pientä kirjainta tai numeroa, ei ääkkösiä eikä välimerkkejä tai " -"välilyöntejä" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 #, 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:160 #, fuzzy msgid "Describe the group or topic" msgstr "Kuvaile ryhmää tai aihetta 140 merkillä" -#: 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] "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:174 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." @@ -8028,7 +8200,7 @@ msgstr "" "Ryhmän paikka, jos sellainen on, kuten \"Kaupunki, Maakunta (tai Lääni), Maa" "\"" -#: lib/groupeditform.php:190 +#: lib/groupeditform.php:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9164,14 +9336,9 @@ msgstr[1] "" 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." @@ -9207,3 +9374,34 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "Tuota ryhmää ei ole." + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "API-metodia ei löytynyt." + +#~ msgid "Reset" +#~ msgstr "Vaihda" + +#~ 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." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 tai useampia merkkejä. Pakollinen." + +#~ msgid "Same as password above. Required." +#~ msgstr "Sama kuin ylläoleva salasana. Pakollinen." + +#~ 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ä" + +#, fuzzy +#~ msgid "%s is not a valid color!" +#~ msgstr "Kotisivun verkko-osoite ei ole toimiva." diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 4a62098d98..66127d1518 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -21,17 +21,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:47+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:56:49+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -86,6 +86,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Enregistrer" @@ -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. @@ -141,8 +144,8 @@ msgstr "Page non trouvée." #: 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 @@ -153,7 +156,7 @@ msgstr "Page non trouvée." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -324,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "Impossible de mettre à jour l’utilisateur." @@ -346,7 +363,8 @@ 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." @@ -356,7 +374,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -382,8 +400,8 @@ msgstr[1] "" #: 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/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." @@ -391,13 +409,18 @@ 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/groupdesignsettings.php:266 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 +#, fuzzy +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. @@ -408,31 +431,38 @@ msgstr "Principal" 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 +#. 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 "Favoris" -#: 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é." @@ -526,7 +556,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:91 msgid "Could not delete favorite." msgstr "Impossible de supprimer le favori." @@ -572,7 +603,7 @@ msgstr "Impossible de trouver l’utilisateur cible." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Pseudo déjà utilisé. Essayez-en un autre." @@ -582,7 +613,7 @@ msgstr "Pseudo déjà utilisé. Essayez-en un autre." #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Pseudo invalide." @@ -594,7 +625,7 @@ msgstr "Pseudo invalide." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "L’adresse du site personnel n’est pas un URL valide. " @@ -604,7 +635,7 @@ msgstr "L’adresse du site personnel n’est pas un URL valide. " #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." msgstr "Le nom complet est trop long (limité à 255 caractères maximum)." @@ -631,7 +662,7 @@ msgstr[1] "La description est trop longue (limitée à %d caractères maximum)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 msgid "Location is too long (maximum 255 characters)." msgstr "L’emplacement est trop long (limité à 255 caractères maximum)." @@ -688,22 +719,26 @@ 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." @@ -715,9 +750,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." @@ -754,7 +791,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." @@ -774,18 +811,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 +849,21 @@ 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 IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Soumission de formulaire inattendue." @@ -872,9 +916,9 @@ msgstr "Compte" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Pseudo" @@ -882,7 +926,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Mot de passe" @@ -893,7 +937,7 @@ msgstr "Mot de passe" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -967,6 +1011,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 @@ -986,39 +1031,51 @@ msgstr "Vous ne pouvez pas reprendre votre propre avis." msgid "Already repeated that notice." msgstr "Vous avez déjà repris cet avis." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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 +#. 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 "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 +#, fuzzy +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" @@ -1156,54 +1213,52 @@ msgstr "Seul l’utilisateur peut ajouter des éléments son flux." msgid "Only accept AtomPub for Atom feeds." msgstr "N’accepter que des 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:334 +#: actions/apitimelineuser.php:336 #, 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:345 +#: actions/apitimelineuser.php:347 #, 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:378 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, 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:406 +#: actions/apitimelineuser.php:409 #, php-format msgid "Notice with URI \"%s\" already exists." msgstr "L’avis d’URI « %s » existe déjà." -#: actions/apitimelineuser.php:437 -#, 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." @@ -1214,110 +1269,137 @@ msgstr "Méthode API en construction." 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 +msgid "No such profile." msgstr "Profil non-trouvé." -#: actions/atompubfavoritefeed.php:145 -#, php-format -msgid "Notices %s has favorited to on %s" -msgstr "" - -#: 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 -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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "Méthode HTTP non trouvée !" - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "" +msgid "Cannot delete someone else's membership." +msgstr "Impossible de supprimer l’abonnement à soi-même." #. 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. @@ -1325,41 +1407,38 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +msgid "Cannot delete someone else's subscription." msgstr "Impossible de supprimer l’abonnement à soi-même." -#: actions/atompubsubscriptionfeed.php:150 -#, fuzzy, php-format -msgid "People %s has subscribed to on %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 +#: actions/atompubsubscriptionfeed.php:249 #, 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: 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 get a non-existing attachment. @@ -1370,10 +1449,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Aucun pseudo." @@ -1406,30 +1486,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Aperçu" @@ -1464,7 +1550,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Données perdues." @@ -1483,35 +1570,42 @@ msgstr "La mise à jour de l’avatar a échoué." msgid "Avatar deleted." msgstr "Avatar supprimé." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. 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" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1545,14 +1639,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Ne pas bloquer cet utilisateur" @@ -1564,7 +1657,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Oui" @@ -1580,31 +1673,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 @@ -1674,23 +1742,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 @@ -1751,7 +1802,8 @@ msgid "Account deleted." msgstr "Avatar supprimé." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Créer un compte" @@ -1773,8 +1825,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Confirmer" @@ -1848,8 +1901,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." @@ -1901,10 +1956,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1944,19 +2000,30 @@ msgstr "Ne pas supprimer cet avis" 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." @@ -1964,79 +2031,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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2046,98 +2137,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 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 "Restaurer les conceptions par défaut" +#. 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 "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 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 "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:84 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:99 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. @@ -2227,14 +2328,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "Vous devez être administrateur pour modifier le groupe." @@ -2295,8 +2398,8 @@ msgstr "Adresse courriel actuellement confirmée." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Enlever" @@ -2321,15 +2424,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Courriel entrant" @@ -2340,13 +2443,13 @@ 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:180 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:189 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." @@ -2359,7 +2462,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Nouveau" @@ -2435,9 +2538,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2452,8 +2556,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Aucune confirmation à annuler." @@ -2464,8 +2568,9 @@ 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:468 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. @@ -2484,24 +2589,25 @@ msgstr "Ceci n’est pas votre adresse courriel." msgid "The email address was removed." msgstr "L’adresse électronique a été supprimée." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Nouvelle adresse de courriel entrant ajoutée." @@ -2600,7 +2706,7 @@ msgstr "Réponse inattendue !" msgid "User being listened to does not exist." msgstr "L’utilisateur suivi n’existe pas." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Vous pouvez utiliser l’abonnement local." @@ -2731,22 +2837,19 @@ 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." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -2754,23 +2857,28 @@ 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:244 msgid "Upload" msgstr "Transfert" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Recadrer" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 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:416 msgid "Failed updating logo." msgstr "La mise à jour du logo a échoué." @@ -2856,7 +2964,7 @@ 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 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Créer un nouveau groupe" @@ -2913,14 +3021,14 @@ msgid "Error removing the block." msgstr "Erreur lors de l’annulation du blocage." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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 +#: actions/imsettings.php:71 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2931,23 +3039,23 @@ msgstr "" "dessous." #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "Adresse de messagerie instantanée" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2962,7 +3070,7 @@ msgstr "" #. 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 " @@ -2973,66 +3081,66 @@ msgstr "" "GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: 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 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Envoyez-moi les avis par Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk 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 +#: actions/imsettings.php:171 msgid "Send me replies through Jabber/GTalk 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk 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 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Préférences enregistrées" #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 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 +#: actions/imsettings.php:317 msgid "Not a valid Jabber ID" msgstr "Identifiant Jabber invalide." #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:329 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3042,28 +3150,29 @@ msgstr "" "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 +#: 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." +#: 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 +#: 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: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "L’adresse de messagerie instantanée a été supprimée." @@ -3271,44 +3380,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." @@ -3316,87 +3432,94 @@ 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" @@ -3422,11 +3545,11 @@ msgstr "Ouvrir une session" msgid "Login to site" msgstr "Ouverture de session" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Se souvenir de moi" -#: 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 "" "Ouvrir automatiquement ma session à l’avenir (déconseillé pour les " @@ -3824,7 +3947,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" @@ -3832,7 +3956,8 @@ 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" @@ -3840,7 +3965,7 @@ msgstr "Nouveau mot de passe" msgid "6 or more characters" msgstr "6 caractères ou plus" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Identique au mot de passe ci-dessus" @@ -3864,11 +3989,12 @@ msgstr "Ancien mot de passe incorrect" msgid "Error saving user; invalid." msgstr "Erreur lors de l’enregistrement de l’utilisateur ; invalide." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Impossible de sauvegarder le nouveau mot de passe." -#: 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 "Mot de passe enregistré." @@ -4178,12 +4304,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 "" @@ -4191,32 +4317,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:433 +#: lib/groupeditform.php:146 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Site personnel" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:125 +#: actions/profilesettings.php:121 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." @@ -4224,7 +4351,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 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4232,44 +4359,44 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "Balises" #. 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 "" @@ -4277,27 +4404,27 @@ msgstr "" "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 +#: actions/profilesettings.php:171 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 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -4307,7 +4434,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 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4315,51 +4442,49 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Créer un compte" @@ -4484,36 +4609,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." @@ -4522,68 +4655,101 @@ 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. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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: 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 "Identique au mot de passe ci-dessus" + +#. 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." @@ -4591,23 +4757,34 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Impossible de sauvegarder le nouveau mot de passe." + +#. 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 "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." @@ -4624,7 +4801,7 @@ msgstr "Désolé, code d’invitation invalide." msgid "Registration successful" msgstr "Compte créé avec succès" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Créer un compte" @@ -4652,41 +4829,33 @@ 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." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 caractères ou plus" #. 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 "Courriel" -#: 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 "" "Utilisé uniquement pour les mises à jour, les notifications, et la " "récupération de mot de passe" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Nom plus long, votre \"vrai\" nom de préférence" -#: actions/register.php:463 +#: actions/register.php:462 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:524 +#: actions/register.php:523 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." @@ -4694,23 +4863,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:533 #, 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:537 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:540 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:545 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4720,7 +4889,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:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4754,7 +4923,7 @@ msgstr "" "Merci pour votre inscription ! Nous vous souhaitons d’apprécier notre " "service." -#: 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.)" @@ -4762,7 +4931,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." @@ -4774,73 +4943,76 @@ 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 +#: actions/remotesubscribe.php:129 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 +#: actions/remotesubscribe.php:133 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 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "S’abonner" -#: actions/remotesubscribe.php:159 +#: actions/remotesubscribe.php:158 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Repris" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Repris !" @@ -5070,7 +5242,7 @@ msgstr "Organisation" #. 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 "Description" @@ -5093,8 +5265,9 @@ msgstr "Actions de l’application" msgid "Reset key & secret" msgstr "Réinitialiser la clé et le secret" +#. TRANS: Title of form for deleting a user. #: actions/showapplication.php:252 lib/deletegroupform.php:121 -#: lib/deleteuserform.php:66 lib/noticelist.php:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Supprimer" @@ -5222,7 +5395,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Alias" @@ -5619,13 +5792,13 @@ 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 "" @@ -5633,59 +5806,59 @@ 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 +#: actions/smssettings.php:152 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." @@ -5694,32 +5867,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." @@ -5729,39 +5902,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 " @@ -5772,7 +5945,7 @@ msgstr "" "écrivez-nous à %s." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Aucun code entré" @@ -6037,10 +6210,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 "" @@ -6275,12 +6444,12 @@ 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." @@ -6288,7 +6457,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 !" @@ -7262,23 +7431,28 @@ 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é." @@ -7845,25 +8019,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:150 +#: lib/common.php:155 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:153 +#: lib/common.php:158 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Aller au programme d’installation" @@ -7930,11 +8104,21 @@ 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: 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 @@ -8012,33 +8196,29 @@ msgstr "Aller" msgid "Grant this user the \"%s\" role" msgstr "Accorder le rôle « %s » à cet utilisateur" -#: lib/groupeditform.php:154 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 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:160 msgid "Describe the group or topic" msgstr "Description du groupe ou du sujet" -#: 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" +#: 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." 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:174 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:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9254,14 +9434,9 @@ msgstr[1] "il y a environ %d mois" 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 "" @@ -9302,3 +9477,31 @@ msgstr "XML invalide, racine XRD manquante." #, php-format msgid "Getting backup from file '%s'." msgstr "Obtention de la sauvegarde depuis le fichier « %s »." + +#~ msgid "No such group" +#~ msgstr "Aucun groupe trouvé." + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "Méthode HTTP non trouvée !" + +#~ msgid "Reset" +#~ msgstr "Réinitialiser" + +#~ msgid "" +#~ "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#~ msgstr "" +#~ "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces. " +#~ "Requis." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 caractères ou plus. Requis." + +#~ msgid "Same as password above. Required." +#~ msgstr "Identique au mot de passe ci-dessus. Requis." + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "1 à 64 lettres minuscules ou chiffres, sans ponctuation ni espaces" + +#~ msgid "%s is not a valid color!" +#~ msgstr "&s n’est pas une couleur valide !" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 4481b116de..75d26bc21c 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:49+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:56:53+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -76,6 +76,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Gardar" @@ -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. @@ -131,8 +134,8 @@ msgstr "Esa páxina non existe." #: 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,7 +146,7 @@ msgstr "Esa páxina non existe." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -313,7 +316,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "Non se puido actualizar o usuario." @@ -335,7 +352,8 @@ 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." @@ -345,7 +363,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, fuzzy, php-format @@ -371,8 +389,8 @@ msgstr[1] "" #: 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/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." @@ -380,13 +398,17 @@ 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/groupdesignsettings.php:266 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. @@ -397,31 +419,38 @@ msgstr "" 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." @@ -515,7 +544,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:91 msgid "Could not delete favorite." msgstr "Non se puido eliminar o favorito." @@ -562,7 +592,7 @@ msgstr "Non se puido atopar o usuario de destino." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Ese alcume xa está en uso. Probe con outro." @@ -572,7 +602,7 @@ msgstr "Ese alcume xa está en uso. Probe 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:140 actions/profilesettings.php:247 +#: actions/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "O formato do alcume non é correcto." @@ -584,7 +614,7 @@ msgstr "O formato do alcume non é correcto." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "O URL da páxina persoal non é correcto." @@ -594,7 +624,7 @@ msgstr "O URL da páxina persoal non é correcto." #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -622,7 +652,7 @@ msgstr[1] "A descrición é longa de máis (o máximo son %d caracteres)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -680,22 +710,26 @@ 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." @@ -707,9 +741,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." @@ -746,7 +782,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." @@ -768,18 +804,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -801,18 +841,21 @@ 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 IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Envío de formulario inesperado." @@ -863,9 +906,9 @@ msgstr "Conta" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Alcume" @@ -873,7 +916,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contrasinal" @@ -884,7 +927,7 @@ msgstr "Contrasinal" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -955,6 +998,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 @@ -974,40 +1018,52 @@ msgstr "Non pode repetir a súa propia nota." msgid "Already repeated that notice." msgstr "Xa repetiu esa nota." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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" @@ -1145,51 +1201,49 @@ 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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, 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:406 +#: actions/apitimelineuser.php:409 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." msgstr "Non hai ningunha nota con esa id." -#: 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." @@ -1201,109 +1255,137 @@ msgstr "Método API en desenvolvemento." 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 +msgid "No such profile." msgstr "Non existe ese perfil." -#: actions/atompubfavoritefeed.php:145 -#, php-format -msgid "Notices %s has favorited to on %s" -msgstr "" - -#: 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "Non se atopou o método da API." - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "" +msgid "Cannot delete someone else's membership." +msgstr "Non se puido borrar a subscrición a si mesmo." #. 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. @@ -1311,40 +1393,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +msgid "Cannot delete someone else's subscription." msgstr "Non se puido borrar a subscrición a si mesmo." -#: actions/atompubsubscriptionfeed.php:150 -#, fuzzy, php-format -msgid "People %s has subscribed to on %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 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: 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 get a non-existing attachment. @@ -1355,10 +1434,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Sen alcume." @@ -1391,30 +1471,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Vista previa" @@ -1449,7 +1535,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Perdéronse os datos do ficheiro." @@ -1468,35 +1555,42 @@ msgstr "Non se puido actualizar o avatar." msgid "Avatar deleted." msgstr "Borrouse o avatar." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "Fondo" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1530,14 +1624,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Non bloquear este usuario" @@ -1549,7 +1642,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Si" @@ -1565,31 +1658,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 @@ -1659,23 +1727,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 @@ -1737,7 +1788,8 @@ msgid "Account deleted." msgstr "Borrouse o avatar." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Crear unha conta" @@ -1759,8 +1811,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Confirmar" @@ -1835,8 +1888,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." @@ -1890,10 +1945,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1933,19 +1989,30 @@ msgstr "Non borrar esta nota" 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." @@ -1953,81 +2020,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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2037,98 +2128,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 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 "Restaurar o deseño por defecto" +#. 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 "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 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 "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:84 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:99 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. @@ -2220,14 +2321,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "Ten que ser administrador para editar o grupo." @@ -2288,8 +2391,8 @@ msgstr "Enderezo de correo electrónico confirmado actualmente." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Borrar" @@ -2314,15 +2417,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Correo entrante" @@ -2333,14 +2436,14 @@ 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:180 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:189 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 " @@ -2355,7 +2458,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Novo" @@ -2433,9 +2536,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2451,8 +2555,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Non hai ningunha confirmación pendente que cancelar." @@ -2463,8 +2567,9 @@ 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:468 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. @@ -2483,24 +2588,25 @@ msgstr "Ese non é o seu enderezo de correo electrónico." msgid "The email address was removed." msgstr "Borrouse o enderezo de correo electrónico." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Engadiuse un novo enderezo de correo electrónico entrante." @@ -2597,7 +2703,7 @@ msgstr "Non se esperaba esta resposta!" 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 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Pode usar a subscrición local!" @@ -2727,22 +2833,19 @@ 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." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -2750,23 +2853,28 @@ 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:244 msgid "Upload" msgstr "Cargar" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Recortar" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 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:416 msgid "Failed updating logo." msgstr "Non se puido actualizar o logo." @@ -2851,7 +2959,7 @@ 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 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Crear un grupo novo" @@ -2906,14 +3014,14 @@ 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 +#: 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 +#: actions/imsettings.php:71 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2923,23 +3031,23 @@ msgstr "" "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 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "Enderezo de mensaxería instantánea" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2954,7 +3062,7 @@ msgstr "" #. 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 " @@ -2965,65 +3073,65 @@ msgstr "" "instantánea ou en GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: 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 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Enviádeme as notas mediante Jabber ou GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk 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 +#: actions/imsettings.php:171 msgid "Send me replies through Jabber/GTalk 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk 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 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Gardáronse as preferencias." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 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 +#: actions/imsettings.php:317 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3033,28 +3141,29 @@ msgstr "" "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 +#: 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." +#: 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 +#: 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: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "Borrouse o enderezo de mensaxería instantánea." @@ -3258,44 +3367,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." @@ -3303,88 +3419,95 @@ 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" @@ -3410,11 +3533,11 @@ msgstr "Identificarse" msgid "Login to site" msgstr "Identificarse no sitio" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Lembrádeme" -#: 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 "" "Identificarse automaticamente no futuro. Non se aconsella en computadoras " @@ -3809,7 +3932,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" @@ -3817,7 +3941,8 @@ 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" @@ -3825,7 +3950,7 @@ msgstr "Novo contrasinal" msgid "6 or more characters" msgstr "Seis ou máis caracteres" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Igual ao contrasinal anterior" @@ -3849,11 +3974,12 @@ msgstr "O contrasinal anterior non é correcto" msgid "Error saving user; invalid." msgstr "Houbo un erro ao gardar o usuario. Incorrecto." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Non se puido gardar o novo contrasinal." -#: 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 "Gardouse o contrasinal." @@ -4174,12 +4300,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 "" @@ -4187,12 +4313,13 @@ 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:433 +#: lib/groupeditform.php:146 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" @@ -4201,21 +4328,21 @@ 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Páxina persoal" #. 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 "URL da súa páxina persoal, blogue ou perfil noutro sitio" @@ -4223,7 +4350,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:471 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4231,44 +4358,44 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "Etiquetas" #. 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 "" @@ -4276,27 +4403,27 @@ msgstr "" "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 +#: actions/profilesettings.php:171 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 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -4306,7 +4433,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)." @@ -4314,52 +4441,50 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Crear unha conta" @@ -4484,37 +4609,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." @@ -4522,71 +4655,105 @@ 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. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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: 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 "Igual ao contrasinal anterior" + +#. 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." @@ -4594,24 +4761,35 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Non se puido gardar o novo contrasinal." + +#. 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 "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." @@ -4627,7 +4805,7 @@ msgstr "O código da invitación é incorrecto." msgid "Registration successful" msgstr "Rexistrouse correctamente" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Rexistrarse" @@ -4655,65 +4833,56 @@ 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." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "Seis ou máis caracteres" #. 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 "Correo electrónico" -#: 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 "" "Só se utiliza para actualizacións, anuncios e recuperación de contrasinais" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Nome longo, preferiblemente o seu nome \"real\"" -#: actions/register.php:463 +#: actions/register.php:462 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:524 +#: actions/register.php:523 #, 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:533 #, 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:537 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:540 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:545 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4723,7 +4892,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:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4755,7 +4924,7 @@ msgstr "" "\n" "Grazas por rexistrarse. Esperamos que goce deste servizo." -#: 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.)" @@ -4763,7 +4932,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." @@ -4775,75 +4944,78 @@ 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 +#: actions/remotesubscribe.php:129 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 +#: actions/remotesubscribe.php:133 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 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Subscribirse" -#: actions/remotesubscribe.php:159 +#: actions/remotesubscribe.php:158 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Repetida" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Repetida!" @@ -5070,7 +5242,7 @@ msgstr "Organización" #. 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 "Descrición" @@ -5093,8 +5265,9 @@ msgstr "Accións da aplicación" msgid "Reset key & secret" msgstr "Restablecer o contrasinal ou a pregunta secreta" +#. TRANS: Title of form for deleting a user. #: actions/showapplication.php:252 lib/deletegroupform.php:121 -#: lib/deleteuserform.php:66 lib/noticelist.php:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Borrar" @@ -5223,7 +5396,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Pseudónimos" @@ -5620,72 +5793,72 @@ 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 +#: actions/smssettings.php:152 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." @@ -5694,32 +5867,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." @@ -5728,39 +5901,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 " @@ -5771,7 +5944,7 @@ 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 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Non se introduciu ningún código" @@ -6034,10 +6207,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 "" @@ -6272,12 +6441,12 @@ 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." @@ -6285,7 +6454,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!" @@ -7255,25 +7424,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 "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." @@ -7836,26 +8011,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:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Ir ao instalador." @@ -7927,12 +8102,21 @@ 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: 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 @@ -8010,29 +8194,23 @@ msgstr "Continuar" msgid "Grant this user the \"%s\" role" msgstr "Outorgarlle a este usuario o rol \"%s\"" -#: lib/groupeditform.php:154 -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:155 #, 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:160 msgid "Describe the group or topic" msgstr "Describa o grupo ou o tema" -#: 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] "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:174 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." @@ -8040,7 +8218,7 @@ msgstr "" "Localidade do grupo, se a ten, como por exemplo \"Cidade, Provincia, " "Comunidade, País\"" -#: lib/groupeditform.php:190 +#: lib/groupeditform.php:182 #, fuzzy, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9254,14 +9432,9 @@ msgstr[1] "hai %d meses" 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." @@ -9299,3 +9472,34 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#, fuzzy +#~ msgid "No such group" +#~ msgstr "Non existe tal grupo." + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "Non se atopou o método da API." + +#~ msgid "Reset" +#~ msgstr "Restablecer" + +#~ 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." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 ou máis caracteres. Obrigatorio." + +#~ msgid "Same as password above. Required." +#~ msgstr "O mesmo contrasinal que o anterior. Obrigatorio." + +#~ 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" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s non é unha cor correcta!" diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 7dfca01f6f..949f9f40d5 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -11,18 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:50+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:56:58+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 (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\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: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -77,6 +77,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Składować" @@ -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. @@ -132,8 +135,8 @@ msgstr "Strona njeeksistuje." #: 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,7 +147,7 @@ msgstr "Strona njeeksistuje." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -302,9 +305,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "Wužiwar njeje so dał aktualizować." @@ -326,7 +345,8 @@ 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ł." @@ -336,7 +356,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -360,8 +380,8 @@ msgstr[3] "" #: 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/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ć." @@ -369,13 +389,17 @@ 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/groupdesignsettings.php:266 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. @@ -386,31 +410,38 @@ msgstr "Hłowny" 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 +#. 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 faworitow" -#: 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 "%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." @@ -504,7 +535,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:91 msgid "Could not delete favorite." msgstr "Faworit njeda so zhašeć." @@ -550,7 +582,7 @@ msgstr "Cilowy wužiwar njeda so namakać." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Přimjeno so hižo wužiwa. Spytaj druhe." @@ -560,7 +592,7 @@ msgstr "Přimjeno so hižo wužiwa. Spytaj druhe." #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Žane płaćiwe přimjeno." @@ -572,7 +604,7 @@ msgstr "Žane płaćiwe přimjeno." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "Startowa strona njeje płaćiwy URL." @@ -582,7 +614,7 @@ msgstr "Startowa strona njeje płaćiwy 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:151 actions/profilesettings.php:256 +#: actions/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." msgstr "Dospołne mjeno je předołho (maks. 255 znamješkow)." @@ -611,7 +643,7 @@ msgstr[3] "Wopisanje je předołho (maks. %d znamješkow)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 msgid "Location is too long (maximum 255 characters)." msgstr "Městno je předołho (maks. 255 znamješkow)." @@ -670,22 +702,26 @@ 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ć." @@ -697,9 +733,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." @@ -736,7 +774,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." @@ -756,18 +794,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -786,18 +828,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Njewočakowane wotpósłanje formulara." @@ -842,9 +887,9 @@ msgstr "Konto" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Přimjeno" @@ -852,7 +897,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Hesło" @@ -863,7 +908,7 @@ msgstr "Hesło" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -933,6 +978,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 @@ -952,39 +998,50 @@ msgstr "Njemóžno twoju zdźělenku wospjetować." msgid "Already repeated that notice." msgstr "Tuta zdźělenka bu hižo wospjetowana." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" #. 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 "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" @@ -1119,51 +1176,49 @@ msgstr "Jenož wužiwar móže swojsku časowu lajstu přidać." 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 "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 "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 "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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, php-format msgid "No content for notice %d." msgstr "Žadyn wobsah za zdźělenku %d." #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, php-format msgid "Notice with URI \"%s\" already exists." msgstr "Zdźělenka z URI \"%s\" hižo eksistuje." -#: 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." @@ -1174,97 +1229,128 @@ msgstr "API-metoda njeskónčena." msgid "User not found." msgstr "Wužiwar njenamakany." -#: actions/atompubfavoritefeed.php:70 -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 -msgid "Can't add someone else's subscription" -msgstr "Nowy abonement njeda so přidać" - -#. 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 "Jenož zdźělenki dadźa so jako fawority składować." - -#: actions/atompubfavoritefeed.php:256 -msgid "Unknown note." -msgstr "Njeznata notica." - -#: actions/atompubfavoritefeed.php:263 -msgid "Already a favorite." -msgstr "Je hižo faworit." - -#: 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 msgid "No such profile." msgstr "Profil njeeksistuje." +#. 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 #, php-format msgid "%s group memberships" msgstr "%s skupisnkich čłonstwow" -#: actions/atompubmembershipfeed.php:147 -#, php-format -msgid "Groups %s is a member of on %s" -msgstr "Skupiny, w kotrychž %s je čłon na %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 "Čł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 +#. TRANS: Client exception thrown when trying to subscribe to a non-existing group. +#: actions/atompubmembershipfeed.php:259 msgid "Unknown group." msgstr "Njeznata skupina" -#: 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 "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 "Wot administratora zablokowany." -#: actions/atompubshowfavorite.php:89 +#. TRANS: Client exception thrown when referencing a non-existing favorite. +#: actions/atompubshowfavorite.php:90 msgid "No such favorite." msgstr "Faworit njeeksistuje." +#. 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" +#, fuzzy +msgid "Cannot delete someone else's favorite." msgstr "Faworit druheho njeda so zhašeć" -#: actions/atompubshowmembership.php:81 -msgid "No such group" -msgstr "Skupina njeeksistuje" +#. 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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 -msgid "Not a member" +#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group +#: actions/atompubshowmembership.php:91 +#, fuzzy +msgid "Not a member." msgstr "Njeje čłon" -#: actions/atompubshowmembership.php:115 -msgid "Method not supported" -msgstr "Metoda so njepodpěruje." - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "" +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 +#, fuzzy +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. @@ -1272,41 +1358,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, php-format -msgid "No such profile id: %d" -msgstr "Profilowy ID njeeksistuje: %d" +msgid "No such profile id: %d." +msgstr "Profilowy ID njeeksistuje: %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 "Njejsy tón profil abonował." +#, php-format +msgid "Profile %1$d not subscribed to profile %2$d." +msgstr "Profil %1$d njeje profil %2$d abonował." #. 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 "Abonement druheho njeda so zhašeć" - -#: actions/atompubsubscriptionfeed.php:150 -#, php-format -msgid "People %s has subscribed to on %s" -msgstr "Ludźo, kotřiž su %s na %s abonowali" +msgid "Cannot delete someone else's subscription." +msgstr "Abonement druheho njeda so zhašeć." #. TRANS: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 #, php-format -msgid "Unknown profile %s" -msgstr "Njeznaty profil %s" +msgid "Unknown profile %s." +msgstr "Njeznaty profil %s." #. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 @@ -1316,10 +1398,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Žane přimjeno." @@ -1351,30 +1434,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Přehlad" @@ -1409,7 +1498,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Naše datajowe daty su so zhubili." @@ -1428,33 +1518,40 @@ msgstr "Aktualizowanje awatara je so njeporadźiło." msgid "Avatar deleted." msgstr "Awatar zničeny." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "Konto zawěsćić" -#: actions/backupaccount.php:80 +#. 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 "" +msgstr "Njesměš swoje konto zawěsćić." -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 msgctxt "BUTTON" msgid "Backup" msgstr "Zawěsćenje" -#: actions/backupaccount.php:258 +#. 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ć" @@ -1485,14 +1582,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Tutoho wužiwarja njeblokować" @@ -1504,7 +1600,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Haj" @@ -1520,31 +1616,6 @@ msgstr "Tutoho wužiwarja blokować" 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 @@ -1614,23 +1685,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 @@ -1680,7 +1734,7 @@ msgstr "" #: actions/deleteaccount.php:164 #, php-format msgid "You must write \"%s\" exactly in the box." -msgstr "" +msgstr "Dyrbiš \"%s\"eksaktnje do pola zapisać." #. TRANS: Confirmation that a user account has been deleted. #: actions/deleteaccount.php:206 @@ -1688,7 +1742,8 @@ msgid "Account deleted." msgstr "Konto zhašene." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 msgid "Delete account" msgstr "Konto zhašeć" @@ -1709,23 +1764,23 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 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 -#, fuzzy, php-format +#, php-format msgid "Enter \"%s\" to confirm that you want to delete your account." -msgstr "Njemóžeš swoje konto zhašeć." +msgstr "Zapodaj \"%s\", zo by wobkrućił, zo chceš swoje konto zhašeć." #. TRANS: Button title for user account deletion. #: actions/deleteaccount.php:323 -#, fuzzy msgid "Permanently delete your account" -msgstr "Njemóžeš swoje konto zhašeć." +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 @@ -1781,8 +1836,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." @@ -1830,10 +1887,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1871,96 +1929,131 @@ msgstr "Tutu zdźělenku njewušmórnyć" msgid "Delete this notice" msgstr "Tutu zdźělenku wušmórnyć" -#: 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 +#, fuzzy +msgctxt "TITLE" msgid "Delete user" msgstr "Wužiwarja wušmórnyć" -#: actions/deleteuser.php:136 +#. TRANS: Fieldset legend on delete user page. +#: actions/deleteuser.php:134 +msgid "Delete user" +msgstr "Wužiwarja wušmórnyć" + +#. 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 "Tuitu skupinu njezhašeć" + #. 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 msgid "Delete this user" msgstr "Tutoho wužiwarja wušmórnyć" #. 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1969,98 +2062,108 @@ 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 +#, fuzzy +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 +#, fuzzy +msgctxt "BUTTON" msgid "Use defaults" msgstr "Standardne hódnoty wužiwać" +#. 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 "Standardne designy wobnowić" +#. 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 "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. #. 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 "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:84 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:99 msgid "Add to favorites" msgstr "K faworitam přidać" -#: 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 "Dokument \"%s\" njeeksistuje" #. TRANS: Title for "Edit application" form. @@ -2150,14 +2253,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "Dyrbiš administrator być, zo by skupinu wobdźěłał." @@ -2218,8 +2323,8 @@ msgstr "Aktualna wobkrućena e-mejlowa adresa." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Wotstronić" @@ -2242,15 +2347,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Dochadźaca e-mejl" @@ -2261,13 +2366,13 @@ 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:180 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:189 actions/smssettings.php:182 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -2280,7 +2385,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Nowy" @@ -2354,9 +2459,9 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2369,8 +2474,8 @@ 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 +#: actions/emailsettings.php:454 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ć," @@ -2381,8 +2486,8 @@ 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:468 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. @@ -2401,24 +2506,24 @@ msgstr "To njeje twoja e-mejlowa adresa." msgid "The email address was removed." msgstr "E-mejlowa adresa bu wotstronjena." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Nowa adresa za dochadźace e-mejle přidata." @@ -2511,7 +2616,7 @@ msgstr "Njewočakowana wotmołwa!" msgid "User being listened to does not exist." msgstr "" -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Móžeš lokalny abonement wužiwać!" @@ -2636,22 +2741,19 @@ 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 -msgid "Couldn't update your design." -msgstr "Twój design njeda so aktualizować." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -2659,23 +2761,28 @@ 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:244 msgid "Upload" msgstr "Nahrać" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Přirězać" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "Logo zaktualizowane." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "Aktualizowanje loga je so njeporadźiło." @@ -2755,7 +2862,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Nowu skupinu wutworić" @@ -2807,14 +2914,14 @@ msgid "Error removing the block." msgstr "Zmylk při wotstronjenju blokowanja." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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](%%" @@ -2822,23 +2929,23 @@ msgid "" msgstr "" #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "IM-adresa" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk address." msgstr "Aktualna wobkrućena adresa Jabber/GTalk." #. TRANS: Form note in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:124 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2850,7 +2957,7 @@ msgstr "" #. 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 " @@ -2858,63 +2965,63 @@ msgid "" msgstr "" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "IM-nastajenja" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Pósćel mi zdźělenki přez Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Powěsć pósłac, hdyž so status Jabber/GTalk změni." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 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 +#: actions/imsettings.php:178 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 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Nastajenja składowane." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: 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 +#: actions/imsettings.php:317 msgid "Not a valid Jabber ID" msgstr "Njepłaćiwy ID Jabber" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:329 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2922,28 +3029,28 @@ msgid "" msgstr "" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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." +#: 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 +#: 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: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "IM-adresa bu wotstronjena." @@ -3123,130 +3230,144 @@ 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 -#, 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 je do %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 -#, 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 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 "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ć" @@ -3270,11 +3391,11 @@ msgstr "Přizjewić" msgid "Login to site" msgstr "Při sydle přizjewić" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Składować" -#: 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 "" @@ -3651,7 +3772,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" @@ -3659,7 +3781,8 @@ 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" @@ -3667,7 +3790,7 @@ msgstr "Nowe hesło" msgid "6 or more characters" msgstr "6 abo wjace znamješkow" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Samsne hesło kaž horjeka" @@ -3691,11 +3814,12 @@ msgstr "Wopačne stare hesło" msgid "Error saving user; invalid." msgstr "Zmylk při składowanju wužiwarja; njepłaćiwy." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Nowe hesło njeda so składować." -#: 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 "Hesło składowane." @@ -4000,12 +4124,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 "" @@ -4013,12 +4137,13 @@ 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:433 +#: lib/groupeditform.php:146 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 " @@ -4026,28 +4151,28 @@ 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Startowa strona" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:125 +#: actions/profilesettings.php:121 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:471 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4057,70 +4182,70 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 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" 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 +#: 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)" msgstr "" @@ -4128,7 +4253,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 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4138,51 +4263,47 @@ 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 actions/tagother.php:178 #, php-format 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 msgid "Restore account" msgstr "Konto wobnowić" @@ -4225,7 +4346,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 @@ -4274,7 +4395,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. @@ -4292,125 +4413,177 @@ 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. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 +#, fuzzy +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 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 +#, fuzzy +msgid "6 or more characters, and do not forget it!" msgstr "6 abo wjace znamješkow, a njezabudź jo!" -#: 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 "Samsne hesło kaž horjeka" + +#. 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Nowe hesło njeda so składować." + +#. 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 "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." @@ -4426,7 +4599,7 @@ msgstr "Wodaj, njepłaćiwy přeprošenski kod." msgid "Registration successful" msgstr "Registrowanje wuspěšne" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrować" @@ -4452,68 +4625,59 @@ 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 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." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 abo wjace znamješkow" #. 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 "E-mejl" -#: 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 "" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Dlěše mjeno, wosebje twoje \"woprawdźite\" mjeno" -#: actions/register.php:463 +#: actions/register.php:462 msgid "URL of your homepage, blog, or profile on another site" msgstr "" -#: 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 "Wšě prawa wuměnjenjene." #. 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 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4532,13 +4696,13 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: 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.)" msgstr "" -#: actions/remotesubscribe.php:98 +#: actions/remotesubscribe.php:97 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -4546,72 +4710,72 @@ 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 +#: 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 +#: actions/remotesubscribe.php:133 msgid "URL of your profile on another compatible microblogging service" msgstr "" -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Abonować" -#: actions/remotesubscribe.php:159 +#: 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Wospjetowany" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Wospjetowany!" @@ -4722,7 +4886,6 @@ msgstr "Systemowy zmylk při nahrawanju dataje." #. TRANS: Client exception thrown when a feed is not an Atom feed. #: actions/restoreaccount.php:207 -#, fuzzy msgid "Not an Atom feed." msgstr "To Atomowy kanal njeje." @@ -4826,7 +4989,7 @@ msgstr "Organizacija" #. 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 "Wopisanje" @@ -4849,8 +5012,9 @@ msgstr "Aplikaciske akcije" 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:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Zničić" @@ -4968,7 +5132,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Aliasy" @@ -5332,141 +5496,141 @@ 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 +#: actions/smssettings.php:152 msgid "Phone number, no punctuation or spaces, with area code" -msgstr "" +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 " @@ -5474,7 +5638,7 @@ msgid "" msgstr "" #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Žadyn kod zapodaty" @@ -5494,7 +5658,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." @@ -5530,7 +5694,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" @@ -5725,10 +5889,6 @@ 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 "" @@ -5949,18 +6109,18 @@ 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 "Wjele wjesela!" @@ -6152,7 +6312,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 @@ -6700,9 +6860,9 @@ msgstr "" #. TRANS: Client exception thrown when using an unknown verb for the activity importer. #: lib/activityimporter.php:81 -#, fuzzy, php-format +#, php-format msgid "Unknown verb: \"%s\"." -msgstr "Njeznata rěč \"%s\"." +msgstr "Njeznaty werb: \"%s\"." #. TRANS: Client exception thrown when trying to force a subscription for an untrusted user. #: lib/activityimporter.php:107 @@ -6711,9 +6871,8 @@ 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 "Podaj mjeno wužiwarja, kotrehož chceš abonować" +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 @@ -6728,13 +6887,12 @@ 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 "" +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 -#, fuzzy msgid "User is already a member of this group." -msgstr "Sy hižo čłon teje skupiny." +msgstr "Wužiwar je hižo čłon tuteje skupiny." #. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import. #: lib/activityimporter.php:207 @@ -6744,9 +6902,9 @@ 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 +#, php-format msgid "No content for notice %s." -msgstr "Žadyn wobsah za zdźělenku %d." +msgstr "!Žadyn wobsah za powěsć %s." #. TRANS: Client exception thrown when there is no source attribute. #: lib/activityutils.php:200 @@ -6876,7 +7034,7 @@ msgstr "" #. TRANS: Client error thrown when authentication fails. #: lib/apiauth.php:266 lib/apiauth.php:293 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 @@ -6895,22 +7053,25 @@ 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 "" @@ -7030,11 +7191,10 @@ msgstr "Wotwołać" #: lib/atom10feed.php:113 msgid "Author element must contain a name element." -msgstr "" +msgstr "Element \"author\" dyrbi element \"name\" wobsahować." #. 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 "Njewužij tutu metodu!" @@ -7109,14 +7269,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 @@ -7160,14 +7320,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. @@ -7299,7 +7459,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. @@ -7345,6 +7505,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. @@ -7447,24 +7608,24 @@ msgid "" msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 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:153 +#: lib/common.php:158 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "K instalaciji" @@ -7531,11 +7692,21 @@ 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: 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 @@ -7612,37 +7783,31 @@ msgstr "Start" msgid "Grant this user the \"%s\" role" msgstr "Tutomu wužiwarjej rólu \"%s\" dać" -#: lib/groupeditform.php:154 -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:155 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:160 msgid "Describe the group or topic" msgstr "Skupinu abo temu wopisać" -#: 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" +#: 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." msgstr[0] "Skupinu abo temu w %d znamješce wopisać" 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:174 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:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -7938,7 +8103,7 @@ msgstr "SMS-wobkrućenje" #: lib/mail.php:472 #, 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. @@ -8126,7 +8291,7 @@ 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 "" +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. @@ -8703,10 +8868,10 @@ msgstr "před něhdźe jednej mjeńšinu" #, 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 @@ -8718,10 +8883,10 @@ msgstr "před něhdźe jednej hodźinu" #, 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 @@ -8733,10 +8898,10 @@ msgstr "před něhdźe jednym dnjom" #, 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 @@ -8748,24 +8913,19 @@ msgstr "před něhdźe jednym měsacom" #, 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 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 "" @@ -8807,4 +8967,33 @@ msgstr "Njepłaćiwy XML, korjeń XRD faluje." #: scripts/restoreuser.php:62 #, php-format msgid "Getting backup from file '%s'." -msgstr "" +msgstr "Wobstaruje so zawěsćenje z dataje \"%s\"-" + +#~ msgid "No such group" +#~ msgstr "Skupina njeeksistuje" + +#~ msgid "HTTP method not supported" +#~ msgstr "HTTP-metoda so njepodpěruje" + +#~ msgid "Reset" +#~ msgstr "Wróćo stajić" + +#~ 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." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 abo wjace znamješkow. Trěbne." + +#~ msgid "Same as password above. Required." +#~ msgstr "Jenake kaž hesło horjeka. Trěbne." + +#~ 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." + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s płaćiwa barba njeje!" diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index c51fb8e3c8..fac32f4770 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:51+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:57:01+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" @@ -79,6 +79,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Mentés" @@ -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. @@ -134,8 +137,8 @@ msgstr "Nincs ilyen lap." #: 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,7 +149,7 @@ msgstr "Nincs ilyen lap." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -310,7 +313,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: 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." @@ -332,7 +349,8 @@ 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." @@ -342,7 +360,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, fuzzy, php-format @@ -368,8 +386,8 @@ msgstr[1] "" #: 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/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." @@ -377,13 +395,17 @@ 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/groupdesignsettings.php:266 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. @@ -394,31 +416,38 @@ msgstr "" 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." @@ -510,7 +539,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:91 msgid "Could not delete favorite." msgstr "Nem sikerült törölni a kedvencet." @@ -556,7 +586,7 @@ msgstr "A cél felhasználó nem található." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "A becenév már foglalt. Próbálj meg egy másikat." @@ -566,7 +596,7 @@ msgstr "A becenév már foglalt. Próbálj meg egy másikat." #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Nem érvényes becenév." @@ -578,7 +608,7 @@ msgstr "Nem érvényes becenév." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "A honlap érvénytelen URL-cím." @@ -588,7 +618,7 @@ msgstr "A honlap érvénytelen URL-cím." #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -616,7 +646,7 @@ msgstr[1] "A leírás túl hosszú (legfeljebb %d karakter lehet)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -674,22 +704,26 @@ 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." @@ -701,9 +735,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." @@ -740,7 +776,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,18 +798,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -792,18 +832,21 @@ 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 IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Váratlan űrlapbeküldés." @@ -849,9 +892,9 @@ msgstr "Kontó" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Becenév" @@ -859,7 +902,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Jelszó" @@ -870,7 +913,7 @@ msgstr "Jelszó" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -943,6 +986,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 @@ -962,40 +1006,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." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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" @@ -1130,51 +1186,49 @@ 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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, 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:406 +#: actions/apitimelineuser.php:409 #, 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." @@ -1186,107 +1240,137 @@ msgstr "Az API-metódus fejlesztés alatt áll." 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 +msgid "No such profile." msgstr "Nincs ilyen profil." -#: actions/atompubfavoritefeed.php:145 -#, php-format -msgid "Notices %s has favorited to on %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 +#, fuzzy +msgid "Cannot add someone else's subscription." +msgstr "Nem sikerült törölni a kedvencet." -#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222 -msgid "Can't 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 "Keressünk a hírek tartalmában" -#. 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 "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" -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 -msgid "No such group" -msgstr "Nincs ilyen csoport" +#. 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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "Az API-metódus nem található." - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "" +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. @@ -1294,40 +1378,37 @@ msgstr "" #: 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." #. 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" +msgid "Profile %1$d not subscribed to profile %2$d." msgstr "Senkinek sem iratkoztál fel a híreire." #. 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" +msgid "Cannot delete someone else's subscription." msgstr "Nem sikerült törölni a kedvencet." -#: actions/atompubsubscriptionfeed.php:150 -#, fuzzy, php-format -msgid "People %s has subscribed to on %s" -msgstr "Senki sem követ figyelemmel." - #. TRANS: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: 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 get a non-existing attachment. @@ -1338,10 +1419,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Nincs becenév." @@ -1372,30 +1454,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Előnézet" @@ -1433,7 +1521,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Elvesztettük az adatainkat." @@ -1452,35 +1541,42 @@ msgstr "Nem sikerült felölteni az avatart." msgid "Avatar deleted." msgstr "Avatar törölve." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. 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" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1511,14 +1607,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Ne blokkoljuk ezt a felhasználót" @@ -1530,7 +1625,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Igen" @@ -1546,31 +1641,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 @@ -1641,23 +1711,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 @@ -1719,7 +1772,8 @@ msgid "Account deleted." msgstr "Avatar törölve." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Felhasználó törlése" @@ -1741,8 +1795,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Megerősítés" @@ -1814,8 +1869,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ó." @@ -1870,10 +1927,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1911,19 +1969,30 @@ msgstr "Ne töröljük ezt a hírt" 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." @@ -1931,80 +2000,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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2012,98 +2105,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 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 "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 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 "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:84 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:99 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. @@ -2195,14 +2298,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "" @@ -2263,8 +2368,8 @@ msgstr "A jelenleg megerősített e-mail cím." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Eltávolítás" @@ -2290,15 +2395,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Bejövő email" @@ -2309,13 +2414,13 @@ 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:180 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:189 actions/smssettings.php:182 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -2328,7 +2433,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Új" @@ -2404,9 +2509,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2422,8 +2528,8 @@ 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 +#: actions/emailsettings.php:454 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." @@ -2434,8 +2540,9 @@ 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:468 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. @@ -2454,24 +2561,25 @@ msgstr "Ez nem a te e-mail címed." msgid "The email address was removed." msgstr "" -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Új bejövő e-mail cím hozzáadva." @@ -2566,7 +2674,7 @@ msgstr "Nem várt válasz!" 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 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Figyelemmel követheted helyben!" @@ -2695,44 +2803,46 @@ 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 -msgid "Couldn't update your design." -msgstr "Nem sikerült frissíteni a designt." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, 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:244 msgid "Upload" msgstr "Feltöltés" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Levágás" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 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:416 msgid "Failed updating logo." msgstr "Nem sikerült a logó feltöltése." @@ -2812,7 +2922,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Új csoport létrehozása" @@ -2867,14 +2977,14 @@ msgid "Error removing the block." msgstr "Hiba a blokkolás feloldása közben." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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](%%" @@ -2882,23 +2992,23 @@ msgid "" msgstr "" #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "IM-cím" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk address." msgstr "" #. TRANS: Form note in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:124 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2910,7 +3020,7 @@ msgstr "" #. 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 " @@ -2918,63 +3028,63 @@ msgid "" msgstr "" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: 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 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Beállítások elmentve." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 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 +#: actions/imsettings.php:317 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2982,28 +3092,29 @@ msgid "" msgstr "" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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 "" +#: 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 +#: actions/imsettings.php:396 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 +#: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "" @@ -3179,131 +3290,145 @@ 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 "" @@ -3327,11 +3452,11 @@ msgstr "Bejelentkezés" msgid "Login to site" msgstr "Bejelentkezés az oldalra" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Emlékezz rám" -#: 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 "" "A jövőben legyen automatikus a bejelentkezés; csak ha egyedül használod a " @@ -3708,7 +3833,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" @@ -3716,7 +3842,8 @@ 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ó" @@ -3724,7 +3851,7 @@ msgstr "Új jelszó" msgid "6 or more characters" msgstr "6 vagy több karakter" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Ugyanaz mint a fenti jelszó" @@ -3748,11 +3875,12 @@ msgstr "Érvénytelen a régi jelszó" msgid "Error saving user; invalid." msgstr "Hiba a felhasználó mentésekor; érvénytelen." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Az új jelszót nem sikerült elmenteni." -#: 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 "Jelszó elmentve." @@ -4077,12 +4205,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 "" @@ -4090,33 +4218,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:433 +#: lib/groupeditform.php:146 #, 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Honlap" #. 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 "" @@ -4126,7 +4255,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" @@ -4134,44 +4263,44 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "Címkék" #. 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 "" @@ -4179,27 +4308,27 @@ msgstr "" "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 +#: actions/profilesettings.php:171 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 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -4209,7 +4338,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)." @@ -4217,52 +4346,50 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 msgid "Restore account" msgstr "" @@ -4377,124 +4504,176 @@ 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 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: 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 "Ugyanaz mint a fenti jelszó" + +#. 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Az új jelszót nem sikerült elmenteni." + +#. 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 "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 "" @@ -4510,7 +4689,7 @@ msgstr "" msgid "Registration successful" msgstr "A regisztráció sikeres" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Regisztráció" @@ -4536,71 +4715,63 @@ 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 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." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 vagy több karakter" #. 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 "E-mail" -#: 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 "" "Csak frissítéskor, fontos közlemények esetén és jelszóproblémák orvoslására " "használjuk" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Hosszabb név, célszerűen a \"valódi\" neved" -#: actions/register.php:463 +#: actions/register.php:462 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: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 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4619,7 +4790,7 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: 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.)" @@ -4627,7 +4798,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." @@ -4635,72 +4806,75 @@ 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 +#: 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 +#: actions/remotesubscribe.php:133 msgid "URL of your profile on another compatible microblogging service" msgstr "" -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Kövessük" -#: actions/remotesubscribe.php:159 +#: 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "" @@ -4919,7 +5093,7 @@ msgstr "Szervezet" #. 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 "Leírás" @@ -4942,8 +5116,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:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Törlés" @@ -5061,7 +5236,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Álnevek" @@ -5441,141 +5616,141 @@ msgid "Save site notice" msgstr "" #. 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 +#: 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 "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 " @@ -5583,7 +5758,7 @@ msgid "" msgstr "" #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Nincs kód megadva" @@ -5832,10 +6007,6 @@ 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 "" @@ -6057,18 +6228,18 @@ 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 "" @@ -7000,23 +7171,26 @@ 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 "" @@ -7531,26 +7705,26 @@ msgid "" msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Menj a telepítőhöz." @@ -7619,12 +7793,21 @@ 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: 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 @@ -7702,27 +7885,23 @@ msgstr "Menjünk" 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 kisbetű vagy számjegy, nem lehet benne írásjel vagy szóköz" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 #, 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:160 msgid "Describe the group or topic" msgstr "Jellemezd a csoportot vagy a témát" -#: 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] "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:174 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." @@ -7730,7 +7909,7 @@ msgstr "" "A csoport földrajzi elhelyezkedése, ha van ilyen, pl. \"Város, Megye, Ország" "\"" -#: lib/groupeditform.php:190 +#: lib/groupeditform.php:182 #, fuzzy, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -8893,14 +9072,9 @@ msgstr[1] "" 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 "" @@ -8936,3 +9110,28 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "Nincs ilyen csoport" + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "Az API-metódus nem található." + +#~ msgid "Reset" +#~ msgstr "Alaphelyzet" + +#~ 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." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 vagy több karakter. Kötelező." + +#~ msgid "Same as password above. Required." +#~ msgstr "Ugyanaz mint a jelszó fentebb. Szükséges." + +#~ 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" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index e2af6f23a3..3c99af5802 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-15 00:20+0000\n" -"PO-Revision-Date: 2011-01-15 00:22:41+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:57:06+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80364); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-01-15 00:06:50+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -74,6 +74,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Salveguardar" @@ -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. @@ -129,8 +132,8 @@ msgstr "Pagina non existe." #: 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,7 +144,7 @@ msgstr "Pagina non existe." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -311,7 +314,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "Non poteva actualisar le usator." @@ -333,7 +350,8 @@ 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." @@ -343,7 +361,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -369,8 +387,8 @@ msgstr[1] "" #: 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/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." @@ -378,13 +396,17 @@ 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/groupdesignsettings.php:266 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. @@ -395,31 +417,38 @@ msgstr "Principal" 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 +#. 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 favorites" -#: 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 "%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." @@ -511,7 +540,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:91 msgid "Could not delete favorite." msgstr "Non poteva deler le favorite." @@ -557,7 +587,7 @@ msgstr "Non poteva trovar le usator de destination." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Pseudonymo ja in uso. Proba un altere." @@ -567,7 +597,7 @@ msgstr "Pseudonymo ja in uso. Proba un altere." #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Non un pseudonymo valide." @@ -579,7 +609,7 @@ msgstr "Non un pseudonymo valide." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "Le pagina personal non es un URL valide." @@ -589,7 +619,7 @@ msgstr "Le pagina personal non es un URL valide." #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." msgstr "Le nomine complete es troppo longe (maximo 255 characteres)." @@ -616,7 +646,7 @@ msgstr[1] "Description es troppo longe (maximo %d characteres)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 msgid "Location is too long (maximum 255 characters)." msgstr "Loco es troppo longe (maximo 255 characteres)." @@ -673,22 +703,26 @@ 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." @@ -700,9 +734,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." @@ -739,7 +775,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." @@ -759,18 +795,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -790,18 +830,21 @@ 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 IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Submission de formulario inexpectate." @@ -852,9 +895,9 @@ msgstr "Conto" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Pseudonymo" @@ -862,7 +905,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Contrasigno" @@ -873,7 +916,7 @@ msgstr "Contrasigno" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -947,6 +990,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 @@ -966,39 +1010,50 @@ msgstr "Non pote repeter tu proprie nota." msgid "Already repeated that notice." msgstr "Iste nota ha ja essite repetite." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" #. 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" @@ -1134,51 +1189,49 @@ msgstr "Solmente le usator pote adder cosas a su proprie chronologia." msgid "Only accept AtomPub for Atom feeds." msgstr "Solmente acceptar AtomPub pro syndicationes Atom." -#: 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 "Le message Atom non pote esser vacue." -#: 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 "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:334 +#: actions/apitimelineuser.php:336 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:345 +#: actions/apitimelineuser.php:347 #, php-format msgid "Cannot handle activity object type \"%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:378 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, php-format msgid "No content for notice %d." msgstr "Nulle contento pro nota %d." #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, php-format msgid "Notice with URI \"%s\" already exists." msgstr "Un nota con le URI \"%s\" jam existe." -#: actions/apitimelineuser.php:437 -#, 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." @@ -1189,96 +1242,127 @@ msgstr "Methodo API in construction." msgid "User not found." msgstr "Usator non trovate." -#: actions/atompubfavoritefeed.php:70 -msgid "No such profile" -msgstr "Profilo non existe" - -#: actions/atompubfavoritefeed.php:145 -#, php-format -msgid "Notices %s has favorited to on %s" -msgstr "Notas que %s ha addite al favorites in %s" - -#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222 -msgid "Can't add someone else's subscription" -msgstr "Non es possibile adder le subscription de un altere persona." - -#. 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 "Solmente le activitates Favorite es possibile." - -#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248 -msgid "Can only fave notices." -msgstr "Solmente notas pote esser addite al favorites." - -#: actions/atompubfavoritefeed.php:256 -msgid "Unknown note." -msgstr "Nota incognite." - -#: actions/atompubfavoritefeed.php:263 -msgid "Already a favorite." -msgstr "Es ja favorite." - -#: 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 msgid "No such profile." msgstr "Profilo non existe." +#. 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 #, php-format msgid "%s group memberships" msgstr "Membratos del gruppo %s" -#: actions/atompubmembershipfeed.php:147 -#, php-format -msgid "Groups %s is a member of on %s" -msgstr "Gruppos del quales %s es membro in %s" - -#: actions/atompubmembershipfeed.php:217 -msgid "Can't add someone else's membership" -msgstr "Non pote adder le membrato de un altere persona" +#. 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 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 -msgid "Can only handle Join activities." -msgstr "Solmente le activitates \"Join\" es possibile." +#: actions/atompubmembershipfeed.php:242 +msgid "Can only handle join activities." +msgstr "Solmente le activitates de adhesion es possibile." -#: 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 "Gruppo incognite." -#: 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 "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 "Blocate per un administrator." -#: actions/atompubshowfavorite.php:89 +#. TRANS: Client exception thrown when referencing a non-existing favorite. +#: actions/atompubshowfavorite.php:90 msgid "No such favorite." msgstr "Iste favorite non existe." +#. 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" +#, fuzzy +msgid "Cannot delete someone else's favorite." msgstr "Non pote deler le favorite de un altere persona." -#: actions/atompubshowmembership.php:81 -msgid "No such group" -msgstr "Gruppo non existe" +#. 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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 -msgid "Not a member" +#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group +#: actions/atompubshowmembership.php:91 +#, fuzzy +msgid "Not a member." msgstr "Non es membro" -#: actions/atompubshowmembership.php:115 -msgid "Method not supported" -msgstr "Methodo non supportate" - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 +#, fuzzy +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. @@ -1287,41 +1371,37 @@ msgstr "Non pote deler le membrato de un altere persona" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, php-format -msgid "No such profile id: %d" +msgid "No such profile id: %d." msgstr "Iste ID de profilo non existe: %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 "Le profilo %d non es subscribite al profilo %d" +#, php-format +msgid "Profile %1$d not subscribed to profile %2$d." +msgstr "Le profilo %1$d non es subscribite al profilo %2$d." #. 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 pote deler le subscription de un altere persona" - -#: actions/atompubsubscriptionfeed.php:150 -#, php-format -msgid "People %s has subscribed to on %s" -msgstr "Personas al quales %s ha subscribite in %s" +msgid "Cannot delete someone else's subscription." +msgstr "Non pote deler le subscription de un altere persona." #. TRANS: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 msgid "Can only handle Follow activities." 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:257 msgid "Can only follow people." msgstr "Pote solmente sequer personas." -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 #, php-format -msgid "Unknown profile %s" -msgstr "Profilo incognite: %s" +msgid "Unknown profile %s." +msgstr "Profilo %s incognite." #. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 @@ -1331,10 +1411,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Nulle pseudonymo." @@ -1366,30 +1447,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Previsualisation" @@ -1424,7 +1511,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Datos del file perdite." @@ -1443,24 +1531,30 @@ msgstr "Actualisation del avatar fallite." msgid "Avatar deleted." msgstr "Avatar delite." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "Facer un copia de reserva del conto" -#: actions/backupaccount.php:80 +#. 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." -#: actions/backupaccount.php:232 +#. 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 " +"\">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 "" @@ -1470,12 +1564,14 @@ msgstr "" "como adresses de e-mail e de messageria instantanee non es copiate. In " "addition, le files incargate e le messages directe non es copiate." -#: actions/backupaccount.php:255 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 msgctxt "BUTTON" msgid "Backup" msgstr "Copia de reserva" -#: actions/backupaccount.php:258 +#. 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" @@ -1509,14 +1605,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Non blocar iste usator" @@ -1528,7 +1623,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Si" @@ -1544,31 +1639,6 @@ msgstr "Blocar iste usator" 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 @@ -1638,23 +1708,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 @@ -1704,7 +1757,7 @@ msgstr "Io es secur." #: actions/deleteaccount.php:164 #, php-format msgid "You must write \"%s\" exactly in the box." -msgstr "" +msgstr "Tu debe scriber \"%s\" exactemente in le quadro." #. TRANS: Confirmation that a user account has been deleted. #: actions/deleteaccount.php:206 @@ -1712,7 +1765,8 @@ msgid "Account deleted." msgstr "Conto delite." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 msgid "Delete account" msgstr "Deler conto" @@ -1722,6 +1776,8 @@ 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. @@ -1731,25 +1787,27 @@ 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 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 +#, php-format msgid "Enter \"%s\" to confirm that you want to delete your account." -msgstr "Tu non pote deler usatores." +msgstr "Entra \"%s\" pro confirmar que tu vole deler tu conto." #. TRANS: Button title for user account deletion. #: actions/deleteaccount.php:323 -#, fuzzy msgid "Permanently delete your account" -msgstr "Tu non pote deler usatores." +msgstr "Deler permanentemente tu conto" #. TRANS: Client error displayed trying to delete an application while not logged in. #: actions/deleteapplication.php:62 @@ -1808,8 +1866,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." @@ -1860,10 +1920,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1903,19 +1964,30 @@ msgstr "Non deler iste nota" 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 +#, fuzzy +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." @@ -1923,80 +1995,104 @@ 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 +#, fuzzy +msgid "Do not delete this user" +msgstr "Non deler iste gruppo" + #. 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 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2006,98 +2102,108 @@ 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 +#, fuzzy +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 +#, fuzzy +msgctxt "BUTTON" msgid "Use defaults" msgstr "Usar predefinitiones" +#. 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 "Restaurar apparentias predefinite" +#. 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 "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. #. 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 "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:84 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:99 msgid "Add to favorites" msgstr "Adder al favorites" -#: 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 "Le documento \"%s\" non existe." #. TRANS: Title for "Edit application" form. @@ -2187,14 +2293,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "Tu debe esser administrator pro modificar le gruppo." @@ -2255,8 +2363,8 @@ msgstr "Adresse de e-mail actualmente confirmate." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Remover" @@ -2281,15 +2389,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "E-mail entrante" @@ -2300,13 +2408,13 @@ 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:180 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:189 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." @@ -2322,7 +2430,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Nove" @@ -2396,9 +2504,9 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2414,8 +2522,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Nulle confirmation pendente a cancellar." @@ -2426,8 +2534,8 @@ 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:468 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. @@ -2446,24 +2554,24 @@ msgstr "Isto non es tu adresse de e-mail." msgid "The email address was removed." msgstr "Le adresse de e-mail ha essite removite." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Nove adresse de e-mail entrante addite." @@ -2561,7 +2669,7 @@ msgstr "Non expectava iste responsa!" msgid "User being listened to does not exist." msgstr "Le usator sequite non existe." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Tu pote usar le subscription local!" @@ -2691,22 +2799,19 @@ 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." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -2714,23 +2819,28 @@ 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:244 msgid "Upload" msgstr "Incargar" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Taliar" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "Logotypo actualisate." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "Falleva de actualisar le logotypo." @@ -2815,7 +2925,7 @@ msgstr "" "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 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Crear un nove gruppo" @@ -2871,14 +2981,14 @@ msgid "Error removing the block." msgstr "Error de remover le blocada." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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](%%" @@ -2888,23 +2998,23 @@ msgstr "" "Jabber/GTalk. 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 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "Adresse de messageria instantanee" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk address." msgstr "Adresse Jabber/GTalk actualmente confirmate." #. TRANS: Form note in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:124 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2918,7 +3028,7 @@ msgstr "" #. 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 " @@ -2929,65 +3039,65 @@ msgstr "" "in GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "Preferentias de messageria instantanee" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Inviar me notas per Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 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 IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Inviar me responsas per Jabber/GTalk de personas al quales io non es " "subscribite." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:182 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Publicar un MicroID pro mi adresse Jabber/GTalk." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Preferentias confirmate." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 msgid "Cannot normalize that Jabber ID" msgstr "Non pote normalisar iste ID de Jabber" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:325 +#: 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2997,28 +3107,28 @@ msgstr "" "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 +#: 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." +#: 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 +#: 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: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "Le adresse de messageria instantanee ha essite removite." @@ -3220,44 +3330,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 -#, 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 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 -#, 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 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." @@ -3265,87 +3382,94 @@ 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" @@ -3370,11 +3494,11 @@ msgstr "Aperir session" msgid "Login to site" msgstr "Authenticar te a iste sito" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Memorar me" -#: 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 "" "Aperir session automaticamente in le futuro; non pro computatores usate in " @@ -3455,9 +3579,8 @@ 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 -#, fuzzy msgid "You are not allowed to create groups on this site." -msgstr "Tu non ha le permission de deler iste gruppo." +msgstr "Tu non ha le permission de crear gruppos in iste sito." #. TRANS: Form instructions for group create form. #: actions/newgroup.php:117 @@ -3767,7 +3890,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" @@ -3775,7 +3899,8 @@ 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" @@ -3783,7 +3908,7 @@ msgstr "Nove contrasigno" msgid "6 or more characters" msgstr "6 o plus characteres" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Identic al contrasigno hic supra" @@ -3807,11 +3932,12 @@ msgstr "Ancian contrasigno incorrecte" msgid "Error saving user; invalid." msgstr "Error de salveguardar le usator; invalide." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Non pote salveguardar le nove contrasigno." -#: 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 "Contrasigno salveguardate." @@ -4120,12 +4246,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 "" @@ -4133,39 +4259,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" #. 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 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Pagina personal" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:125 +#: actions/profilesettings.php:121 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:471 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4173,44 +4300,44 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 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" msgstr "" @@ -4218,27 +4345,27 @@ msgstr "" "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 +#: 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)" msgstr "" @@ -4247,7 +4374,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 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4255,54 +4382,49 @@ 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 actions/tagother.php:178 #, php-format 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:481 actions/restoreaccount.php:60 -#, fuzzy +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 msgid "Restore account" -msgstr "Crear un conto" +msgstr "Restaurar conto" #: actions/public.php:83 #, php-format @@ -4423,35 +4545,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." @@ -4459,67 +4589,100 @@ 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. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 +#, 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 "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 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 +#, fuzzy +msgid "6 or more characters, and do not forget it!" msgstr "6 o plus characteres, e non oblida lo!" -#: 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 "Identic al contrasigno hic supra" + +#. 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." @@ -4527,23 +4690,34 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Non pote salveguardar le nove contrasigno." + +#. 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 "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." @@ -4559,7 +4733,7 @@ msgstr "Pardono, le codice de invitation es invalide." msgid "Registration successful" msgstr "Registration succedite" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Crear conto" @@ -4587,62 +4761,55 @@ 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." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 o plus characteres" #. 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 "E-mail" -#: 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 "" "Usate solmente pro actualisationes, notificationes e recuperation de " "contrasigno" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Nomine plus longe, preferibilemente tu nomine \"real\"" -#: actions/register.php:463 +#: actions/register.php:462 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:524 +#: actions/register.php:523 #, 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:533 #, 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:537 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:540 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:545 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4652,7 +4819,7 @@ msgstr "" "contrasigno, adresse de e-mail, adresse de messageria instantanee, numero de " "telephono." -#: actions/register.php:589 +#: actions/register.php:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4684,7 +4851,7 @@ msgstr "" "\n" "Gratias pro inscriber te, e nos spera que iste servicio te place." -#: 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.)" @@ -4692,7 +4859,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." @@ -4704,74 +4871,74 @@ 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 +#: 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 +#: 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 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Subscriber" -#: actions/remotesubscribe.php:159 +#: 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Repetite" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Repetite!" @@ -4835,22 +5002,19 @@ 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 -#, fuzzy msgid "Only logged-in users can restore their account." -msgstr "Solmente usatores authenticate pote repeter notas." +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 -#, fuzzy msgid "You may not restore your account." -msgstr "Tu non ha ancora registrate alcun application." +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 -#, fuzzy msgid "No uploaded file." -msgstr "Incargar 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 @@ -4893,9 +5057,8 @@ 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 -#, fuzzy msgid "Not an Atom feed." -msgstr "Non es membro" +msgstr "Non es un syndication Atom." #. TRANS: Success message when a feed has been restored. #: actions/restoreaccount.php:241 @@ -4903,11 +5066,13 @@ 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 "" +msgstr "Le syndication essera restaurate. Per favor attende qualque minutas." #. TRANS: Form instructions for feed restore. #: actions/restoreaccount.php:342 @@ -4915,12 +5080,13 @@ 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 -#, fuzzy msgid "Upload the file" -msgstr "Incargar file" +msgstr "Incargar le file" #: actions/revokerole.php:75 msgid "You cannot revoke user roles on this site." @@ -4998,7 +5164,7 @@ msgstr "Organisation" #. 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 "Description" @@ -5021,8 +5187,9 @@ msgstr "Actiones de application" msgid "Reset key & secret" msgstr "Reinitialisar clave e secreto" +#. TRANS: Title of form for deleting a user. #: actions/showapplication.php:252 lib/deletegroupform.php:121 -#: lib/deleteuserform.php:66 lib/noticelist.php:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Deler" @@ -5150,7 +5317,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Aliases" @@ -5541,70 +5708,70 @@ 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 +#: 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." @@ -5613,32 +5780,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." @@ -5647,39 +5814,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 " @@ -5690,7 +5857,7 @@ msgstr "" "nos a %s." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Nulle codice entrate" @@ -5953,10 +6120,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 "" @@ -6187,12 +6350,12 @@ 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." @@ -6200,7 +6363,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!" @@ -6965,54 +7128,53 @@ msgstr "" #. TRANS: Client exception thrown when using an unknown verb for the activity importer. #: lib/activityimporter.php:81 -#, fuzzy, php-format +#, php-format msgid "Unknown verb: \"%s\"." -msgstr "Lingua \"%s\" incognite." +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 "" +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 -#, fuzzy msgid "Cannot force remote user to subscribe." -msgstr "Specifica le nomine del usator al qual subscriber te." +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 -#, fuzzy msgid "Unknown profile." -msgstr "Profilo incognite: %s" +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 "" +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 "" +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 -#, fuzzy msgid "User is already a member of this group." -msgstr "Tu es ja membro de iste gruppo." +msgstr "Le usator es ja membro de iste gruppo." #. 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 -#, fuzzy, php-format +#, php-format msgid "No content for notice %s." -msgstr "Nulle contento pro nota %d." +msgstr "Nulle contento pro nota %s." #. TRANS: Client exception thrown when there is no source attribute. #: lib/activityutils.php:200 @@ -7165,24 +7327,29 @@ 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." @@ -7301,15 +7468,13 @@ msgid "Revoke" msgstr "Revocar" #: lib/atom10feed.php:113 -#, fuzzy 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 -#, fuzzy msgid "Do not use this method!" -msgstr "Non deler iste gruppo" +msgstr "Non usa iste methodo!" #. TRANS: DT element label in attachment list item. #: lib/attachmentlist.php:294 @@ -7739,24 +7904,24 @@ msgstr "" "tracking - non ancora implementate.\n" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 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:153 +#: lib/common.php:158 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Ir al installator." @@ -7823,11 +7988,21 @@ 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: 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 @@ -7859,17 +8034,16 @@ msgid "FOAF" msgstr "Amico de un amico" #: lib/feedimporter.php:75 -#, fuzzy msgid "Not an atom feed." -msgstr "Non es membro" +msgstr "Non es un syndication Atom." #: lib/feedimporter.php:82 msgid "No author in the feed." -msgstr "" +msgstr "Il non ha un autor in le syndication." #: lib/feedimporter.php:89 msgid "Can't import without a user." -msgstr "" +msgstr "Non pote importar sin usator." #. TRANS: Header for feed links (h2). #: lib/feedlist.php:66 @@ -7905,32 +8079,28 @@ msgstr "Ir" msgid "Grant this user the \"%s\" role" msgstr "Conceder le rolo \"%s\" a iste usator" -#: lib/groupeditform.php:154 -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:155 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:160 msgid "Describe the group or topic" msgstr "Describe le gruppo o topico" -#: 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" +#: 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." 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:174 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:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9138,14 +9308,9 @@ msgstr[1] "circa %d menses retro" 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." @@ -9180,3 +9345,28 @@ msgstr "XML invalide, radice XRD mancante." #, php-format msgid "Getting backup from file '%s'." msgstr "Obtene copia de reserva ex file '%s'." + +#~ msgid "No such group" +#~ msgstr "Gruppo non existe" + +#~ msgid "HTTP method not supported" +#~ msgstr "Methodo HTTP non supportate" + +#~ msgid "Reset" +#~ msgstr "Reinitialisar" + +#~ msgid "" +#~ "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#~ msgstr "1-64 minusculas o numeros, sin punctuation o spatios. Requirite." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 o plus characteres. Requirite." + +#~ msgid "Same as password above. Required." +#~ msgstr "Identic al contrasigno hic supra. Requirite." + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "1-64 minusculas o numeros, sin punctuation o spatios" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s non es un color valide!" diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index 24ee84e74c..1b8b209700 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:55+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:57:10+0000\n" "Language-Team: Icelandic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\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: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -80,6 +80,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -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. @@ -137,8 +140,8 @@ msgstr "Ekkert þannig merki." #: 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,7 +152,7 @@ msgstr "Ekkert þannig merki." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -311,7 +314,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 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." @@ -334,7 +351,8 @@ 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." @@ -345,7 +363,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -367,8 +385,8 @@ msgstr[1] "" #: 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/userdesignsettings.php:201 actions/userdesignsettings.php:211 +#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263 msgid "Unable to save your design settings." msgstr "" @@ -376,14 +394,18 @@ msgstr "" #. TRANS: Client error displayed when a database error occurs updating profile colours. #: actions/apiaccountupdateprofilebackgroundimage.php:191 #: actions/apiaccountupdateprofilecolors.php:139 +#: actions/groupdesignsettings.php:266 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. @@ -394,32 +416,39 @@ msgstr "" 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." @@ -514,7 +543,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:91 msgid "Could not delete favorite." msgstr "Gat ekki eytt uppáhaldi." @@ -567,7 +597,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:136 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ð." @@ -577,7 +607,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:140 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." @@ -589,7 +619,7 @@ msgstr "Ekki tækt stuttnefni." #. 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/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óð." @@ -599,7 +629,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:151 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)." @@ -627,7 +657,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:163 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)." @@ -685,23 +715,27 @@ 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." @@ -714,9 +748,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." @@ -754,7 +790,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" @@ -777,18 +813,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/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -809,18 +849,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: 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." @@ -866,9 +909,9 @@ msgstr "Aðgangur" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Stuttnefni" @@ -876,7 +919,7 @@ 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ð" @@ -887,7 +930,7 @@ msgstr "Lykilorð" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 #, fuzzy msgctxt "BUTTON" @@ -961,6 +1004,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 @@ -981,40 +1025,52 @@ msgstr "Get ekki kveikt á tilkynningum." msgid "Already repeated that notice." msgstr "Get ekki eytt þessu babli." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" @@ -1149,51 +1205,49 @@ 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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, 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:406 +#: actions/apitimelineuser.php:409 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." msgstr "Enginn persónuleg síða með þessu einkenni." -#: 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." @@ -1204,109 +1258,138 @@ msgstr "Aðferð í forritsskilum er í þróun." 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: 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 -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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 "" +msgid "Cannot delete someone else's membership." +msgstr "Gat ekki vistað áskrift." #. 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. @@ -1314,40 +1397,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +msgid "Cannot delete someone else's subscription." msgstr "Gat ekki vistað áskrift." -#: actions/atompubsubscriptionfeed.php:150 -#, fuzzy, php-format -msgid "People %s has subscribed to on %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 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: 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 get a non-existing attachment. @@ -1359,10 +1439,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Ekkert stuttnefni." @@ -1393,30 +1474,36 @@ 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:185 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Forsýn" @@ -1456,7 +1543,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Týndum skráargögnunum okkar" @@ -1476,34 +1564,41 @@ msgstr "Mistókst að uppfæra mynd" msgid "Avatar deleted." msgstr "Mynd hefur verið uppfærð." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 msgctxt "BUTTON" msgid "Backup" msgstr "" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1534,14 +1629,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:178 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" @@ -1554,7 +1648,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:185 #, fuzzy msgctxt "BUTTON" msgid "Yes" @@ -1571,31 +1665,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 @@ -1668,23 +1737,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 @@ -1748,7 +1800,8 @@ msgid "Account deleted." msgstr "Mynd hefur verið uppfærð." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Búa til nýjan hóp" @@ -1770,8 +1823,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Staðfesta" @@ -1846,8 +1900,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." @@ -1900,10 +1956,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1942,108 +1999,143 @@ msgstr "Get ekki eytt þessu babli." 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:521 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:527 #, fuzzy, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2051,102 +2143,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:84 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:99 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. @@ -2246,14 +2346,16 @@ 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 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 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:107 actions/grouplogo.php:112 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." @@ -2316,8 +2418,8 @@ msgstr "Núverandi staðfesta tölvupóstfangið." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Endurheimta" @@ -2342,8 +2444,8 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 actions/imsettings.php:147 +#: actions/smssettings.php:158 #, fuzzy msgctxt "BUTTON" msgid "Add" @@ -2351,7 +2453,7 @@ 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Móttökutölvupóstur" @@ -2362,13 +2464,13 @@ 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:180 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:189 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." @@ -2381,7 +2483,7 @@ 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:199 actions/smssettings.php:185 #, fuzzy msgctxt "BUTTON" msgid "New" @@ -2458,9 +2560,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2476,8 +2579,8 @@ 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 +#: actions/emailsettings.php:454 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ð." @@ -2489,8 +2592,9 @@ 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:468 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. @@ -2509,24 +2613,25 @@ msgstr "Þetta er ekki tölvupóstfangið þitt." msgid "The email address was removed." msgstr "Móttökutölvupóstfang fjarlægt." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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/smssettings.php:564 actions/smssettings.php:587 +#, 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:544 actions/smssettings.php:567 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:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Nýju móttökutölvupóstfangi bætt við." @@ -2623,7 +2728,7 @@ msgstr "Bjóst ekki við þessu svari!" 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 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Þú getur notað staðbundna áskrift!" @@ -2763,48 +2868,49 @@ 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 "Gat ekki uppfært hóp." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, 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:244 msgid "Upload" msgstr "Hlaða upp" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Skera af" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 #, 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:413 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:416 msgid "Failed updating logo." msgstr "Tókst ekki að uppfæra einkennismynd" @@ -2884,7 +2990,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Búa til nýjan hóp" @@ -2938,14 +3044,14 @@ msgid "Error removing the block." msgstr "Vill kom upp við að aflétta notendalokun." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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 +#: actions/imsettings.php:71 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2956,24 +3062,24 @@ msgstr "" "neðan og stilltu notkunina." #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "Tölvupóstföng" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2988,7 +3094,7 @@ msgstr "" #. 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 " @@ -2999,64 +3105,64 @@ msgstr "" "á GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "Stillingar vistaðar." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Sendur mér babl í gegnum Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Senda inn babl þegar Jabber/GTalk staðan breytist." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 msgid "Send me replies through Jabber/GTalk 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk 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 +#: 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 +#: 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 +#: actions/imsettings.php:312 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 +#: actions/imsettings.php:317 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3066,29 +3172,29 @@ msgstr "" "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 +#: 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 +#: 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 +#: 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: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "Móttökutölvupóstfang fjarlægt." @@ -3294,132 +3400,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 "" @@ -3444,11 +3564,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 " @@ -3853,7 +3973,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" @@ -3861,7 +3982,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ð" @@ -3869,7 +3991,7 @@ msgstr "Nýtt lykilorð" msgid "6 or more characters" msgstr "6 eða fleiri tákn" -#: 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" @@ -3893,11 +4015,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ð." @@ -4224,12 +4347,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 "" @@ -4237,33 +4360,34 @@ 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 +#: 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:152 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 "" @@ -4273,7 +4397,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" @@ -4281,45 +4405,45 @@ 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 +#: actions/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 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 "" @@ -4327,27 +4451,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 "" @@ -4357,7 +4481,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)." @@ -4365,53 +4489,50 @@ 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Búa til nýjan hóp" @@ -4522,37 +4643,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 " @@ -4561,69 +4690,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." @@ -4631,24 +4793,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)" @@ -4665,7 +4838,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 lib/logingroupnav.php:85 msgid "Register" msgstr "Nýskrá" @@ -4691,70 +4864,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 " @@ -4787,7 +4952,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.)" @@ -4795,7 +4960,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." @@ -4807,83 +4972,83 @@ 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 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 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:692 +#: 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 "" @@ -5110,7 +5275,7 @@ 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" @@ -5133,8 +5298,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:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Eyða" @@ -5253,7 +5419,7 @@ 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 "" @@ -5631,72 +5797,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." @@ -5705,33 +5871,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 " @@ -5742,40 +5908,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 " @@ -5786,7 +5952,7 @@ msgstr "" "láttu okkur vita." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Enginn lykill sleginn inn" @@ -6042,10 +6208,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 "" @@ -6290,19 +6452,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 "" @@ -7287,24 +7449,28 @@ 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 "" @@ -7833,26 +7999,26 @@ msgid "" msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 #, fuzzy msgid "Go to the installer." msgstr "Skrá þig inn á síðuna" @@ -7923,12 +8089,23 @@ 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 @@ -8007,34 +8184,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 " @@ -9160,14 +9333,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óð." @@ -9205,3 +9373,31 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "Enginn þannig hópur." + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "Aðferð í forritsskilum fannst ekki!" + +#~ msgid "Reset" +#~ msgstr "Endurstilla" + +#~ 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." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 eða fleiri tákn. Nauðsynlegt" + +#~ msgid "Same as password above. Required." +#~ msgstr "Sama og lykilorðið hér fyrir ofan. Nauðsynlegt." + +#~ 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" + +#, fuzzy +#~ msgid "%s is not a valid color!" +#~ msgstr "Heimasíða er ekki gild vefslóð." diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 90f53271fd..510b1d11e7 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:55+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:57:13+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -78,6 +78,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Salva" @@ -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. @@ -133,8 +136,8 @@ msgstr "Pagina inesistente." #: 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,7 +148,7 @@ msgstr "Pagina inesistente." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -313,7 +316,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "Impossibile aggiornare l'utente." @@ -335,7 +352,8 @@ 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." @@ -345,7 +363,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, fuzzy, php-format @@ -371,8 +389,8 @@ msgstr[1] "" #: 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/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." @@ -380,13 +398,17 @@ 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/groupdesignsettings.php:266 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. @@ -397,31 +419,38 @@ msgstr "" 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." @@ -514,7 +543,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:91 msgid "Could not delete favorite." msgstr "Impossibile eliminare un preferito." @@ -561,7 +591,7 @@ msgstr "Impossibile trovare l'utente destinazione." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Soprannome già in uso. Prova con un altro." @@ -571,7 +601,7 @@ msgstr "Soprannome già in uso. Prova con un altro." #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Non è un soprannome valido." @@ -583,7 +613,7 @@ msgstr "Non è un soprannome valido." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "L'indirizzo della pagina web non è valido." @@ -593,7 +623,7 @@ msgstr "L'indirizzo della pagina web non è valido." #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -621,7 +651,7 @@ msgstr[1] "La descrizione è troppo lunga (max %d caratteri)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -679,22 +709,26 @@ 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." @@ -706,9 +740,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." @@ -745,7 +781,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." @@ -768,18 +804,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -800,18 +840,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Invio del modulo inaspettato." @@ -863,9 +906,9 @@ msgstr "Account" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Soprannome" @@ -873,7 +916,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Password" @@ -884,7 +927,7 @@ msgstr "Password" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -958,6 +1001,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 @@ -977,40 +1021,52 @@ msgstr "Non puoi ripetere un tuo messaggio." msgid "Already repeated that notice." msgstr "Hai già ripetuto quel messaggio." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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" @@ -1146,51 +1202,49 @@ 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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, 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:406 +#: actions/apitimelineuser.php:409 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." msgstr "Un messaggio con quel ID non esiste." -#: 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." @@ -1201,108 +1255,137 @@ msgstr "Metodo delle API in lavorazione." 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 +msgid "No such profile." msgstr "Nessun profilo." -#: actions/atompubfavoritefeed.php:145 -#, php-format -msgid "Notices %s has favorited to on %s" -msgstr "" - -#: 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 -msgid "No such group" -msgstr "Nessun gruppo" +#. 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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "Metodo delle API non trovato." - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "" +msgid "Cannot delete someone else's membership." +msgstr "Impossibile salvare l'abbonamento." #. 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. @@ -1310,40 +1393,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +msgid "Cannot delete someone else's subscription." msgstr "Impossibile salvare l'abbonamento." -#: actions/atompubsubscriptionfeed.php:150 -#, fuzzy, php-format -msgid "People %s has subscribed to on %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 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: 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 get a non-existing attachment. @@ -1354,10 +1434,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Nessun soprannome." @@ -1389,30 +1470,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Anteprima" @@ -1450,7 +1537,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Perso il nostro file di dati." @@ -1469,35 +1557,42 @@ msgstr "Aggiornamento dell'immagine non riuscito." msgid "Avatar deleted." msgstr "Immagine eliminata." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "Sfondo" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1531,14 +1626,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Non bloccare questo utente" @@ -1550,7 +1644,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Sì" @@ -1566,31 +1660,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 @@ -1661,23 +1730,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 @@ -1739,7 +1791,8 @@ msgid "Account deleted." msgstr "Immagine eliminata." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Crea un account" @@ -1761,8 +1814,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Conferma" @@ -1836,8 +1890,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." @@ -1892,10 +1948,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1935,19 +1992,30 @@ msgstr "Non eliminare il messaggio" 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." @@ -1955,80 +2023,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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2038,98 +2130,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 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 "Ripristina i valori predefiniti" +#. 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 "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 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 "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:84 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:99 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. @@ -2221,14 +2323,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "Devi essere amministratore per modificare il gruppo." @@ -2289,8 +2393,8 @@ msgstr "Indirizzo email attualmente confermato." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Rimuovi" @@ -2316,15 +2420,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Email di ricezione" @@ -2335,13 +2439,13 @@ 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:180 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:189 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 " @@ -2356,7 +2460,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Nuovo" @@ -2431,9 +2535,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2449,8 +2554,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Nessuna conferma da annullare." @@ -2461,8 +2566,9 @@ 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:468 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. @@ -2481,24 +2587,25 @@ msgstr "Quello non è il tuo indirizzo email." msgid "The email address was removed." msgstr "L'indirizzo email è stato rimosso." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Nuovo indirizzo email di ricezione aggiunto." @@ -2597,7 +2704,7 @@ msgstr "Risposta non attesa!" msgid "User being listened to does not exist." msgstr "L'utente che intendi seguire non esiste." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Puoi usare l'abbonamento locale!" @@ -2727,22 +2834,19 @@ 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." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -2750,23 +2854,28 @@ 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:244 msgid "Upload" msgstr "Carica" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Ritaglia" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "Logo aggiornato." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "Aggiornamento del logo non riuscito." @@ -2851,7 +2960,7 @@ 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 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Crea un nuovo gruppo" @@ -2907,14 +3016,14 @@ msgid "Error removing the block." msgstr "Errore nel rimuovere il blocco." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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 +#: actions/imsettings.php:71 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2925,23 +3034,23 @@ msgstr "" "impostazioni qui di seguito." #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "Indirizzo di messaggistica istantanea" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2956,7 +3065,7 @@ msgstr "" #. 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 " @@ -2967,63 +3076,63 @@ msgstr "" "di messaggistica o su GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "Preferenze messaggistica" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Inviami i messaggi via Jabber/GTalk" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Pubblica un messaggio quando il mio stato Jabber/GTalk cambia" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 msgid "Send me replies through Jabber/GTalk 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk 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 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Preferenze salvate." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 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 +#: actions/imsettings.php:317 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3033,28 +3142,29 @@ msgstr "" "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 +#: 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." +#: 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 +#: 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: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "L'indirizzo di messaggistica è stato rimosso." @@ -3260,44 +3370,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." @@ -3305,88 +3422,95 @@ 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" @@ -3410,11 +3534,11 @@ msgstr "Accedi" msgid "Login to site" msgstr "Accedi al sito" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Ricordami" -#: 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 "Accedi automaticamente in futuro; non per computer condivisi!" @@ -3805,7 +3929,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" @@ -3813,7 +3938,8 @@ 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" @@ -3821,7 +3947,7 @@ msgstr "Nuova password" msgid "6 or more characters" msgstr "6 o più caratteri" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Stessa password di sopra" @@ -3845,11 +3971,12 @@ msgstr "Vecchia password non corretta" msgid "Error saving user; invalid." msgstr "Errore nel salvare l'utente; non valido." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Impossibile salvare la nuova password." -#: 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 "Password salvata." @@ -4176,12 +4303,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 "" @@ -4189,12 +4316,13 @@ 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:433 +#: lib/groupeditform.php:146 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" @@ -4202,21 +4330,21 @@ 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Pagina web" #. 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 "URL della tua pagina web, blog o profilo su un altro sito" @@ -4224,7 +4352,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:471 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4232,71 +4360,71 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "Etichette" #. 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 "" "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 +#: actions/profilesettings.php:171 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 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -4306,7 +4434,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)." @@ -4314,52 +4442,50 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Crea un account" @@ -4480,35 +4606,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." @@ -4516,68 +4650,102 @@ 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. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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: 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 "Stessa password di sopra" + +#. 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." @@ -4585,24 +4753,35 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Impossibile salvare la nuova password." + +#. 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 "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." @@ -4618,7 +4797,7 @@ msgstr "Codice di invito non valido." msgid "Registration successful" msgstr "Registrazione riuscita" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrati" @@ -4647,61 +4826,53 @@ msgstr "" "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" +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 o più caratteri" #. 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 "Email" -#: 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 "Usata solo per aggiornamenti, annunci e recupero password" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Nome completo, preferibilmente il tuo \"vero\" nome" -#: actions/register.php:463 +#: actions/register.php:462 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:524 +#: actions/register.php:523 #, 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:533 #, 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:537 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:540 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:545 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4711,7 +4882,7 @@ msgstr "" "dati personali: password, indirizzo email, indirizzo messaggistica " "istantanea e numero di telefono." -#: actions/register.php:589 +#: actions/register.php:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4745,7 +4916,7 @@ msgstr "" "Grazie per la tua iscrizione e speriamo tu possa divertiti usando questo " "servizio." -#: 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.)" @@ -4753,7 +4924,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." @@ -4765,74 +4936,77 @@ 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 +#: actions/remotesubscribe.php:129 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 +#: actions/remotesubscribe.php:133 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 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Abbonati" -#: actions/remotesubscribe.php:159 +#: actions/remotesubscribe.php:158 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Ripetuti" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Ripetuti!" @@ -5057,7 +5231,7 @@ msgstr "Organizzazione" #. 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 "Descrizione" @@ -5080,8 +5254,9 @@ msgstr "Azioni applicazione" msgid "Reset key & secret" msgstr "Reimposta chiave e segreto" +#. TRANS: Title of form for deleting a user. #: actions/showapplication.php:252 lib/deletegroupform.php:121 -#: lib/deleteuserform.php:66 lib/noticelist.php:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Elimina" @@ -5207,7 +5382,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Alias" @@ -5600,70 +5775,70 @@ 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 +#: actions/smssettings.php:152 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." @@ -5672,32 +5847,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." @@ -5707,39 +5882,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 " @@ -5749,7 +5924,7 @@ 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 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Nessun codice inserito" @@ -6013,10 +6188,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 "" @@ -6251,12 +6422,12 @@ 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." @@ -6264,7 +6435,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!" @@ -7236,23 +7407,27 @@ 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." @@ -7813,20 +7988,20 @@ msgstr "" "tracking - non ancora implementato\n" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 msgid "You may wish to run the installer to fix this." msgstr "" "Potrebbe essere necessario lanciare il programma d'installazione per " @@ -7834,7 +8009,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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Vai al programma d'installazione." @@ -7906,12 +8081,21 @@ 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: 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 @@ -7989,34 +8173,29 @@ msgstr "Vai" msgid "Grant this user the \"%s\" role" msgstr "Concedi a questo utente il ruolo \"%s\"" -#: lib/groupeditform.php:154 -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:155 #, 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:160 msgid "Describe the group or topic" msgstr "Descrivi il gruppo o l'argomento" -#: 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] "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:174 #, 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:182 #, fuzzy, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9228,14 +9407,9 @@ msgstr[1] "circa %d mesi fa" 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." @@ -9271,3 +9445,31 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "Nessun gruppo" + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "Metodo delle API non trovato." + +#~ msgid "Reset" +#~ msgstr "Reimposta" + +#~ msgid "" +#~ "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#~ msgstr "" +#~ "1-64 lettere minuscole o numeri, niente punteggiatura o spazi; richiesto" + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 o più caratteri; richiesta" + +#~ msgid "Same as password above. Required." +#~ msgstr "Stessa password di sopra; richiesta" + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "" +#~ "1-64 lettere minuscole o numeri, senza spazi o simboli di punteggiatura" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s non è un colore valido." diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index 37e3467bea..4e13fa0e9d 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:57+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:57:16+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\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: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -80,6 +80,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" 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. @@ -135,8 +138,8 @@ msgstr "そのようなページはありません。" #: 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 @@ -147,7 +150,7 @@ msgstr "そのようなページはありません。" #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -316,7 +319,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "ユーザを更新できませんでした。" @@ -338,7 +355,8 @@ 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,7 +366,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, fuzzy, php-format @@ -371,8 +389,8 @@ msgstr[0] "" #: 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/userdesignsettings.php:201 actions/userdesignsettings.php:211 +#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263 msgid "Unable to save your design settings." msgstr "あなたのデザイン設定を保存できません。" @@ -380,13 +398,17 @@ msgstr "あなたのデザイン設定を保存できません。" #. TRANS: Client error displayed when a database error occurs updating profile colours. #: actions/apiaccountupdateprofilebackgroundimage.php:191 #: actions/apiaccountupdateprofilecolors.php:139 +#: actions/groupdesignsettings.php:266 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. @@ -397,31 +419,38 @@ msgstr "" 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 "ユーザのブロックに失敗しました。" @@ -512,7 +541,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:91 msgid "Could not delete favorite." msgstr "お気に入りを取り消すことができません。" @@ -560,7 +590,7 @@ msgstr "ターゲットユーザーを見つけられません。" #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "そのニックネームは既に使用されています。他のものを試してみて下さい。" @@ -570,7 +600,7 @@ msgstr "そのニックネームは既に使用されています。他のもの #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "有効なニックネームではありません。" @@ -582,7 +612,7 @@ msgstr "有効なニックネームではありません。" #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "ホームページのURLが不適切です。" @@ -592,7 +622,7 @@ msgstr "ホームページの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:151 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)." @@ -619,7 +649,7 @@ msgstr[0] "記述が長すぎます。(最長%d字)" #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -676,22 +706,26 @@ 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 +737,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." @@ -743,7 +779,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 "不正なログイントークンが指定されています。" @@ -766,18 +802,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -797,18 +837,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "予期せぬフォーム送信です。" @@ -854,9 +897,9 @@ msgstr "アカウント" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "ニックネーム" @@ -864,7 +907,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "パスワード" @@ -875,7 +918,7 @@ msgstr "パスワード" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 #, fuzzy msgctxt "BUTTON" @@ -950,6 +993,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 @@ -969,40 +1013,52 @@ msgstr "あなたのつぶやきを繰り返せません。" 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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 "つぶやき削除" @@ -1134,51 +1190,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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, fuzzy, php-format msgid "No content for notice %d." msgstr "つぶやきの内容を探す" #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." msgstr "その ID によるつぶやきは存在していません" -#: 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." @@ -1190,109 +1244,138 @@ msgstr "API メソッドが工事中です。" 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. +#: 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 "そのようなファイルはありません。" +#. 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 -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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "API メソッドが見つかりません。" - -#: 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. @@ -1300,40 +1383,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +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: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 #, fuzzy, php-format -msgid "Unknown profile %s" +msgid "Unknown profile %s." msgstr "不明なファイルタイプ" #. TRANS: Client error displayed trying to get a non-existing attachment. @@ -1344,10 +1424,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "ニックネームがありません。" @@ -1378,30 +1459,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "プレビュー" @@ -1440,7 +1527,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "ファイルデータを紛失しました。" @@ -1459,35 +1547,42 @@ msgstr "アバターの更新に失敗しました。" msgid "Avatar deleted." msgstr "アバターが削除されました。" -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "バックグラウンド" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1522,14 +1617,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: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:158 actions/deleteuser.php:156 +#: actions/block.php:158 msgid "Do not block this user" msgstr "このユーザをアンブロックする" @@ -1541,7 +1635,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "はい" @@ -1557,31 +1651,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 @@ -1652,23 +1721,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 @@ -1730,7 +1782,8 @@ 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 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "新しいグループを作成" @@ -1752,8 +1805,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "パスワード確認" @@ -1828,8 +1882,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 "ニックネームがありません。" @@ -1885,10 +1941,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1928,19 +1985,30 @@ msgstr "このつぶやきを削除できません。" 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." @@ -1948,81 +2016,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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2032,98 +2124,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 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 "保存" - +#. 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:84 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:99 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. @@ -2215,14 +2317,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "グループを編集するには管理者である必要があります。" @@ -2283,8 +2387,8 @@ msgstr "現在確認されているメールアドレス。" #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "回復" @@ -2309,8 +2413,8 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 actions/imsettings.php:147 +#: actions/smssettings.php:158 #, fuzzy msgctxt "BUTTON" msgid "Add" @@ -2318,7 +2422,7 @@ 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "入ってくるメール" @@ -2329,13 +2433,13 @@ 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:180 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:189 actions/smssettings.php:182 msgid "Make a new email address for posting to; cancels the old one." msgstr "投稿のための新しいEメールアドレスを作ります; 古い方を取り消します。" @@ -2348,7 +2452,7 @@ 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:199 actions/smssettings.php:185 #, fuzzy msgctxt "BUTTON" msgid "New" @@ -2427,9 +2531,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2445,8 +2550,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "承認待ちのものはありません。" @@ -2458,8 +2563,9 @@ 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:468 actions/smssettings.php:413 +#, fuzzy +msgid "Could not delete email confirmation." msgstr "メール承認を削除できません" #. TRANS: Message given after successfully canceling e-mail address confirmation. @@ -2478,24 +2584,25 @@ msgstr "これはあなたのメールアドレスではありません。" msgid "The email address was removed." msgstr "入ってくるメールアドレスは削除されました。" -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "新しい入ってくるメールアドレスが追加されました。" @@ -2594,7 +2701,7 @@ msgstr "想定外のレスポンスです!" msgid "User being listened to does not exist." msgstr "存在しないように聴かれているユーザ。" -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "ローカルサブスクリプションを使用可能です!" @@ -2728,22 +2835,19 @@ 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 "あなたのデザインを更新できません。" - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -2751,23 +2855,28 @@ msgstr "" "あなたのグループ用にロゴイメージをアップロードできます。最大ファイルサイズは " "%s。" -#: actions/grouplogo.php:236 +#. TRANS: Submit button for uploading a group logo. +#: actions/grouplogo.php:244 msgid "Upload" msgstr "アップロード" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "切り取り" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "ロゴが更新されました。" -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "ロゴの更新に失敗しました。" @@ -2852,7 +2961,7 @@ msgstr "" "うか[探してみる](%%%%action.groupsearch%%%%)か、あなた自身で[始めてください!]" "(%%%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "新しいグループを作成" @@ -2908,14 +3017,14 @@ msgid "Error removing the block." msgstr "ブロックの削除エラー" #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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](%%" @@ -2925,23 +3034,23 @@ msgstr "" "す。下のアドレスを設定して下さい。" #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "IMアドレス" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2955,7 +3064,7 @@ msgstr "" #. 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 " @@ -2965,65 +3074,65 @@ msgstr "" "IMクライアントやGTalkに追加して下さい。" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "設定が保存されました。" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Jabber/GTalk で私に通知を送って下さい。" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Jabber/GTalkのステータスが変更された時に通知を送る。" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "私のJabber/GTalkアドレスのためにMicroIDを発行してください。" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "設定が保存されました。" #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 msgid "Cannot normalize that Jabber ID" msgstr "その Jabbar ID を正規化できません" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:325 +#: 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3033,29 +3142,29 @@ msgstr "" "ようにするには%sを承認してください。" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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 +#: 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 +#: actions/imsettings.php:396 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 +#: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "入ってくるメールアドレスは削除されました。" @@ -3257,131 +3366,145 @@ 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 "" @@ -3405,11 +3528,11 @@ msgstr "ログイン" msgid "Login to site" msgstr "サイトへログイン" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "ログイン状態を保持" -#: 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 "以降は自動的にログインする。共用コンピューターでは避けましょう!" @@ -3801,7 +3924,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 "パスワード変更" @@ -3809,7 +3933,8 @@ 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 "新しいパスワード" @@ -3817,7 +3942,7 @@ msgstr "新しいパスワード" msgid "6 or more characters" msgstr "6文字以上" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "上と同じパスワード" @@ -3841,11 +3966,12 @@ msgstr "古いパスワードが間違っています。" msgid "Error saving user; invalid." msgstr "ユーザ保存エラー; 不正なユーザ" -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "新しいパスワードを保存できません。" -#: 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 "パスワードが保存されました。" @@ -4171,12 +4297,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 "" @@ -4184,33 +4310,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:433 +#: lib/groupeditform.php:146 #, 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "ホームページ" #. 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 "ホームページ、ブログ、プロファイル、その他サイトの URL" @@ -4218,51 +4345,51 @@ 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" 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 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" msgstr "" @@ -4270,27 +4397,27 @@ 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 +#: 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 "自分をフォローしている者を自動的にフォローする (BOTに最適)" @@ -4298,59 +4425,57 @@ msgstr "自分をフォローしている者を自動的にフォローする (B #. 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)." 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "新しいグループを作成" @@ -4476,35 +4601,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." @@ -4512,90 +4645,135 @@ msgstr "" "あなたのパスワードを忘れるか紛失したなら、あなたはアカウントに格納したメール" "アドレスに新しいものを送らせることができます。" -#: actions/recoverpassword.php:158 -msgid "You have been identified. Enter a new password below. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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: 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 "上と同じパスワード" + +#. 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "新しいパスワードを保存できません。" + +#. 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 "ユーザ設定エラー" -#: 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 "新しいパスワードの保存に成功しました。ログインしています。" @@ -4611,7 +4789,7 @@ msgstr "すみません、不正な招待コード。" msgid "Registration successful" msgstr "登録成功" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "登録" @@ -4640,67 +4818,59 @@ 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 "上のパスワードと同じです。 必須。" +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6文字以上" #. 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 "メール" -#: 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 "更新、アナウンス、パスワードリカバリーでのみ使用されます。" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "長い名前" -#: actions/register.php:463 +#: actions/register.php:462 msgid "URL of your homepage, blog, or profile on another site" msgstr "ホームページ、ブログ、プロファイル、その他サイトの URL" -#: 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 #, 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:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4733,7 +4903,7 @@ msgstr "" "参加してくださってありがとうございます。私たちはあなたがこのサービスを楽しん" "で使ってくれることを願っています。" -#: 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.)" @@ -4741,7 +4911,7 @@ msgstr "" "(メールアドレスを承認する方法を読んで、すぐにメールによるメッセージを受け取る" "ようにしてください)" -#: actions/remotesubscribe.php:98 +#: actions/remotesubscribe.php:97 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -4753,75 +4923,78 @@ 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 +#: 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 +#: actions/remotesubscribe.php:133 msgid "URL of your profile on another compatible microblogging service" msgstr "プロファイルサービスまたはマイクロブロギングサービスのURL" -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "フォロー" -#: actions/remotesubscribe.php:159 +#: 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." +#: 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "繰り返された" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "繰り返されました!" @@ -5050,7 +5223,7 @@ msgstr "組織" #. 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 "概要" @@ -5073,8 +5246,9 @@ msgstr "アプリケーションアクション" msgid "Reset key & secret" msgstr "key と secret のリセット" +#. TRANS: Title of form for deleting a user. #: actions/showapplication.php:252 lib/deletegroupform.php:121 -#: lib/deleteuserform.php:66 lib/noticelist.php:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "削除" @@ -5202,7 +5376,7 @@ msgid "Note" msgstr "ノート" #. 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 "別名" @@ -5602,73 +5776,73 @@ 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 +#: 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." @@ -5677,33 +5851,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." @@ -5712,40 +5886,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 " @@ -5756,7 +5930,7 @@ msgstr "" "ください。" #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "コードが入力されていません" @@ -6021,10 +6195,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 "このフォームを使用して、フォロー者かフォローにタグを加えてください。" @@ -6257,12 +6427,12 @@ 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." @@ -6270,7 +6440,7 @@ msgstr "" "あなたのプロフィールがバックグラウンド画像とあなたの選択の色のパレットで見る" "方法をカスタマイズしてください。" -#: actions/userdesignsettings.php:282 +#: actions/userdesignsettings.php:272 #, fuzzy msgid "Enjoy your hotdog!" msgstr "あなたのhotdogを楽しんでください!" @@ -7234,23 +7404,27 @@ 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 "" @@ -7769,20 +7943,20 @@ msgid "" msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 msgid "You may wish to run the installer to fix this." msgstr "" "あなたは、これを修理するためにインストーラを動かしたがっているかもしれませ" @@ -7790,7 +7964,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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "インストーラへ。" @@ -7862,12 +8036,21 @@ 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: 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 @@ -7945,32 +8128,28 @@ 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 +#: lib/groupeditform.php:155 #, fuzzy msgid "URL of the homepage or blog of the group or topic." msgstr "グループやトピックのホームページやブログの URL" -#: lib/groupeditform.php:168 +#: lib/groupeditform.php:160 msgid "Describe the group or topic" msgstr "グループやトピックを記述" -#: 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] "グループやトピックを %d 字以内記述" -#: lib/groupeditform.php:182 +#: lib/groupeditform.php:174 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." msgstr "グループの場所, 例えば \"都市, 都道府県 (または 地域), 国\"" -#: lib/groupeditform.php:190 +#: lib/groupeditform.php:182 #, fuzzy, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9143,14 +9322,9 @@ msgstr[0] "" 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進数を使ってください。" @@ -9185,3 +9359,31 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "そのようなグループはありません。" + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "API メソッドが見つかりません。" + +#~ msgid "Reset" +#~ msgstr "リセット" + +#~ msgid "" +#~ "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#~ msgstr "" +#~ "1-64文字の、小文字アルファベットか数字で、スペースや句読点は除く。必須で" +#~ "す。" + +#~ msgid "6 or more characters. Required." +#~ msgstr "6文字以上。必須です。" + +#~ msgid "Same as password above. Required." +#~ msgstr "上のパスワードと同じです。 必須。" + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "1-64文字の、小文字アルファベットか数字で、スペースや句読点は除く" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%sは有効な色ではありません!" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index ed7d20767d..efccf498bc 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:58+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:57:20+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -74,6 +74,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" 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. @@ -129,8 +132,8 @@ msgstr "ასეთი გვერდი არ არსებობს." #: 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,7 +144,7 @@ msgstr "ასეთი გვერდი არ არსებობს." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -309,7 +312,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "მომხმარებლის განახლება ვერ მოხერხდა." @@ -331,7 +348,8 @@ 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 "პროფილის შენახვა ვერ მოხერხდა." @@ -341,7 +359,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, fuzzy, php-format @@ -364,8 +382,8 @@ msgstr[0] "" #: 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/userdesignsettings.php:201 actions/userdesignsettings.php:211 +#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263 msgid "Unable to save your design settings." msgstr "სამწუხაროდ თქვენი დიზაინის პარამეტრების შენახვა ვერ მოხერხდა." @@ -373,13 +391,17 @@ msgstr "სამწუხაროდ თქვენი დიზაინი #. TRANS: Client error displayed when a database error occurs updating profile colours. #: actions/apiaccountupdateprofilebackgroundimage.php:191 #: actions/apiaccountupdateprofilecolors.php:139 +#: actions/groupdesignsettings.php:266 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. @@ -390,31 +412,38 @@ msgstr "" 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 "მომხმარებლის დაბლოკვა ვერ მოხერხდა." @@ -504,7 +533,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:91 msgid "Could not delete favorite." msgstr "ფავორიტის წაშლა ვერ მოხერხდა." @@ -551,7 +581,7 @@ msgstr "სასურველი მომხმარებელი ვე #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "მეტსახელი უკვე გამოყენებულია. სცადე სხვა." @@ -561,7 +591,7 @@ msgstr "მეტსახელი უკვე გამოყენებუ #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "მეტსახელი არასწორია." @@ -573,7 +603,7 @@ msgstr "მეტსახელი არასწორია." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "სასტარტო გვერდი არასწორი URL-ია." @@ -583,7 +613,7 @@ msgstr "სასტარტო გვერდი არასწორი 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:151 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)." @@ -610,7 +640,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:163 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)." @@ -667,22 +697,26 @@ 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-ში გაერთიანება." @@ -694,9 +728,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." @@ -733,7 +769,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 "" @@ -755,18 +791,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -786,18 +826,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "" @@ -843,9 +886,9 @@ msgstr "ანგარიში" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "მეტსახელი" @@ -853,7 +896,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "პაროლი" @@ -864,7 +907,7 @@ msgstr "პაროლი" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -938,6 +981,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 @@ -957,40 +1001,52 @@ msgstr "საკუთარი შეტყობინების გამ 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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 "შეტყობინების წაშლა" @@ -1122,51 +1178,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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, fuzzy, php-format msgid "No content for notice %d." msgstr "მოძებნე შეტყობინებებში" #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." msgstr "შეტყობინებები ამ ID-თ არ არსებობს." -#: 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." @@ -1178,107 +1232,136 @@ msgstr "API მეთოდი დამუშავების პროცე 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 +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 +#. 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 "ტელეფონის ნომერი არ არის." -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "" +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 +#, fuzzy +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. @@ -1286,40 +1369,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +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: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 #, fuzzy, php-format -msgid "Unknown profile %s" +msgid "Unknown profile %s." msgstr "ფაილის ტიპი უცნობია" #. TRANS: Client error displayed trying to get a non-existing attachment. @@ -1330,10 +1410,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "მეტსახელი უცნობია." @@ -1365,30 +1446,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "წინასწარი გადახედვა" @@ -1426,7 +1513,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "" @@ -1445,35 +1533,42 @@ msgstr "ავატარის განახლება ვერ მოხ msgid "Avatar deleted." msgstr "ავატარი წაიშალა." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "ფონი" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1504,14 +1599,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: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:158 actions/deleteuser.php:156 +#: actions/block.php:158 msgid "Do not block this user" msgstr "არ დაბლოკო ეს მომხმარებელი" @@ -1523,7 +1617,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "დიახ" @@ -1539,31 +1633,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 @@ -1634,23 +1703,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 @@ -1712,7 +1764,8 @@ 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 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "გახსენი ანგარიში" @@ -1734,8 +1787,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "ვადასტურებ" @@ -1809,8 +1863,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 უცნობია." @@ -1865,10 +1921,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1906,19 +1963,30 @@ msgstr "არ წაშალო ეს შეტყობინება" 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." @@ -1926,81 +1994,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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2010,98 +2102,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 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 "შენახვა" - +#. 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:84 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:99 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. @@ -2193,14 +2295,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "ჯგუფის რედაქტირებისათვის საჭიროა ადმინის უფლებები." @@ -2261,8 +2365,8 @@ msgstr "მიმდინარე დადასტურებული ე #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "წაშლა" @@ -2287,15 +2391,15 @@ 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 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "შემომავალი ელ. ფოსტა" @@ -2306,13 +2410,13 @@ 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:180 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:189 actions/smssettings.php:182 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -2325,7 +2429,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "ახალი" @@ -2401,9 +2505,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2419,8 +2524,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "გასაუქმებელიარაფერია. არ არის მომლოდინე დასტური." @@ -2431,8 +2536,9 @@ 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:468 actions/smssettings.php:413 +#, fuzzy +msgid "Could not delete email confirmation." msgstr "ელ. ფოსტის დადასტურების წაშლა ვერ მოხერხდა." #. TRANS: Message given after successfully canceling e-mail address confirmation. @@ -2451,24 +2557,25 @@ msgstr "ეს არ არის თქვენი ელ. ფოსტის msgid "The email address was removed." msgstr "ელ. ფოსტის მისამართი მოშორებულია." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "დამატებულია ახალი შემომავალი ელ. ფოსტა." @@ -2566,7 +2673,7 @@ msgstr "ეს უკუქმედება არ არის მოსა msgid "User being listened to does not exist." msgstr "მისადევნებელი მომხმარებელი არ არსებობს." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "შეგიძლიათ გამოიყენოთ ადგილობრივი გამოწერა!" @@ -2696,45 +2803,47 @@ 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 "დიზაინის განახლება ვერ მოხერხდა." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, 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:244 msgid "Upload" msgstr "ატვირთვა" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "მოჭრა" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "ლოგო განახლდა." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "ლოგოს განახლება ვერ მოხერხდა." @@ -2819,7 +2928,7 @@ msgstr "" "ხედავთ მოსაწონ ჯგუფს? სცადეთ [ძიება](%%%%action.groupsearch%%%%) ან " "[შექმენით საკუთარი!](%%%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "შექმენი ახალი ჯგუფი" @@ -2876,14 +2985,14 @@ msgid "Error removing the block." msgstr "შეცდომა ბლოკის მოხსნისას." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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](%%" @@ -2893,23 +3002,23 @@ msgstr "" "doc.im%%). მომართეთ თქვენი მისამართი და პარამეტრები ქვევით." #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "IM მისამართი" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2923,7 +3032,7 @@ msgstr "" #. 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 " @@ -2933,64 +3042,64 @@ msgstr "" "დარწმუნდით, რომ დაიმატეთ %s მეგობრების სიაში თქვენს IM კლიენტში ან GTalk-ში." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "IM პარამეტრები" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "გამომიგზავნე შეტყობინებები Jabber/GTalk-ის მეშვეობით." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "დაპოსტე შეტყობინება, როდესაც ჩემი Jabber/GTalk სტატუსი შეიცვლება." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "გამოაქვეყნე MicroID ჩემი Jabber/GTalk მისამართისთვის." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "პარამეტრები შენახულია." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3000,28 +3109,29 @@ msgstr "" "s-ს გამოგიგზავნოთ შეტყობინებები." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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." +#: 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 +#: actions/imsettings.php:396 msgid "IM confirmation cancelled." msgstr "IM დასტური გაუქმდა." #. TRANS: Message given trying to remove an IM 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "IM მისამართი მოშორებულია." @@ -3224,131 +3334,145 @@ 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 "" @@ -3372,11 +3496,11 @@ msgstr "შესვლა" msgid "Login to site" msgstr "საიტზე შესვლა" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "დამიმახსოვრე" -#: 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 "მომავალში ავტომატურად შემიყვანე; არა საზიარო კომპიუტერებისათვის!" @@ -3763,7 +3887,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 "პაროლის შეცვლა" @@ -3771,7 +3896,8 @@ 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 "ახალი პაროლი" @@ -3779,7 +3905,7 @@ msgstr "ახალი პაროლი" msgid "6 or more characters" msgstr "6 ან მეტი სიმბოლო" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "იგივე რაც ზედა პაროლი" @@ -3803,11 +3929,12 @@ msgstr "არასწორი ძველი პაროლი" msgid "Error saving user; invalid." msgstr "შეცდომა მომხმარებლის შენახვისას; არასწორი." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "ვერ ვინახავ ახალ პაროლს." -#: 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 "პაროლი შენახულია." @@ -4129,12 +4256,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 "" @@ -4142,33 +4269,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:433 +#: lib/groupeditform.php:146 #, 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "ვებ. გვერსი" #. 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 "თქვენი ვებ. გვერდის URL, ბლოგი, ან პროფილი სხვა საიტზე" @@ -4176,51 +4304,51 @@ 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:471 #, 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 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" msgstr "" @@ -4228,27 +4356,27 @@ 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 +#: 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 "" @@ -4257,59 +4385,57 @@ 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)." 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "გახსენი ანგარიში" @@ -4427,36 +4553,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." @@ -4464,67 +4598,101 @@ msgstr "" "თუ დაგავიწყდათ, ან დაკარგეთ თქვენი პაროლი, შეგიძლიათ მიიღოთ ახალი, თქვენს " "ანგარიშში მითითებულ ელ. ფოსტის მისამართზე." -#: actions/recoverpassword.php:158 -msgid "You have been identified. Enter a new password below. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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: 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 "იგივე რაც ზედა პაროლი" + +#. 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." @@ -4532,24 +4700,35 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "ვერ ვინახავ ახალ პაროლს." + +#. 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 "მომხმარებელის დაყენებისას მოხდა შეცდომა." -#: 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 "ახალი პაროლი წარმატებით იქნა შენახული. თქვენ ახლა ავტორიზირებული ხართ." @@ -4565,7 +4744,7 @@ msgstr "ბოდიშს გიხდით, მოსაწვევი კ msgid "Registration successful" msgstr "რეგისტრაცია წარმატებით დასრულდა" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "რეგისტრაცია" @@ -4593,40 +4772,31 @@ 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 "იგივე, რაც პაროლი ზევით. სავალდებულო." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 ან მეტი სიმბოლო" #. 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 "ელ. ფოსტა" -#: 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 "" "გამოიყენება მხოლოდ განახლებებისთვის, განცხადებებისთვის და პაროლის აღსადგენად" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "გრძელი სახელი, სასურველია თქვენი ნამდვილი სახელი" -#: actions/register.php:463 +#: actions/register.php:462 msgid "URL of your homepage, blog, or profile on another site" msgstr "თქვენი ვებ. გვერდის URL, ბლოგი, ან პროფილი სხვა საიტზე" -#: actions/register.php:524 +#: actions/register.php:523 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." @@ -4634,23 +4804,23 @@ msgstr "" "მე ვაცნობიერებ, რომ %1$s–ის შიგთავსი და მონაცემები არის პირადული და " "კონციდენციალური." -#: actions/register.php:534 +#: actions/register.php:533 #, 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: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, " @@ -4659,7 +4829,7 @@ msgstr "" "ჩემი ტექსტი და ფაილები ხელმისაწვდომია %s–ით, გარდა ამ პირადი ინფორმაციისა: " "პაროლი, ელ. ფოსტის მისამართი, IM მისამართი და ტელეფონის ნომერი." -#: actions/register.php:589 +#: actions/register.php:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4692,7 +4862,7 @@ msgstr "" "\n" "გმადლობთ რომ დარეგისტრირდით. იმედი გვაქვს ისიამოვნებთ ამ სერვისით." -#: 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.)" @@ -4700,7 +4870,7 @@ msgstr "" "(თქვენ უნდა მიიღოს ელ. წერილი მომენტალურად. ინსტრუქციებით, თუ როგორ " "დაადასტუროთ თქვენი ელ. ფოსტის მისამართი.)" -#: actions/remotesubscribe.php:98 +#: actions/remotesubscribe.php:97 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -4712,74 +4882,77 @@ 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 +#: 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 +#: actions/remotesubscribe.php:133 msgid "URL of your profile on another compatible microblogging service" msgstr "თქვენი პროფილის URL სხვა თავსებად მიკრობლოგინგის სერვისზე" -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "გამოწერა" -#: actions/remotesubscribe.php:159 +#: 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." +#: 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "გამეორებული" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "გამეორებული!" @@ -5005,7 +5178,7 @@ msgstr "ორგანიზაცია" #. 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 "აღწერა" @@ -5028,8 +5201,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:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "წაშლა" @@ -5153,7 +5327,7 @@ msgid "Note" msgstr "შენიშვნა" #. 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 "" @@ -5524,13 +5698,13 @@ 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 "" @@ -5538,58 +5712,58 @@ 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 +#: 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." @@ -5598,32 +5772,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." @@ -5633,39 +5807,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 " @@ -5676,7 +5850,7 @@ msgstr "" "გაგვაგებინეთ ამის შესახებ, მოგვწერეთ მისამართზე - %s." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "კოდი არ არის შეყვანილი" @@ -5941,10 +6115,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 "" @@ -6179,12 +6349,12 @@ 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." @@ -6192,7 +6362,7 @@ msgstr "" "აირჩიეთ, როგორ გნებავთ გამოიყურებოდეს თქვენი პროფილი ფონური სურათისა და " "ფერთა პალიტრის შეცვლით." -#: actions/userdesignsettings.php:282 +#: actions/userdesignsettings.php:272 msgid "Enjoy your hotdog!" msgstr "ისიამოვნეთ ჰოთ დოგით!" @@ -7154,23 +7324,27 @@ 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 "" @@ -7687,26 +7861,26 @@ msgid "" msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "გადადი ამ ინსტალატორზე." @@ -7778,12 +7952,21 @@ 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: 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 @@ -7860,26 +8043,22 @@ msgstr "წინ" msgid "Grant this user the \"%s\" role" msgstr "მიანიჭე ამ მომხმარებელს \"%s\" როლი" -#: lib/groupeditform.php:154 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1–64 პატარა ასოები ან ციფრები. პუნქტუაციები ან სივრცეები დაუშვებელია" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 #, fuzzy msgid "URL of the homepage or blog of the group or topic." msgstr "საწყისი გვერდის URL, ან ჯგუფის/თემის ბლოგი" -#: lib/groupeditform.php:168 +#: lib/groupeditform.php:160 msgid "Describe the group or topic" msgstr "აღწერე ჯგუფი ან თემა" -#: 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] "არწერე ჯგუფი ან თემა %d სიმბოლოთი" -#: lib/groupeditform.php:182 +#: lib/groupeditform.php:174 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." @@ -7887,7 +8066,7 @@ msgstr "" "ჯგუფის მდებარეობა არსებობის შემთხვევაში. მაგ.: \"ქალაქი, ქვეყანა (ან რეგიონი)" "\"" -#: lib/groupeditform.php:190 +#: lib/groupeditform.php:182 #, fuzzy, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9060,14 +9239,9 @@ msgstr[0] "" 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 "" @@ -9105,3 +9279,33 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#, fuzzy +#~ msgid "No such group" +#~ msgstr "ასეთი ჯგუფი ვერ მოიძებნა." + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "API მეთოდი ვერ მოიძებნა." + +#~ msgid "Reset" +#~ msgstr "გადაყენება" + +#~ msgid "" +#~ "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#~ msgstr "" +#~ "1–64 პატარა ასოები ან ციფრები. პუნქტუაციები ან სივრცეები დაუშვებელია. " +#~ "სავალდებულო." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 ან მეტი სიმბოლო. სავალდებულო." + +#~ msgid "Same as password above. Required." +#~ msgstr "იგივე, რაც პაროლი ზევით. სავალდებულო." + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "" +#~ "1–64 პატარა ასოები ან ციფრები. პუნქტუაციები ან სივრცეები დაუშვებელია" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s არ არის სწორი ფერი!" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 62347deb7d..b34e7ec6a8 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:34:59+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:57:23+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\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: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -76,6 +76,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" 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. @@ -131,8 +134,8 @@ msgstr "해당하는 페이지 없음" #: 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,7 +146,7 @@ msgstr "해당하는 페이지 없음" #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -305,7 +308,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "이용자를 업데이트 할 수 없습니다." @@ -327,7 +344,8 @@ 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 "프로필을 저장 할 수 없습니다." @@ -337,7 +355,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, fuzzy, php-format @@ -360,8 +378,8 @@ msgstr[0] "" #: 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/userdesignsettings.php:201 actions/userdesignsettings.php:211 +#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263 msgid "Unable to save your design settings." msgstr "디자인 설정을 저장할 수 없습니다." @@ -369,13 +387,17 @@ msgstr "디자인 설정을 저장할 수 없습니다." #. TRANS: Client error displayed when a database error occurs updating profile colours. #: actions/apiaccountupdateprofilebackgroundimage.php:191 #: actions/apiaccountupdateprofilecolors.php:139 +#: actions/groupdesignsettings.php:266 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. @@ -386,31 +408,38 @@ msgstr "" 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 "이용자 차단에 실패했습니다." @@ -501,7 +530,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:91 msgid "Could not delete favorite." msgstr "관심소식을 삭제할 수 없습니다." @@ -548,7 +578,7 @@ msgstr "타겟 이용자를 찾을 수 없습니다." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." @@ -558,7 +588,7 @@ msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십 #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "유효한 별명이 아닙니다" @@ -570,7 +600,7 @@ msgstr "유효한 별명이 아닙니다" #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "홈페이지 주소형식이 올바르지 않습니다." @@ -580,7 +610,7 @@ msgstr "홈페이지 주소형식이 올바르지 않습니다." #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -607,7 +637,7 @@ msgstr[0] "설명이 너무 깁니다. (최대 %d 글자)" #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -664,22 +694,26 @@ 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 가입에 실패했습니다." @@ -691,9 +725,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." @@ -730,7 +766,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 "허용되지 않는 요청입니다." @@ -753,18 +789,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -784,18 +824,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "잘못된 폼 제출" @@ -847,9 +890,9 @@ msgstr "계정" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "별명" @@ -857,7 +900,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "비밀 번호" @@ -868,7 +911,7 @@ msgstr "비밀 번호" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -942,6 +985,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 @@ -961,40 +1005,52 @@ msgstr "자기 자신의 소식은 재전송할 수 없습니다." 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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 "통지 삭제" @@ -1126,51 +1182,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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, fuzzy, php-format msgid "No content for notice %d." msgstr "통지들의 내용 찾기" #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." msgstr "해당 id의 프로필이 없습니다." -#: 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." @@ -1181,108 +1235,137 @@ msgstr "API 메서드를 구성중 입니다." 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 +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 +#. 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 -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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "API 메서드 발견 안 됨." - -#: 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. @@ -1290,40 +1373,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +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: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 #, fuzzy, php-format -msgid "Unknown profile %s" +msgid "Unknown profile %s." msgstr "알 수 없는 종류의 파일입니다" #. TRANS: Client error displayed trying to get a non-existing attachment. @@ -1334,10 +1414,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "별명이 없습니다." @@ -1368,30 +1449,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "미리보기" @@ -1429,7 +1516,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "파일 데이터를 잃어버렸습니다." @@ -1448,35 +1536,42 @@ msgstr "아바타 업데이트 실패" msgid "Avatar deleted." msgstr "아바타가 삭제되었습니다." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "배경" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1509,14 +1604,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: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:158 actions/deleteuser.php:156 +#: actions/block.php:158 msgid "Do not block this user" msgstr "이용자를 차단하지 않는다." @@ -1528,7 +1622,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "예" @@ -1544,31 +1638,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 @@ -1640,23 +1709,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 @@ -1718,7 +1770,8 @@ 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 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "새 계정 만들기" @@ -1740,8 +1793,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "인증" @@ -1813,8 +1867,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 "별명이 없습니다." @@ -1867,10 +1923,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1911,98 +1968,133 @@ msgstr "이 통지를 지울 수 없습니다." 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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2011,98 +2103,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 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 "저장" - +#. 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:84 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:99 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. @@ -2196,14 +2298,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "관리자만 그룹을 편집할 수 있습니다." @@ -2264,8 +2368,8 @@ msgstr "확인된 최신의 메일 계정" #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "제거" @@ -2290,15 +2394,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "받은 메일" @@ -2309,13 +2413,13 @@ 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:180 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:189 actions/smssettings.php:182 msgid "Make a new email address for posting to; cancels the old one." msgstr "포스팅을 위한 새 메일 계정의 생성; 전 메일 계정은 취소." @@ -2328,7 +2432,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "새 게임" @@ -2402,9 +2506,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2419,8 +2524,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "취소 할 대기중인 인증이 없습니다." @@ -2432,8 +2537,9 @@ 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:468 actions/smssettings.php:413 +#, fuzzy +msgid "Could not delete email confirmation." msgstr "메일 승인을 삭제 할 수 없습니다." #. TRANS: Message given after successfully canceling e-mail address confirmation. @@ -2452,24 +2558,25 @@ msgstr "그 메일 주소는 귀하의 것이 아닙니다." msgid "The email address was removed." msgstr "메일 주소를 지웠습니다." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "새로운 받는 메일 주소를 추가했습니다." @@ -2563,7 +2670,7 @@ msgstr "예상치 못한 반응 입니다." msgid "User being listened to does not exist." msgstr "살펴 보고 있는 사용자가 없습니다." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "당신은 로컬 구독을 사용할 수 있습니다." @@ -2697,45 +2804,47 @@ 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 -msgid "Couldn't update your design." -msgstr "디자인을 수정할 수 없습니다." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, 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:244 msgid "Upload" msgstr "올리기" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "자르기" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "로고를 업데이트했습니다." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "로고 업데이트에 실패했습니다." @@ -2815,7 +2924,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "새 그룹을 만듭니다." @@ -2867,14 +2976,14 @@ msgid "Error removing the block." msgstr "차단 제거 에러!" #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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](%%" @@ -2884,23 +2993,23 @@ msgstr "" "래 당신의 주소와 환경설정을 조정하세요." #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "SMS 주소" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2914,7 +3023,7 @@ msgstr "" #. 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 " @@ -2924,64 +3033,64 @@ msgstr "" "GTalk 친구목록에 반드시 %s 주소를 추가하여 주십시오." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "메일 설정" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Jabber/GTalk 로 통지를 보내주세요." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Jabber/GTalk의 상태가 변경되었을 때 통지를 보냅니다." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Jabber/GTalk 계정을 위한 MicroID의 생성" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "설정이 저장되었습니다." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 msgid "Cannot normalize that Jabber ID" msgstr "그 Jabbar ID를 정규화 할 수 없습니다." #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:325 +#: 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2991,28 +3100,29 @@ msgstr "" "달할 수 있습니다." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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." +#: 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 +#: actions/imsettings.php:396 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 +#: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "메일 주소를 지웠습니다." @@ -3204,132 +3314,146 @@ 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 "" @@ -3353,11 +3477,11 @@ msgstr "로그인" msgid "Login to site" msgstr "사이트에 로그인하세요." -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "자동 로그인" -#: 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 "앞으로는 자동으로 로그인합니다. 공용 컴퓨터에서는 이용하지 마십시오!" @@ -3746,7 +3870,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 "비밀번호 변경" @@ -3754,7 +3879,8 @@ 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 "새로운 비밀 번호" @@ -3762,7 +3888,7 @@ msgstr "새로운 비밀 번호" msgid "6 or more characters" msgstr "6글자 이상" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "위와 같은 비밀 번호" @@ -3786,11 +3912,12 @@ msgstr "기존 비밀 번호가 틀렸습니다" msgid "Error saving user; invalid." msgstr "사용자 저장 오류; 무효한 사용자" -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "새 비밀번호를 저장 할 수 없습니다." -#: 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 "비밀 번호 저장" @@ -4109,12 +4236,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 "" @@ -4122,33 +4249,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:433 +#: lib/groupeditform.php:146 #, 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "홈페이지" #. 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 "귀하의 홈페이지, 블로그 혹은 다른 사이트의 프로필 페이지 URL" @@ -4156,77 +4284,77 @@ 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" 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 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" 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 +#: 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 "나에게 구독하는 사람에게 자동 구독 신청" @@ -4234,60 +4362,57 @@ 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)." 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "새 계정 만들기" @@ -4403,126 +4528,178 @@ 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 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: 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 "위와 같은 비밀 번호" + +#. 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "새 비밀번호를 저장 할 수 없습니다." + +#. 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 "사용자 세팅 오류" -#: 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 "" "새로운 비밀 번호를 성공적으로 저장했습니다. 귀하는 이제 로그인 되었습니다." @@ -4540,7 +4717,7 @@ msgstr "확인 코드 오류" msgid "Registration successful" msgstr "회원 가입이 성공적입니다." -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "등록" @@ -4566,68 +4743,59 @@ 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자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다. 필수 " -"입력." - -#: actions/register.php:438 -msgid "6 or more characters. Required." -msgstr "6글자 이상이 필요합니다." - -#: actions/register.php:442 -msgid "Same as password above. Required." -msgstr "위와 같은 비밀 번호. 필수 사항." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6글자 이상" #. 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 "메일" -#: 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 "업데이트나 공지, 비밀번호 찾기에 사용하세요." -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "더욱 긴 이름을 요구합니다." -#: actions/register.php:463 +#: actions/register.php:462 msgid "URL of your homepage, blog, or profile on another site" msgstr "귀하의 홈페이지, 블로그 혹은 다른 사이트의 프로필 페이지 URL" -#: actions/register.php:524 +#: actions/register.php:523 #, 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:533 #, 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: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 #, 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:588 #, fuzzy, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4660,7 +4828,7 @@ msgstr "" "\n" "다시 한번 가입하신 것을 환영하면서 즐거운 서비스가 되셨으면 합니다." -#: 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.)" @@ -4668,7 +4836,7 @@ msgstr "" "(지금 귀하는 귀하의 이메일 주소를 확인하는 방법에 대한 지침을 메일로 받으셨습" "니다.)" -#: actions/remotesubscribe.php:98 +#: actions/remotesubscribe.php:97 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -4679,77 +4847,78 @@ 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 +#: 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 +#: actions/remotesubscribe.php:133 msgid "URL of your profile on another compatible microblogging service" msgstr "다른 마이크로블로깅 서비스의 귀하의 프로필 URL" -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "구독" -#: actions/remotesubscribe.php:159 +#: actions/remotesubscribe.php:158 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "재전송됨" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "재전송됨!" @@ -4969,7 +5138,7 @@ msgstr "기관 이름이 필요합니다." #. 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 "설명" @@ -4992,8 +5161,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:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "삭제" @@ -5113,7 +5283,7 @@ msgid "Note" msgstr "설명" #. 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 "" @@ -5493,71 +5663,71 @@ 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 +#: 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." @@ -5566,32 +5736,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." @@ -5600,39 +5770,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 " @@ -5640,7 +5810,7 @@ msgid "" msgstr "귀하의 휴대폰의 통신회사는 무엇입니까?" #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "코드가 입력 되지 않았습니다." @@ -5897,10 +6067,6 @@ msgid "" 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 "당신의 구독자나 구독하는 사람에 태깅을 위해 이 양식을 사용하세요." @@ -6135,18 +6301,18 @@ 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 "" @@ -7111,23 +7277,27 @@ 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 "" @@ -7645,26 +7815,26 @@ msgid "" msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "이 사이트에 로그인" @@ -7734,12 +7904,21 @@ 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: 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 @@ -7819,32 +7998,28 @@ 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 +#: lib/groupeditform.php:155 #, fuzzy msgid "URL of the homepage or blog of the group or topic." msgstr "그룹 혹은 토픽의 홈페이지나 블로그 URL" -#: lib/groupeditform.php:168 +#: lib/groupeditform.php:160 msgid "Describe the group or topic" msgstr "응용프로그램 삭제" -#: 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] "140글자로 그룹이나 토픽 설명하기" -#: lib/groupeditform.php:182 +#: lib/groupeditform.php:174 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." msgstr "그룹의 위치, \"시/군/구, 도, 국가\"" -#: lib/groupeditform.php:190 +#: lib/groupeditform.php:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -8943,14 +9118,9 @@ msgstr[0] "" 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 "홈페이지 주소형식이 올바르지 않습니다." @@ -8985,3 +9155,33 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "그러한 그룹이 없습니다." + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "API 메서드 발견 안 됨." + +#~ msgid "Reset" +#~ msgstr "초기화" + +#~ msgid "" +#~ "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#~ msgstr "" +#~ "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다. 필" +#~ "수 입력." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6글자 이상이 필요합니다." + +#~ msgid "Same as password above. Required." +#~ msgstr "위와 같은 비밀 번호. 필수 사항." + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "" +#~ "1-64자 사이에 영소문자, 숫자로만 씁니다. 기호나 공백을 쓰면 안 됩니다." + +#, fuzzy +#~ msgid "%s is not a valid color!" +#~ msgstr "홈페이지 주소형식이 올바르지 않습니다." diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 477837ac3f..61c475668d 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:35:00+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:57:25+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-core\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -77,6 +77,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" 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. @@ -132,8 +135,8 @@ msgstr "Нема таква страница." #: 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,7 +147,7 @@ msgstr "Нема таква страница." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -313,7 +316,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "Не можев да го подновам корисникот." @@ -335,7 +352,8 @@ 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,7 +363,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -371,8 +389,8 @@ msgstr[1] "" #: 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/userdesignsettings.php:201 actions/userdesignsettings.php:211 +#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263 msgid "Unable to save your design settings." msgstr "Не можам да ги зачувам Вашите нагодувања за изглед." @@ -380,13 +398,17 @@ msgstr "Не можам да ги зачувам Вашите нагодувањ #. TRANS: Client error displayed when a database error occurs updating profile colours. #: actions/apiaccountupdateprofilebackgroundimage.php:191 #: actions/apiaccountupdateprofilecolors.php:139 +#: actions/groupdesignsettings.php:266 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. @@ -397,31 +419,38 @@ msgstr "Главна" 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 #, php-format msgid "%s favorites" msgstr "%s бендисани" -#: 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 "%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 "Блокирањето на корисникот не успеа." @@ -514,7 +543,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:91 msgid "Could not delete favorite." msgstr "Не можам да ја избришам бендисаната забелешка." @@ -561,7 +591,7 @@ msgstr "Не можев да го пронајдам целниот корисн #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Тој прекар е во употреба. Одберете друг." @@ -571,7 +601,7 @@ msgstr "Тој прекар е во употреба. Одберете друг. #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Неправилен прекар." @@ -583,7 +613,7 @@ msgstr "Неправилен прекар." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "Главната страница не е важечка URL-адреса." @@ -593,7 +623,7 @@ msgstr "Главната страница не е важечка 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:151 actions/profilesettings.php:256 +#: actions/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." msgstr "Полното име е предолго (највеќе 255 знаци)." @@ -620,7 +650,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:163 actions/profilesettings.php:269 +#: actions/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 msgid "Location is too long (maximum 255 characters)." msgstr "Местоположбата е предолга (највеќе 255 знаци)." @@ -677,22 +707,26 @@ 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." @@ -704,9 +738,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." @@ -743,7 +779,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 "Неважечки жетон за барање или потврдник." @@ -763,18 +799,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -793,18 +833,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Неочекувано поднесување на образец." @@ -855,9 +898,9 @@ msgstr "Сметка" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Прекар" @@ -865,7 +908,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Лозинка" @@ -876,7 +919,7 @@ msgstr "Лозинка" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -950,6 +993,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 @@ -969,39 +1013,50 @@ msgstr "Не можете да ја повторувате сопственат 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" #. 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" @@ -1136,51 +1191,49 @@ msgstr "Само корисникот може да ја надополнува msgid "Only accept AtomPub for Atom feeds." msgstr "Прифаќај само AtomPub за Atom-канали." -#: 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 "Забелешката преку Atom не смее да биде празна." -#: 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 "Забелешката преку 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:334 +#: actions/apitimelineuser.php:336 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:345 +#: actions/apitimelineuser.php:347 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "Не може да работи со предмети на активност од типот „%s“." #. TRANS: Client error displayed when posting a notice without content through the API. -#: actions/apitimelineuser.php:378 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, php-format msgid "No content for notice %d." msgstr "Нема содржина за забелешката %d." #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, php-format msgid "Notice with URI \"%s\" already exists." msgstr "Веќе постои забелешка со URI „%s“." -#: actions/apitimelineuser.php:437 -#, 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." @@ -1191,97 +1244,128 @@ msgstr "API-методот е во изработка." 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 "Забелешки на %s што ги бендисува %s" - -#: 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 msgid "No such profile." 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 "Членства на групата %s" -#: actions/atompubmembershipfeed.php:147 -#, php-format -msgid "Groups %s is a member of on %s" -msgstr "Групи на %s кадешто членува %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." +#: 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" -msgstr "Не можам да избришам туѓа бендисана ставка." +#, fuzzy +msgid "Cannot delete someone else's favorite." +msgstr "Не можам да избришам туѓo бендисанo." -#: actions/atompubshowmembership.php:81 -msgid "No such group" -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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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" +#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group +#: actions/atompubshowmembership.php:91 +#, fuzzy +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 deleting someone else's membership. +#: actions/atompubshowmembership.php:151 +#, fuzzy +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. @@ -1289,41 +1373,37 @@ msgstr "Не можам да избришам туѓо членство" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, php-format -msgid "No such profile id: %d" -msgstr "Нема таква назнака на профил: %d" +msgid "No such profile id: %d." +msgstr "Нема таква назнака на профил: %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 "Профилот %d не е претплатен на профилот %d" +#, php-format +msgid "Profile %1$d not subscribed to profile %2$d." +msgstr "Профилот %1$d не е претплатен на профилот %2$d." #. 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 "Не можам да избришам туѓа претплата" - -#: actions/atompubsubscriptionfeed.php:150 -#, php-format -msgid "People %s has subscribed to on %s" -msgstr "Луѓе на %s на коишто се претплатил %s" +msgid "Cannot delete someone else's subscription." +msgstr "Не можам да избришам туѓа претплата." #. TRANS: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "Може само да следи луѓе." -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 #, php-format -msgid "Unknown profile %s" -msgstr "Непознат профил %s" +msgid "Unknown profile %s." +msgstr "Непознат профил %s." #. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 @@ -1333,10 +1413,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Нема прекар." @@ -1369,30 +1450,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Преглед" @@ -1427,7 +1514,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Податоците за податотеката се изгубени." @@ -1446,37 +1534,48 @@ msgstr "Подновата на аватарот не успеа." msgid "Avatar deleted." msgstr "Аватарот е избришан." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" -msgstr "" +msgstr "Резервна сметка" -#: actions/backupaccount.php:80 -#, fuzzy +#. 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 "Само најавени корисници можат да повторуваат забелешки." +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 "" +msgstr "Не можете да направите резрвна верзија на Вашата сметка." -#: actions/backupaccount.php:232 +#. 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 " +"\">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. Ова е " +"експериментална функција која прави нецелосна резерва. Во резервата нема да " +"се зачуваат лични податоци како е-пошта и адреса за НП. Покрај ова, во " +"резервата не се зачувуваат и подигнатите податотеки и непосредните пораки." -#: actions/backupaccount.php:255 -#, fuzzy +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 msgctxt "BUTTON" msgid "Backup" -msgstr "Позадина" +msgstr "Резерва" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" -msgstr "" +msgstr "Направете резервна верзија на сметката" #. TRANS: Client error displayed when blocking a user that has already been blocked. #: actions/block.php:68 @@ -1509,14 +1608,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: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:158 actions/deleteuser.php:156 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Не го блокирај корисников" @@ -1528,7 +1626,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Да" @@ -1544,31 +1642,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 @@ -1638,23 +1711,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 @@ -1686,39 +1742,36 @@ 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 "Само најавени корисници можат да повторуваат забелешки." +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 "Не можете да бришете корисници." +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 "" +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 "" +msgstr "Во кутијата морате точно да го впишете „%s“ како што е." #. TRANS: Confirmation that a user account has been deleted. #: actions/deleteaccount.php:206 -#, fuzzy msgid "Account deleted." -msgstr "Аватарот е избришан." +msgstr "Сметката е избришана." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 -#, fuzzy +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 msgid "Delete account" -msgstr "Создај сметка" +msgstr "Избриши сметка" #. TRANS: Form text for user deletion form. #: actions/deleteaccount.php:279 @@ -1726,6 +1779,7 @@ 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. @@ -1735,25 +1789,27 @@ 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 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 +#, php-format msgid "Enter \"%s\" to confirm that you want to delete your account." -msgstr "Не можете да бришете корисници." +msgstr "Внесете го „%s“ за да потврдите дека сакате да ја избришете сметката." #. TRANS: Button title for user account deletion. #: actions/deleteaccount.php:323 -#, fuzzy msgid "Permanently delete your account" -msgstr "Не можете да бришете корисници." +msgstr "Трајно бришење на сметката" #. TRANS: Client error displayed trying to delete an application while not logged in. #: actions/deleteapplication.php:62 @@ -1812,8 +1868,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." @@ -1864,10 +1922,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1890,7 +1949,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 @@ -1905,21 +1964,32 @@ msgstr "Не ја бриши оваа забелешка" #. TRANS: Submit button title for 'Yes' when deleting a notice. #: actions/deletenotice.php:166 lib/noticelist.php:673 msgid "Delete this notice" -msgstr "Бриши ја оваа забелешка" +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 "Бриши корисник" +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." @@ -1927,78 +1997,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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2008,98 +2102,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 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 "Зачувај" - +#. 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:84 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:99 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. @@ -2189,14 +2293,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "Мора да сте администратор за да можете да ја уредите групата." @@ -2257,8 +2363,8 @@ msgstr "Тековна потврдена е-поштенска адреса." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Отстрани" @@ -2283,15 +2389,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Приемна пошта" @@ -2302,13 +2408,13 @@ 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:180 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:189 actions/smssettings.php:182 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Создај нова е-поштенска адреса за примање објави; ја заменува старата адреса." @@ -2324,7 +2430,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Нова" @@ -2400,10 +2506,10 @@ 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 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:426 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 @@ -2418,8 +2524,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Нема потврди кои може да се откажат." @@ -2430,8 +2536,8 @@ 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:468 actions/smssettings.php:413 +msgid "Could not delete email confirmation." msgstr "Не можев да ја избришам потврдата по е-пошта." #. TRANS: Message given after successfully canceling e-mail address confirmation. @@ -2450,24 +2556,24 @@ msgstr "Ова не е Вашата е-поштенска адреса." msgid "The email address was removed." msgstr "Е-поштенската адреса е отстранета." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Додадена е нова влезна е-поштенска адреса." @@ -2566,7 +2672,7 @@ msgstr "Овој одговор не беше очекуван!" msgid "User being listened to does not exist." msgstr "Следениот корисник не постои." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Може да ја користите локалната претплата." @@ -2698,22 +2804,19 @@ 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 "Не можев да го подновам Вашиот изглед." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -2721,23 +2824,28 @@ msgstr "" "Можете да подигнете слика за логото на Вашата група. Максималната дозволена " "големина на податотеката е %s." -#: actions/grouplogo.php:236 +#. TRANS: Submit button for uploading a group logo. +#: actions/grouplogo.php:244 msgid "Upload" msgstr "Подигни" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Отсечи" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "Логото е подновено." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "Подновата на логото не успеа." @@ -2823,7 +2931,7 @@ msgstr "" "[ја пронајдете](%%%%action.groupsearch%%%%) или [започнете своја!](%%%%" "action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Создај нова група" @@ -2879,14 +2987,14 @@ msgid "Error removing the block." msgstr "Грешка при отстранување на блокот." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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](%%" @@ -2896,23 +3004,23 @@ msgstr "" "im%%). Подолу " #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "IM адреса" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2927,7 +3035,7 @@ msgstr "" #. 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 " @@ -2937,64 +3045,64 @@ msgstr "" "%s во Вашиот контактен список во Вашиот IM клиент или GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "IM нагодувања" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Испраќај ми забелешки преку Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Објавувај забелешка кога мојот статус на Jabber/GTalk ќе се промени." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Објави MicroID за мојата адреса на Jabber/GTalk." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Нагодувањата се зачувани." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: actions/imsettings.php:304 msgid "No Jabber ID." msgstr "Нема JabberID." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:320 +#: actions/imsettings.php:312 msgid "Cannot normalize that Jabber ID" msgstr "Ова JabberID не може да се нормализира." #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:325 +#: actions/imsettings.php:317 msgid "Not a valid Jabber ID" msgstr "Неправилен JabberID" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:329 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3004,28 +3112,28 @@ msgstr "" "одобрите на %s да Ви испраќа пораки." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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." +#: 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 +#: actions/imsettings.php:396 msgid "IM confirmation cancelled." msgstr "Потврдата на IM е откажана." #. TRANS: Message given trying to remove an IM 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "IM-адресата е отстранета." @@ -3155,7 +3263,7 @@ msgstr "Можете да додадете и лична порака во по #: actions/invite.php:231 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 @@ -3227,44 +3335,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." @@ -3272,91 +3387,98 @@ 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 "Зачувај нагодувања на лиценцата" @@ -3380,11 +3502,11 @@ msgstr "Најава" msgid "Login to site" msgstr "Најавете се" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Запамети ме" -#: 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 "" "Отсега врши автоматска најава. Не треба да се користи за јавни сметачи!" @@ -3464,9 +3586,8 @@ 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 "Не Ви е дозволено да ја избришете оваа група." +msgstr "Не Ви е дозволено да создавате групи на ова мреж. место." #. TRANS: Form instructions for group create form. #: actions/newgroup.php:117 @@ -3726,7 +3847,7 @@ msgstr "Види изгледи на профилот" #. TRANS: Tooltip for checkbox. #: actions/othersettings.php:130 msgid "Show or hide profile designs." -msgstr "Прикажи или сокриј профилни изгледи." +msgstr "Прикажи или скриј изгледи на профилот." #. TRANS: Form validation error for form "Other settings" in user profile. #: actions/othersettings.php:162 @@ -3777,7 +3898,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 "Промена на лозинка" @@ -3785,7 +3907,8 @@ 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 "Нова лозинка" @@ -3793,7 +3916,7 @@ msgstr "Нова лозинка" msgid "6 or more characters" msgstr "6 или повеќе знаци" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Исто како лозинката погоре" @@ -3817,11 +3940,12 @@ msgstr "Неточна стара лозинка" msgid "Error saving user; invalid." msgstr "Грешка во зачувувањето на корисникот; неправилен." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Не можам да ја зачувам новата лозинка." -#: 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 "Лозинката е зачувана." @@ -4131,12 +4255,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 "" @@ -4144,32 +4268,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:433 +#: lib/groupeditform.php:146 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Домашна страница" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:125 +#: actions/profilesettings.php:121 msgid "URL of your homepage, blog, or profile on another site." msgstr "" "URL-адреса на Вашата домашна страница, блог или профил на друго мрежно место." @@ -4177,7 +4302,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 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4185,45 +4310,45 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 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" msgstr "" @@ -4231,27 +4356,27 @@ 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 +#: 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 "" @@ -4261,7 +4386,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 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4269,54 +4394,49 @@ 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 actions/tagother.php:178 #, 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 +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:481 actions/restoreaccount.php:60 -#, fuzzy +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 msgid "Restore account" -msgstr "Создај сметка" +msgstr "Врати сметка" #: actions/public.php:83 #, php-format @@ -4438,35 +4558,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." @@ -4474,69 +4602,102 @@ msgstr "" "Ако ја имате заборавено или загубено лозинката, можете да побарате да Ви се " "испрати нова по е-поштата која сте ја назначиле за сметката." -#: actions/recoverpassword.php:158 -msgid "You have been identified. Enter a new password below. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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: 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 "Исто како лозинката погоре" + +#. 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." @@ -4544,23 +4705,34 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Не можам да ја зачувам новата лозинка." + +#. 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 "Грешка во поставувањето на корисникот." -#: 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 "Новата лозинка е успешно зачувана. Сега сте најавени." @@ -4576,7 +4748,7 @@ msgstr "Жалиме, неважечки код за поканата." msgid "Registration successful" msgstr "Регистрацијата е успешна" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Регистрирај се" @@ -4604,63 +4776,54 @@ 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 "Исто што и лозинката погоре. Задолжително поле." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 или повеќе знаци" #. 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 "Е-пошта" -#: 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 "Се користи само за подновувања, објави и повраќање на лозинка." -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Подолго име, по можност Вашето вистинско име и презиме" -#: actions/register.php:463 +#: actions/register.php:462 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL на Вашата домашна страница, блог или профил на друго мрежно место." -#: 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 "Сфаќам дека содржината и податоците на %1$s се лични и доверливи." -#: actions/register.php:534 +#: actions/register.php:533 #, 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: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, " @@ -4669,7 +4832,7 @@ msgstr "" "Мојот текст и податотеки се достапни под %s, освен следниве приватни " "податоци: лозинка, е-пошта, IM-адреса и телефонски број." -#: actions/register.php:589 +#: actions/register.php:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4703,7 +4866,7 @@ msgstr "" "Ви благодариме што се зачленивте и Ви пожелуваме пријатни мигови со оваа " "служба." -#: 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.)" @@ -4711,7 +4874,7 @@ msgstr "" "(Би требало веднаш да добиете порака по е-пошта, во која стојат напатствија " "за потврдување на е-поштенската адреса.)" -#: actions/remotesubscribe.php:98 +#: actions/remotesubscribe.php:97 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -4723,74 +4886,74 @@ 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 +#: 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 +#: actions/remotesubscribe.php:133 msgid "URL of your profile on another compatible microblogging service" msgstr "URL на Вашиот профил на друга соодветна служба за микроблогирање." -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Претплати се" -#: actions/remotesubscribe.php:159 +#: 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Повторено" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Повторено!" @@ -4854,22 +5017,19 @@ 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 "Само најавени корисници можат да повторуваат забелешки." +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 "Сè уште немате регистрирано ниеден програм," +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 "Подигање" +msgstr "Нема подигната податотека." #. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. #: actions/restoreaccount.php:129 lib/mediafile.php:194 @@ -4914,9 +5074,8 @@ msgstr "Системска грешка при подигањето на под #. TRANS: Client exception thrown when a feed is not an Atom feed. #: actions/restoreaccount.php:207 -#, fuzzy msgid "Not an Atom feed." -msgstr "Не членувате" +msgstr "Ова не е Atom-канал." #. TRANS: Success message when a feed has been restored. #: actions/restoreaccount.php:241 @@ -4924,11 +5083,14 @@ 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 @@ -4936,12 +5098,13 @@ 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 -#, fuzzy msgid "Upload the file" -msgstr "Подигање" +msgstr "Подигни ја податотеката" #: actions/revokerole.php:75 msgid "You cannot revoke user roles on this site." @@ -5019,7 +5182,7 @@ msgstr "Организација" #. 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 "Опис" @@ -5042,10 +5205,11 @@ 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:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" -msgstr "Бриши" +msgstr "Избриши" #: actions/showapplication.php:261 msgid "Application info" @@ -5172,7 +5336,7 @@ msgid "Note" msgstr "Забелешка" #. 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 "Алијаси" @@ -5566,71 +5730,71 @@ 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 +#: 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." @@ -5639,32 +5803,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." @@ -5673,39 +5837,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 " @@ -5715,7 +5879,7 @@ msgstr "" "пошта, но не фигурира овде, известете нè на %s." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Нема внесено код" @@ -5979,10 +6143,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 "Со овој образец додавајте ознаки во Вашите претплатници или претплати." @@ -6213,12 +6373,12 @@ 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." @@ -6226,7 +6386,7 @@ msgstr "" "Прилагодете го изгледот на Вашиот профил, со позадинска слика и палета од " "бои по Ваш избор." -#: actions/userdesignsettings.php:282 +#: actions/userdesignsettings.php:272 msgid "Enjoy your hotdog!" msgstr "Добар апетит!" @@ -6868,7 +7028,7 @@ msgstr "Помош" #. TRANS: Secondary navigation menu option leading to text about StatusNet site. #: lib/action.php:867 msgid "About" -msgstr "За" +msgstr "За нас" #. TRANS: Secondary navigation menu option leading to Frequently Asked Questions. #: lib/action.php:870 @@ -6999,54 +7159,51 @@ msgstr "Се очекува коренски каналски елемент, н #. TRANS: Client exception thrown when using an unknown verb for the activity importer. #: lib/activityimporter.php:81 -#, fuzzy, php-format +#, php-format msgid "Unknown verb: \"%s\"." -msgstr "Непознат јазик „%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 "" +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 "Назначете го името на корисникот на којшто сакате да се претплатите." +msgstr "Не можам да му наметнам на далечинскиот корисник да се претплати." #. TRANS: Client exception thrown when trying to subscribe to an unknown profile. #: lib/activityimporter.php:132 -#, fuzzy msgid "Unknown profile." -msgstr "Непознат профил %s" +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 "" +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 "" +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 "Веќе членувате во таа група." +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 "" +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 +#, php-format msgid "No content for notice %s." -msgstr "Нема содржина за забелешката %d." +msgstr "Нема содржина за забелешката %s." #. TRANS: Client exception thrown when there is no source attribute. #: lib/activityutils.php:200 @@ -7197,24 +7354,28 @@ 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 "Не успеав да го избришам отповиканиот жетон." @@ -7332,15 +7493,13 @@ msgid "Revoke" msgstr "Одземи" #: lib/atom10feed.php:113 -#, fuzzy msgid "Author element must contain a name element." -msgstr "авторскиот елемент мора да содржи елемент на име." +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 "Не ја бриши групава" +msgstr "Не користете го овој метод!" #. TRANS: DT element label in attachment list item. #: lib/attachmentlist.php:294 @@ -7773,24 +7932,24 @@ msgstr "" "tracking - сè уште не е имплементирано.\n" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 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:153 +#: lib/common.php:158 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 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Оди на инсталаторот." @@ -7857,11 +8016,21 @@ 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: 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 @@ -7893,17 +8062,16 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedimporter.php:75 -#, fuzzy msgid "Not an atom feed." -msgstr "Не членувате" +msgstr "Ова не е Atom-канал." #: lib/feedimporter.php:82 msgid "No author in the feed." -msgstr "" +msgstr "Нема автор во емитувањето." #: lib/feedimporter.php:89 msgid "Can't import without a user." -msgstr "" +msgstr "Не можам да увезам без корисник." #. TRANS: Header for feed links (h2). #: lib/feedlist.php:66 @@ -7939,32 +8107,28 @@ msgstr "Оди" msgid "Grant this user the \"%s\" role" msgstr "Додели улога „%s“ на корисников" -#: lib/groupeditform.php:154 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 мали букви или бројки. Без интерпукциски знаци и празни места." - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 msgid "URL of the homepage or blog of the group or topic." msgstr "URL на страницата или блогот на групата или темата" -#: lib/groupeditform.php:168 +#: lib/groupeditform.php:160 msgid "Describe the group or topic" msgstr "Опишете ја групата или темата" -#: 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" +#: 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." msgstr[0] "Опишете ја групата или темата со највеќе %d знак" msgstr[1] "Опишете ја групата или темата со највеќе %d знаци" -#: lib/groupeditform.php:182 +#: lib/groupeditform.php:174 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." msgstr "" "Местоположба на групата (ако има). На пр. „Град, Сој. држава/област, Земја“" -#: lib/groupeditform.php:190 +#: lib/groupeditform.php:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -8602,7 +8766,7 @@ msgstr "Расположиви знаци" #: lib/messageform.php:185 lib/noticeform.php:237 msgctxt "Send button for sending notice" msgid "Send" -msgstr "Прати" +msgstr "Испрати" #. TRANS: Validation error in form for registration, profile and group settings, etc. #: lib/nickname.php:165 @@ -9170,14 +9334,9 @@ msgstr[1] "пред околу %d месеци" 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 "" @@ -9215,3 +9374,30 @@ msgstr "Неважечки XML. Нема XRD-корен." #, php-format msgid "Getting backup from file '%s'." msgstr "Земам резерва на податотеката „%s“." + +#~ msgid "No such group" +#~ msgstr "Нема такваа група" + +#~ msgid "HTTP method not supported" +#~ msgstr "HTML-методот не е поддржан" + +#~ msgid "Reset" +#~ msgstr "Врати одново" + +#~ msgid "" +#~ "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#~ msgstr "" +#~ "1-64 мали букви или бројки, без интерпункциски знаци и празни места. " +#~ "Задолжително поле." + +#~ msgid "6 or more characters. Required." +#~ msgstr "Барем 6 знаци. Задолжително поле." + +#~ msgid "Same as password above. Required." +#~ msgstr "Исто што и лозинката погоре. Задолжително поле." + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "1-64 мали букви или бројки. Без интерпукциски знаци и празни места." + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s не е важечка боја!" diff --git a/locale/ml/LC_MESSAGES/statusnet.po b/locale/ml/LC_MESSAGES/statusnet.po index 7f694bd6b3..af2c804132 100644 --- a/locale/ml/LC_MESSAGES/statusnet.po +++ b/locale/ml/LC_MESSAGES/statusnet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:35:05+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:57:30+0000\n" "Language-Team: Malayalam \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ml\n" "X-Message-Group: #out-statusnet-core\n" @@ -74,6 +74,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" 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. @@ -129,8 +132,8 @@ msgstr "അത്തരത്തിൽ ഒരു താളില്ല." #: 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,7 +144,7 @@ msgstr "അത്തരത്തിൽ ഒരു താളില്ല." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -301,9 +304,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." -msgstr "" +msgstr "ഉപയോക്തൃ വിവരങ്ങൾ പുതുക്കാൻ കഴിഞ്ഞില്ല." #. TRANS: Client error displayed if a user profile could not be found. #. TRANS: Client error displayed when a user has no profile. @@ -323,7 +340,8 @@ 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,7 +351,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -355,8 +373,8 @@ msgstr[1] "" #: 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/userdesignsettings.php:201 actions/userdesignsettings.php:211 +#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263 msgid "Unable to save your design settings." msgstr "താങ്കളുടെ രൂപകല്പനാ സജ്ജീകരണങ്ങൾ കാത്തുസൂക്ഷിക്കാനായില്ല." @@ -364,13 +382,17 @@ msgstr "താങ്കളുടെ രൂപകല്പനാ സജ്ജീ #. TRANS: Client error displayed when a database error occurs updating profile colours. #: actions/apiaccountupdateprofilebackgroundimage.php:191 #: actions/apiaccountupdateprofilecolors.php:139 +#: actions/groupdesignsettings.php:266 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. @@ -381,31 +403,38 @@ msgstr "മുഖ്യം" 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 "" -#: 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 "%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 "ഉപയോക്താവിനെ തടയൽ പരാജയപ്പെട്ടു." @@ -451,8 +480,8 @@ msgstr "സന്ദേശത്തിൽ എഴുത്ത് ഇല്ല!" #, 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] "" +msgstr[0] "അത് വളരെ വലുതാണ്. സന്ദേശത്തിന്റെ പരമാവധി വലിപ്പം %d അക്ഷരമാണ്." +msgstr[1] "അത് വളരെ വലുതാണ്. സന്ദേശത്തിന്റെ പരമാവധി വലിപ്പം %d അക്ഷരങ്ങളാണ്." #. TRANS: Client error displayed if a recipient user could not be found (403). #: actions/apidirectmessagenew.php:139 @@ -476,7 +505,7 @@ msgstr "" #: actions/apifavoritecreate.php:108 actions/apifavoritedestroy.php:108 #: actions/apistatusesdestroy.php:121 msgid "No status found with that ID." -msgstr "" +msgstr "ആ ഐ.ഡി.യോട് യോജിക്കുന്ന സ്ഥിതിവിവരം കണ്ടെത്താനായില്ല." #. TRANS: Client error displayed when trying to mark a notice favourite that already is a favourite. #: actions/apifavoritecreate.php:120 @@ -495,7 +524,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:91 msgid "Could not delete favorite." msgstr "" @@ -529,7 +559,7 @@ 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 "" +msgstr "സ്രോതസ്സ് ഉപയോക്താവിനെ നിർണ്ണയിക്കാനായില്ല." #. TRANS: Client error displayed when a target user could not be determined showing friendship. #: actions/apifriendshipsshow.php:140 @@ -541,7 +571,7 @@ msgstr "ലക്ഷ്യമിട്ട ഉപയോക്താവിനെ #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "വിളിപ്പേര് മുമ്പേ ഉപയോഗത്തിലുണ്ട്. മറ്റൊരെണ്ണം ശ്രമിക്കുക." @@ -551,7 +581,7 @@ msgstr "വിളിപ്പേര് മുമ്പേ ഉപയോഗത് #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "സാധുവായ വിളിപ്പേര് അല്ല." @@ -563,7 +593,7 @@ msgstr "സാധുവായ വിളിപ്പേര് അല്ല." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "ഹോംപേജിന്റെ യൂ.ആർ.എൽ. സാധുവല്ല." @@ -573,10 +603,10 @@ msgstr "ഹോംപേജിന്റെ യൂ.ആർ.എൽ. സാധുവ #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." -msgstr "" +msgstr "പൂർണ്ണ നാമത്തിന്റെ നീളം വളരെ കൂടുതലാണ് (പരമാവധി 255 അക്ഷരങ്ങൾ)." #. TRANS: Client error shown when providing too long a description during group creation. #. TRANS: %d is the maximum number of allowed characters. @@ -600,7 +630,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:163 actions/profilesettings.php:269 +#: actions/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 msgid "Location is too long (maximum 255 characters)." msgstr "" @@ -657,22 +687,26 @@ 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 "%2$s എന്ന സംഘത്തിൽ %1$s എന്ന ഉപയോക്താവിനെ ചേർക്കാൻ കഴിഞ്ഞില്ല." @@ -684,9 +718,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." @@ -723,9 +759,9 @@ 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 "" +msgstr "അസാധുവായ അഭ്യർത്ഥനാ ചീട്ട് അല്ലെങ്കിൽ പരിശോധനോപാധി." #. TRANS: Client error given when no oauth_token was passed to the OAuth API. #: actions/apioauthauthorize.php:107 @@ -743,18 +779,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -773,18 +813,21 @@ 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 IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "അപ്രതീക്ഷിത ഫോം സമർപ്പിക്കൽ." @@ -829,9 +872,9 @@ msgstr "അംഗത്വം" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "വിളിപ്പേര്" @@ -839,7 +882,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "രഹസ്യവാക്ക്" @@ -850,7 +893,7 @@ msgstr "രഹസ്യവാക്ക്" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -920,6 +963,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 @@ -939,47 +983,58 @@ msgstr "താങ്കൾക്ക് താങ്കളുടെ തന്ന 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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 "" +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 "" +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 +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 "" +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 "" +msgstr "ക്ലയന്റ് 'status' ചരത്തിന് ഒരു വില നൽകിയിരിക്കണം." #. TRANS: Client error displayed when the parameter "status" is missing. #. TRANS: %d is the maximum number of character for a notice. @@ -988,13 +1043,13 @@ msgstr "" #, 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] "" -msgstr[1] "" +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 "" +msgstr "മാതൃ അറിയിപ്പ് കണ്ടെത്താനായില്ല." #. TRANS: Client error displayed exceeding the maximum notice length. #. TRANS: %d is the maximum lenth for a notice. @@ -1003,7 +1058,9 @@ msgstr "" 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. @@ -1052,7 +1109,7 @@ msgstr "" #: actions/apitimelinepublic.php:193 actions/publicrss.php:103 #, php-format msgid "%s public timeline" -msgstr "%s പൊതു സമയരേഖ" +msgstr "%s സാർവ്വജനിക സമയരേഖ" #. TRANS: Subtitle for site timeline. %s is the StatusNet sitename. #: actions/apitimelinepublic.php:199 actions/publicrss.php:105 @@ -1102,50 +1159,48 @@ 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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, php-format msgid "No content for notice %d." -msgstr "" +msgstr "%d എന്ന അറിയിപ്പിനു ഉള്ളടക്കമില്ല" #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, 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 "" +msgstr "\"%s\" എന്ന യൂ.ആർ.ഐ.യിൽ അറിയിപ്പ് മുമ്പേ നിലവിലുണ്ട്." #. TRANS: Server error for unfinished API method showTrends. #: actions/apitrends.php:85 @@ -1157,96 +1212,129 @@ msgstr "" 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 msgid "No such profile." 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 "മറ്റൊരാളുടെ അംഗത്വം മായ്ക്കാനാവില്ല." + +#. 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 +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 -#, 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 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." +#: 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" -msgstr "" +#, fuzzy +msgid "Cannot delete someone else's favorite." +msgstr "മറ്റൊരാളുടെ അംഗത്വം മായ്ക്കാനാവില്ല." -#: actions/atompubshowmembership.php:81 -msgid "No such group" -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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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" +#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group +#: actions/atompubshowmembership.php:91 +#, fuzzy +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" +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 +#, fuzzy +msgid "Cannot delete someone else's membership." msgstr "മറ്റൊരാളുടെ അംഗത്വം മായ്ക്കാനാവില്ല." #. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID. @@ -1254,42 +1342,39 @@ msgstr "മറ്റൊരാളുടെ അംഗത്വം മായ്ക #: actions/atompubshowsubscription.php:72 #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 -#, php-format -msgid "No such profile id: %d" -msgstr "" +#, 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" +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" +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 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "ഉപയോക്താക്കളെ പിന്തുടരാൻ മാത്രമേ കഴിയൂ." -#: actions/atompubsubscriptionfeed.php:262 -#, php-format -msgid "Unknown profile %s" -msgstr "" +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 +#, fuzzy, php-format +msgid "Unknown profile %s." +msgstr "അജ്ഞാതമായ കുറിപ്പ്." #. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 @@ -1299,10 +1384,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "അങ്ങിനെ വിളിപ്പേര് ഇല്ല." @@ -1333,30 +1419,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "എങ്ങനെയുണ്ടെന്നു കാണുക" @@ -1391,7 +1483,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "" @@ -1410,35 +1503,42 @@ msgstr "അവതാരം അപ്‌ലോഡ് ചെയ്യുന്ന msgid "Avatar deleted." msgstr "" -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "പശ്ചാത്തലം" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1469,14 +1569,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: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:158 actions/deleteuser.php:156 +#: actions/block.php:158 msgid "Do not block this user" msgstr "ഈ ഉപയോക്താവിനെ തടയരുത്" @@ -1488,7 +1587,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "അതെ" @@ -1502,32 +1601,7 @@ 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 "അങ്ങനെ ഒരു സംഘം ഇല്ല." +msgstr "തടയലിന്റെ വിവരങ്ങൾ സേവ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു." #. TRANS: Title for first page with list of users blocked from a group. #. TRANS: %s is a group nickname. @@ -1598,28 +1672,11 @@ 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 msgid "Could not delete address confirmation." -msgstr "" +msgstr "ഇമെയിൽ സ്ഥിരീകരണം നീക്കം ചെയ്യാൻ കഴിഞ്ഞില്ല." #. TRANS: Title for the contact address confirmation action. #: actions/confirmaddress.php:150 @@ -1646,39 +1703,36 @@ 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 "ഉപയോക്താവിനു മാത്രമേ അദ്ദേഹത്തിന്റെ സ്വന്തം സമയരേഖ ചേർക്കാൻ കഴിയൂ." +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 "താങ്കൾക്ക് ഉപയോക്താക്കളെ നീക്കം ചെയ്യാൻ കഴിയില്ല." +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 "" +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 "" +msgstr "പെട്ടിയിൽ \"%s\" എന്നു തന്നെ താങ്കൾ എഴുതി നൽകണം." #. TRANS: Confirmation that a user account has been deleted. #: actions/deleteaccount.php:206 -#, fuzzy msgid "Account deleted." -msgstr "സ്ഥിതിവിവരക്കുറിപ്പ് മായ്ച്ചിരിക്കുന്നു." +msgstr "അംഗത്വം മായ്ച്ചിരിക്കുന്നു." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 -#, fuzzy +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 msgid "Delete account" -msgstr "ഒരംഗത്വമെടുക്കുക" +msgstr "അംഗത്വം മായ്ക്കുക" #. TRANS: Form text for user deletion form. #: actions/deleteaccount.php:279 @@ -1686,6 +1740,7 @@ 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. @@ -1697,23 +1752,23 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 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 +#, php-format msgid "Enter \"%s\" to confirm that you want to delete your account." -msgstr "താങ്കൾക്ക് ഉപയോക്താക്കളെ നീക്കം ചെയ്യാൻ കഴിയില്ല." +msgstr "താങ്കളുടെ അംഗത്വം മായ്ക്കണമെന്ന് സ്ഥിരികരിക്കാൻ \"%s\" നൽകുക." #. TRANS: Button title for user account deletion. #: actions/deleteaccount.php:323 -#, fuzzy msgid "Permanently delete your account" -msgstr "താങ്കൾക്ക് ഉപയോക്താക്കളെ നീക്കം ചെയ്യാൻ കഴിയില്ല." +msgstr "താങ്കളുടെ അംഗത്വം എന്നെന്നേക്കുമായി മായ്ച്ചുകളയുക" #. TRANS: Client error displayed trying to delete an application while not logged in. #: actions/deleteapplication.php:62 @@ -1769,8 +1824,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 "വിളിപ്പേരോ ഐ.ഡി.യോ ഇല്ല." @@ -1818,10 +1875,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1861,19 +1919,30 @@ msgstr "ഈ അറിയിപ്പ് മായ്ക്കരുത്" 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." @@ -1881,78 +1950,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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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 "ദൃശ്യരൂപം ലഭ്യമല്ല: %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 "എസ്.എസ്.എൽ. ലോഗോ" -#: 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 "പശ്ചാത്തല ചിത്രം മാറ്റുക" +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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1962,99 +2055,109 @@ 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 "" +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 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 "സേവ് ചെയ്യുക" - +#. 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:84 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:99 msgid "Add to favorites" msgstr "" -#: actions/doc.php:158 -#, php-format -msgid "No such document \"%s\"" -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 +#, fuzzy, php-format +msgid "No such document \"%s\"." +msgstr "\"%s\" എന്നൊരു രേഖ ഇല്ല" #. TRANS: Title for "Edit application" form. #. TRANS: Form legend. @@ -2115,7 +2218,7 @@ 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 msgid "Organization is too long (maximum 255 characters)." -msgstr "" +msgstr "സംഘടനയുടെ പേരിന്റെ നീളം വളരെക്കൂടുതലാണ് (പരമാവധി 255 അക്ഷരങ്ങൾ)." #: actions/editapplication.php:226 actions/newapplication.php:202 msgid "Organization homepage is required." @@ -2143,14 +2246,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "സംഘത്തിൽ മാറ്റം വരുത്താൻ താങ്കൾ ഒരു കാര്യനിർവ്വാഹകനായിരിക്കണം." @@ -2211,8 +2316,8 @@ msgstr "ഇപ്പോൾ സ്ഥിരീകരിക്കപ്പെട #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "നീക്കം ചെയ്യുക" @@ -2237,15 +2342,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "ഇങ്ങോട്ടുള്ള ഇമെയിൽ" @@ -2256,13 +2361,13 @@ 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:180 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:189 actions/smssettings.php:182 msgid "Make a new email address for posting to; cancels the old one." msgstr "പ്രസിദ്ധീകരിക്കാനായി പുതിയൊരു ഇമെയിൽ വിലാസം സൃഷ്ടിക്കുക; പഴയതു റദ്ദാക്കപ്പെടും." @@ -2277,7 +2382,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "പുതിയത്" @@ -2351,9 +2456,9 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2369,8 +2474,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "റദ്ദാക്കാനായി സ്ഥിരീകരണങ്ങളൊന്നും അവശേഷിക്കുന്നില്ല." @@ -2381,8 +2486,8 @@ 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:468 actions/smssettings.php:413 +msgid "Could not delete email confirmation." msgstr "ഇമെയിൽ സ്ഥിരീകരണം നീക്കം ചെയ്യാൻ കഴിഞ്ഞില്ല." #. TRANS: Message given after successfully canceling e-mail address confirmation. @@ -2401,24 +2506,25 @@ msgstr "അത് താങ്കളുടെ ഇമെയിൽ വിലാസ msgid "The email address was removed." msgstr "ഇമെയിൽ വിലാസം നീക്കം ചെയ്തിരിക്കുന്നു." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." -msgstr "" +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "സ്വീകരിക്കാനുള്ള പുതിയ ഇമെയിൽ വിലാസം കൂട്ടിച്ചേർത്തിരിക്കുന്നു." @@ -2489,11 +2595,11 @@ msgstr "" #: actions/file.php:34 msgid "No notice ID." -msgstr "" +msgstr "അറിയിപ്പിന്റെ ഐ.ഡി. ഇല്ല." #: actions/file.php:38 msgid "No notice." -msgstr "" +msgstr "അറിയിപ്പ് ഇല്ല." #: actions/file.php:42 msgid "No attachments." @@ -2511,13 +2617,13 @@ msgstr "ഈ പ്രതികരണമല്ല പ്രതീക്ഷിച msgid "User being listened to does not exist." msgstr "" -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "" #: actions/finishremotesubscribe.php:99 msgid "That user has blocked you from subscribing." -msgstr "" +msgstr "വരിക്കാരനാകുന്നതിൽ നിന്നും ആ ഉപയോക്താവ് താങ്കളെ തടഞ്ഞിരിക്കുന്നു." #: actions/finishremotesubscribe.php:110 msgid "You are not authorized." @@ -2620,7 +2726,7 @@ msgstr "സംഘത്തിൽ നിന്നും ഉപയോക്താ #: actions/groupbyid.php:74 actions/userbyid.php:70 msgid "No ID." -msgstr "" +msgstr "ഐ.ഡി. ഇല്ല." #: actions/groupdesignsettings.php:68 msgid "You must be logged in to edit a group." @@ -2636,44 +2742,48 @@ 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 -msgid "Couldn't update your design." -msgstr "താങ്കളുടെ രൂപകല്പന പുതുക്കാനായില്ല." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, 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:244 msgid "Upload" msgstr "അപ്‌ലോഡ്" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "വെട്ടിച്ചെറുതാക്കുക" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "ലോഗോ പുതുക്കി." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "ലോഗോ പുതുക്കൽ പരാജയപ്പെട്ടു." @@ -2689,7 +2799,7 @@ msgstr "%s സംഘ അംഗങ്ങൾ" #: actions/groupmembers.php:107 #, php-format msgid "%1$s group members, page %2$d" -msgstr "" +msgstr "%1$s സംഘത്തിലെ അംഗങ്ങൾ, താൾ %2$d" #: actions/groupmembers.php:122 msgid "A list of the users in this group." @@ -2752,8 +2862,13 @@ msgid "" "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 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "പുതിയൊരു സംഘം സൃഷ്ടിക്കുക" @@ -2763,6 +2878,9 @@ msgid "" "Search for groups on %%site.name%% by their name, location, or description. " "Separate the terms by spaces; they must be 3 characters or more." msgstr "" +"%%site.name%% സൈറ്റിൽ അവയുടെ പേരിനേയോ, പ്രദേശത്തിനേയോ, വിവരണത്തിനേയോ അടിസ്ഥാനമാക്കി " +"സംഘങ്ങൾ തിരയുക. ഒന്നിലധികം പദങ്ങൾ ഉണ്ടെങ്കിൽ അവയ്ക്കിടയിൽ ഇട നൽകുക; ഓരോ പദത്തിലും മൂന്നോ " +"അതിലധികമോ അക്ഷരങ്ങൾ ഉണ്ടായിരിക്കണം." #: actions/groupsearch.php:58 msgid "Group search" @@ -2807,14 +2925,14 @@ msgid "Error removing the block." msgstr "തടയൽ നീക്കുന്നതിൽ പിഴവുണ്ടായി." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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](%%" @@ -2825,23 +2943,23 @@ msgstr "" "താഴെ ക്രമീകരിക്കുക." #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "ഐ.എം. വിലാസം" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk address." msgstr "ഇപ്പോഴത്തെ സ്ഥിരീകരിക്കപ്പെട്ട ജാബ്ബർ/ജിറ്റോക് വിലാസം" #. TRANS: Form note in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:124 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2855,100 +2973,104 @@ msgstr "" #. 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." msgstr "" +"ജാബ്ബർ അല്ലെങ്കിൽ ജിറ്റോക് വിലാസം, \"UserName@example.org\" എന്ന രീതിയിൽ. ആദ്യം %s " +"താങ്കളുടെ ഐ.എം. ക്ലയന്റിലോ ജിറ്റോക്കിലോ സുഹൃത്തുക്കളുടെ പട്ടികയിലുണ്ടെന്നുറപ്പാക്കുക." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "ഐ.എം. ക്രമീകരണങ്ങൾ" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "ജാബ്ബർ/ജിറ്റോക് വഴി എനിക്ക് അറിയിപ്പുകൾ അയയ്ക്കുക." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "എന്റെ ജാബ്ബർ/ജിറ്റോക് സ്ഥിതിവിവരം മാറുമ്പോൾ അറിയിപ്പുകൾ പ്രസിദ്ധീകരിക്കുക." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "ക്രമീകരണങ്ങൾ സേവ് ചെയ്തു." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: actions/imsettings.php:304 msgid "No Jabber ID." msgstr "ജാബ്ബർ ഐ.ഡി. അല്ല." #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:320 +#: actions/imsettings.php:312 msgid "Cannot normalize that Jabber ID" msgstr "" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:325 +#: 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 +#: 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 +#: 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 +#: 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 IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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." -msgstr "" +#: actions/imsettings.php:391 +msgid "Could not delete IM confirmation." +msgstr "ഐ.എം. സ്ഥിരീകരണം നീക്കം ചെയ്യാൻ കഴിഞ്ഞില്ല." #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:405 +#: actions/imsettings.php:396 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 +#: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "ഐ.എം. വിലാസം നീക്കം ചെയ്തിരിക്കുന്നു." @@ -2964,7 +3086,7 @@ msgstr "" #: actions/inbox.php:115 msgid "This is your inbox, which lists your incoming private messages." -msgstr "" +msgstr "ഇതാണ് താങ്കളുടെ ഇൻബോക്സ്, താങ്കൾക്ക് വരുന്ന സ്വകാര്യസന്ദേശങ്ങൾ ഇവിടെയാണെത്തുക." #. TRANS: Client error displayed when trying to sent invites while they have been disabled. #: actions/invite.php:40 @@ -2976,7 +3098,7 @@ msgstr "ക്ഷണം പ്രവർത്തന രഹിതമാക്ക #: actions/invite.php:44 #, php-format msgid "You must be logged in to invite other users to use %s." -msgstr "" +msgstr "%s ഉപയോഗിക്കാൻ മറ്റുപയോക്താക്കളെ ക്ഷണിക്കാൻ താങ്കൾ ലോഗിൻ ചെയ്തിരിക്കണം." #. TRANS: Form validation message when providing an e-mail address that does not validate. #. TRANS: %s is an invalid e-mail address. @@ -3029,8 +3151,8 @@ msgstr[1] "" #: actions/invite.php:167 msgid "Invitation sent to the following person:" msgid_plural "Invitations sent to the following people:" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "താഴെക്കൊടുത്തിരിക്കുന്ന വ്യക്തിയെ ക്ഷണിച്ചിരിക്കുന്നു:" +msgstr[1] "താഴെക്കൊടുത്തിരിക്കുന്ന വ്യക്തികളെ ക്ഷണിച്ചിരിക്കുന്നു:" #. TRANS: Generic message displayed after sending out one or more invitations to #. TRANS: people to join a StatusNet site. @@ -3119,131 +3241,145 @@ 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 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 "" +msgstr "അനുമതിപത്ര യൂ.ആർ.എൽ. ശൂന്യമായിരിക്കണം അല്ലെങ്കിൽ സാധുവായ യൂ.ആർ.എൽ. ആയിരിക്കണം." -#: actions/licenseadminpanel.php:187 +#: actions/licenseadminpanel.php:182 msgid "License image must be blank or valid URL." -msgstr "" +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 "അനുമതി സജ്ജീകരണങ്ങൾ സേവ് ചെയ്യുക" @@ -3267,11 +3403,11 @@ msgstr "പ്രവേശിക്കുക" msgid "Login to site" msgstr "സൈറ്റിലേക്ക് പ്രവേശിക്കുക" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "എന്നെ ഓർത്തുവെയ്ക്കുക" -#: 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 "ഭാവിയിൽ സ്വയം ലോഗിൻ ചെയ്യുക; പങ്ക് വെച്ച് ഉപയോഗിക്കുന്ന കമ്പ്യൂട്ടറുകളിൽ പാടില്ല!" @@ -3349,9 +3485,8 @@ 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 "ഈ സൈറ്റിലെ ഉപയോക്താക്കളെ താങ്കൾക്ക് നിശബ്ദരാക്കാനാകില്ല." +msgstr "ഈ സൈറ്റിൽ സംഘങ്ങൾ ഉണ്ടാക്കാൻ താങ്കൾക്ക് അനുമതിയില്ല." #. TRANS: Form instructions for group create form. #: actions/newgroup.php:117 @@ -3541,7 +3676,7 @@ msgstr "" #: actions/oembed.php:168 #, php-format msgid "Content type %s not supported." -msgstr "" +msgstr "%s എന്ന തരം ഉള്ളടക്കം പിന്തുണയ്ക്കുന്നില്ല." #. TRANS: Error message displaying attachments. %s is the site's base URL. #: actions/oembed.php:172 @@ -3587,7 +3722,7 @@ msgstr "" #. TRANS: Tooltip for for dropdown with URL shortener services. #: actions/othersettings.php:122 msgid "Automatic shortening service to use." -msgstr "" +msgstr "ഉപയോഗിക്കാവുന്ന സ്വയംപ്രവർത്തിത ചെറുതാക്കൽ സേവനം." #. TRANS: Label for checkbox. #: actions/othersettings.php:128 @@ -3602,7 +3737,7 @@ 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 "" +msgstr "യൂ.ആർ.എൽ. ചെറുതാക്കൽ സേവനം വളരെ വലുതാണ് (പരമാവധി 50 അക്ഷരങ്ങൾ)." #: actions/otp.php:69 msgid "No user ID specified." @@ -3646,7 +3781,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 "രഹസ്യവാക്ക് മാറ്റൽ" @@ -3654,7 +3790,8 @@ 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 "പുതിയ രഹസ്യവാക്ക്" @@ -3662,7 +3799,7 @@ msgstr "പുതിയ രഹസ്യവാക്ക്" msgid "6 or more characters" msgstr "ആറോ അതിലധികമോ അക്ഷരങ്ങൾ" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "മുകളിലുള്ള രഹസ്യവാക്ക് തന്നെ" @@ -3686,11 +3823,12 @@ msgstr "പഴയ രഹസ്യവാക്ക് തെറ്റാണ്" msgid "Error saving user; invalid." msgstr "" -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "പുതിയ രഹസ്യവാക്ക് സേവ് ചെയ്യാനായില്ല." -#: 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 "രഹസ്യവാക്ക് സേവ് ചെയ്തിരിക്കുന്നു." @@ -3973,7 +4111,7 @@ msgstr "" #: actions/peoplesearch.php:58 msgid "People search" -msgstr "" +msgstr "ആൾക്കാരെ തിരയുക" #: actions/peopletag.php:68 #, php-format @@ -3995,50 +4133,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:433 +#: lib/groupeditform.php:146 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "ഹോംപേജ്" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:125 +#: actions/profilesettings.php:121 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:471 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4046,70 +4185,70 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 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" 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 +#: 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 "" @@ -4117,7 +4256,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 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4125,59 +4264,56 @@ 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 "" +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 actions/tagother.php:178 #, 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." -msgstr "" +#: 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." -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 +#, fuzzy +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." -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:481 actions/restoreaccount.php:60 -#, fuzzy +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 msgid "Restore account" -msgstr "ഒരംഗത്വമെടുക്കുക" +msgstr "അംഗത്വം പുനഃക്രമീകരിക്കുക" #: actions/public.php:83 #, php-format msgid "Beyond the page limit (%s)." -msgstr "" +msgstr "താളിന്റെ പരിധിയ്ക്ക് (%s) പുറത്താണ്." #: actions/public.php:92 msgid "Could not retrieve public stream." @@ -4186,11 +4322,11 @@ msgstr "" #: actions/public.php:130 #, php-format msgid "Public timeline, page %d" -msgstr "" +msgstr "സാർവ്വജനിക സമയരേഖ, താൾ %d" #: actions/public.php:132 lib/publicgroupnav.php:79 msgid "Public timeline" -msgstr "" +msgstr "സാർവ്വജനിക സമയരേഖ" #: actions/public.php:160 msgid "Public Stream Feed (RSS 1.0)" @@ -4248,7 +4384,7 @@ msgstr "" #: actions/publictagcloud.php:65 #, php-format msgid "These are most popular recent tags on %s" -msgstr "" +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 "](" @@ -4280,35 +4416,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." @@ -4316,90 +4460,136 @@ msgstr "" "താങ്കളുടെ രഹസ്യവാക്ക് നഷ്ടപ്പെടുകയോ മറക്കുകയോ ചെയ്താൽ, താങ്കളുടെ അംഗത്വത്തിനൊപ്പം " "സൂക്ഷിച്ചിട്ടുള്ള ഇമെയിൽ വിലാസത്തിലേക്ക് പുതിയ ഒരെണ്ണം അയച്ചു വാങ്ങാനാകുന്നതാണ്." -#: actions/recoverpassword.php:158 -msgid "You have been identified. Enter a new password below. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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: 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 "മുകളിലുള്ള രഹസ്യവാക്ക് തന്നെ" + +#. 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 "" +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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "പുതിയ രഹസ്യവാക്ക് സേവ് ചെയ്യാനായില്ല." + +#. 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 "ഉപയോക്താവിനെ സജ്ജീകരിക്കുന്നതിൽ പിഴവുണ്ടായി." -#: 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 "പുതിയ രഹസ്യവാക്ക് വിജയകരമായി സേവ് ചെയ്തു. താങ്കൾക്ക് ലോഗിൻ ചെയ്യാവുന്നതാണ്." @@ -4415,7 +4605,7 @@ msgstr "ക്ഷമിക്കുക, ക്ഷണത്തിന്റെ ക msgid "Registration successful" msgstr "അംഗത്വമെടുക്കൽ വിജയകരം" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "അംഗത്വമെടുക്കുക" @@ -4441,66 +4631,63 @@ 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 "" - -#: actions/register.php:438 -msgid "6 or more characters. Required." -msgstr "ആറോ അതിലധികമോ അക്ഷരങ്ങൾ. ആവശ്യമാണ്." - -#: actions/register.php:442 -msgid "Same as password above. Required." -msgstr "മുകളിൽ നിലകിയിരിക്കുന്ന രഹസ്യവാക്കിനു തുല്യമായത്. നിർബന്ധമാണ്." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "ആറോ അതിലധികമോ അക്ഷരങ്ങൾ" #. 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 "ഇമെയിൽ" -#: 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 "" +"പുതുക്കൽ വിവരങ്ങൾക്കും, അറിയിപ്പുകൾക്കും, രഹസ്യവാക്ക് വീണ്ടെടുക്കൽ പ്രവർത്തനത്തിനും മാത്രം " +"ഉപയോഗിച്ചത്" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "വലിയ പേര്, താങ്കളുടെ \"യഥാർത്ഥ\" പേര് നൽകാൻ താത്പര്യപ്പെടുന്നു" -#: actions/register.php:463 +#: actions/register.php:462 msgid "URL of your homepage, blog, or profile on another site" msgstr "" +"താങ്കളുടെ ഹോംപേജിന്റെ, ബ്ലോഗിന്റെ അല്ലെങ്കിൽ മറ്റൊരു സൈറ്റിലെ താങ്കളെക്കുറിച്ചുള്ള " +"താളിലേയ്ക്കുള്ള യൂ.ആർ.എൽ." -#: 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 "" +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 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4519,13 +4706,13 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: 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.)" msgstr "" -#: actions/remotesubscribe.php:98 +#: actions/remotesubscribe.php:97 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -4533,72 +4720,73 @@ 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 +#: 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 +#: actions/remotesubscribe.php:133 msgid "URL of your profile on another compatible microblogging service" msgstr "" -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "വരിക്കാരാകുക" -#: actions/remotesubscribe.php:159 +#: 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 "വരിക്കാരനാകുന്നതിൽ നിന്നും ആ ഉപയോക്താവ് താങ്കളെ തടഞ്ഞിരിക്കുന്നു." -#: actions/remotesubscribe.php:183 -msgid "Couldn’t get a request token." -msgstr "" +#: 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 "" +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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "ആവർത്തിച്ചു" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "ആവർത്തിച്ചു!" @@ -4656,22 +4844,19 @@ 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 "ഉപയോക്താവിനു മാത്രമേ അദ്ദേഹത്തിന്റെ സ്വന്തം സമയരേഖ ചേർക്കാൻ കഴിയൂ." +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 "താങ്കൾക്ക് താങ്കളുടെ തന്നെ അറിയിപ്പ് ആവർത്തിക്കാനാവില്ല." +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 "പ്രമാണം അപ്‌ലോഡ് ചെയ്യുക" +msgstr "പ്രമാണമൊന്നും അപ്‌ലോഡ് ചെയ്തിട്ടില്ല." #. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. #: actions/restoreaccount.php:129 lib/mediafile.php:194 @@ -4693,7 +4878,7 @@ 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 "" +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 @@ -4708,13 +4893,12 @@ 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 "" +msgstr "പ്രമാണം അപ്‌ലോഡ് ചെയ്തുകൊണ്ടിരിക്കെ സിസ്റ്റം പിഴവുണ്ടായി." #. TRANS: Client exception thrown when a feed is not an Atom feed. #: actions/restoreaccount.php:207 -#, fuzzy msgid "Not an Atom feed." -msgstr "അംഗം അല്ല" +msgstr "ഒരു ആറ്റം ഫീഡ് അല്ല." #. TRANS: Success message when a feed has been restored. #: actions/restoreaccount.php:241 @@ -4737,7 +4921,6 @@ 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 "പ്രമാണം അപ്‌ലോഡ് ചെയ്യുക" @@ -4789,7 +4972,7 @@ msgstr "" #: actions/sessionsadminpanel.php:199 actions/siteadminpanel.php:292 msgid "Save site settings" -msgstr "" +msgstr "സൈറ്റ് സജ്ജീകരണങ്ങൾ ചേവ് ചെയ്യുക" #: actions/showapplication.php:82 msgid "You must be logged in to view an application." @@ -4817,7 +5000,7 @@ msgstr "സംഘടന" #. 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 "വിവരണം" @@ -4840,8 +5023,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:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "മായ്ക്കുക" @@ -4874,6 +5058,8 @@ msgid "" "Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "signature method." msgstr "" +"ശ്രദ്ധിക്കുക: HMAC-SHA1 ഒപ്പുകളാണ് ഞങ്ങൾ പിന്തുണയ്ക്കുന്നത്. പ്ലെയിൻ-ടെക്സ്റ്റ് ഒപ്പ് രീതി ഞങ്ങൾ " +"പിന്തുണയ്ക്കുന്നില്ല." #: actions/showapplication.php:309 msgid "Are you sure you want to reset your consumer key and secret?" @@ -4932,14 +5118,14 @@ msgstr "താങ്കളാഗ്രഹിക്കുന്നത് പങ #: actions/showgroup.php:75 #, php-format msgid "%s group" -msgstr "" +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 "" +msgstr "%1$s സംഘം, താൾ %2$d" #. TRANS: Group profile header (h2). Text hidden by default. #: actions/showgroup.php:220 @@ -4959,7 +5145,7 @@ msgid "Note" msgstr "കുറിപ്പ്" #. 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 "" @@ -5019,7 +5205,7 @@ msgstr "സൃഷ്ടിച്ചിരിക്കുന്നു" #: actions/showgroup.php:461 msgctxt "LABEL" msgid "Members" -msgstr "" +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, @@ -5078,7 +5264,7 @@ msgstr "" #: actions/shownotice.php:90 msgid "Notice deleted." -msgstr "" +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 @@ -5180,7 +5366,7 @@ msgstr "" #: actions/showstream.php:328 #, php-format msgid "Repeat of %s" -msgstr "" +msgstr "%s എന്ന ഉപയോക്താവിന്റെ ആവർത്തനം" #: actions/silence.php:65 actions/unsilence.php:65 msgid "You cannot silence users on this site." @@ -5196,11 +5382,11 @@ msgstr "ഈ സ്റ്റാറ്റസ്‌നെറ്റ് സൈറ് #: actions/siteadminpanel.php:133 msgid "Site name must have non-zero length." -msgstr "" +msgstr "സൈറ്റിന്റെ പേര് ശൂന്യമായിരിക്കരുത്." #: actions/siteadminpanel.php:141 msgid "You must have a valid contact email address." -msgstr "" +msgstr "താങ്കളെ ബന്ധപ്പെടാനായി സാധുവായ ഇമെയിൽ വിലാസമുണ്ടായിരിക്കണം." #: actions/siteadminpanel.php:159 #, php-format @@ -5209,7 +5395,7 @@ msgstr "അപരിചിതമായ ഭാഷ \"%s\"." #: actions/siteadminpanel.php:165 msgid "Minimum text limit is 0 (unlimited)." -msgstr "" +msgstr "എഴുത്തുകളുടെ ഏറ്റവും ചെറിയ പരിധി 0 ആണ് (പരിധിയില്ല)." #: actions/siteadminpanel.php:171 msgid "Dupe limit must be one or more seconds." @@ -5273,11 +5459,11 @@ msgstr "പരിധികൾ" #: actions/siteadminpanel.php:274 msgid "Text limit" -msgstr "" +msgstr "എഴുത്തിന്റെ പരിധി" #: actions/siteadminpanel.php:274 msgid "Maximum number of characters for notices." -msgstr "" +msgstr "അറിയിപ്പുകളിലെ അക്ഷരങ്ങളുടെ പരമാവധി പരിധി." #: actions/siteadminpanel.php:278 msgid "Dupe limit" @@ -5290,7 +5476,7 @@ msgstr "" #. TRANS: Page title for site-wide notice tab in admin panel. #: actions/sitenoticeadminpanel.php:55 msgid "Site Notice" -msgstr "" +msgstr "സൈറ്റ് അറിയിപ്പ്" #. TRANS: Instructions for site-wide notice tab in admin panel. #: actions/sitenoticeadminpanel.php:66 @@ -5300,7 +5486,7 @@ msgstr "" #. TRANS: Server error displayed when saving a site-wide notice was impossible. #: actions/sitenoticeadminpanel.php:101 msgid "Unable to save site notice." -msgstr "" +msgstr "സൈറ്റ് അറിയിപ്പ് സേവ് ചെയ്യാനായില്ല." #. TRANS: Client error displayed when a site-wide notice was longer than allowed. #: actions/sitenoticeadminpanel.php:112 @@ -5310,7 +5496,7 @@ msgstr "" #. TRANS: Label for site-wide notice text field in admin panel. #: actions/sitenoticeadminpanel.php:176 msgid "Site notice text" -msgstr "" +msgstr "സൈറ്റ് അറിയിപ്പ് എഴുത്ത്" #. TRANS: Tooltip for site-wide notice text field in admin panel. #: actions/sitenoticeadminpanel.php:179 @@ -5320,144 +5506,148 @@ msgstr "" #. TRANS: Title for button to save site notice in admin panel. #: actions/sitenoticeadminpanel.php:201 msgid "Save site notice" -msgstr "" +msgstr "സൈറ്റ് അറിയിപ്പ് സേവ് ചെയ്യുക" #. TRANS: Title for SMS settings. -#: actions/smssettings.php:59 +#: actions/smssettings.php:57 msgid "SMS settings" -msgstr "" +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 "" +msgstr "ഇപ്പോഴത്തെ സ്ഥിരീകരിച്ച എസ്.എം.എസ്. സജ്ജമായ ഫോൺ നമ്പർ." #. TRANS: Form guide in IM settings form. -#: actions/smssettings.php:133 +#: actions/smssettings.php:129 msgid "Awaiting confirmation on this phone number." -msgstr "" +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 "" +msgstr "എസ്.എം.എസ്. ഫോൺ നമ്പർ." #. 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 "" #. TRANS: Form legend for SMS preferences form. -#: actions/smssettings.php:195 +#: actions/smssettings.php:191 msgid "SMS preferences" -msgstr "" +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 "" +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 "" +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 "" +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 "" +msgstr "അത് തെറ്റായ സ്ഥിരീകരണ സംഖ്യയാണ്." #. TRANS: Message given after successfully canceling SMS phone number confirmation. -#: actions/smssettings.php:427 +#: actions/smssettings.php:418 msgid "SMS confirmation cancelled." -msgstr "" +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 "" +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 "" +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 " @@ -5465,9 +5655,9 @@ msgid "" msgstr "" #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" -msgstr "" +msgstr "യാതൊരു കോഡും ചേർത്തിട്ടില്ല" #. TRANS: Menu item for site administration #: actions/snapshotadminpanel.php:54 actions/snapshotadminpanel.php:196 @@ -5517,7 +5707,7 @@ msgstr "" #: actions/snapshotadminpanel.php:226 msgid "Report URL" -msgstr "" +msgstr "യൂ.ആർ.എൽ. അറിയിക്കുക" #: actions/snapshotadminpanel.php:227 msgid "Snapshots will be sent to this URL" @@ -5688,7 +5878,7 @@ msgstr "" #: actions/tagother.php:65 #, php-format msgid "Tag %s" -msgstr "" +msgstr "റ്റാഗ് %s" #: actions/tagother.php:77 lib/userprofile.php:76 msgid "User profile" @@ -5714,17 +5904,13 @@ msgid "" "You can only tag people you are subscribed to or who are subscribed to you." msgstr "" -#: actions/tagother.php:200 -msgid "Could not save tags." -msgstr "" - #: actions/tagother.php:236 msgid "Use this form to add tags to your subscribers or subscriptions." msgstr "" #: actions/tagrss.php:35 msgid "No such tag." -msgstr "" +msgstr "അത്തരത്തിൽ ഒരു റ്റാഗില്ല." #: actions/unblock.php:59 msgid "You haven't blocked that user." @@ -5937,18 +6123,18 @@ 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 "" @@ -6098,12 +6284,12 @@ msgstr "പ്രമാണത്തിന്റെ പേര് അസാധു #. TRANS: Exception thrown when joining a group fails. #: classes/Group_member.php:51 msgid "Group join failed." -msgstr "" +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 "" +msgstr "സംഘത്തിന്റെ ഭാഗമല്ല." #. TRANS: Exception thrown when trying to leave a group fails. #: classes/Group_member.php:72 @@ -6535,7 +6721,7 @@ msgstr "തിരയുക" #. TRANS: Menu item for site administration #: lib/action.php:620 lib/adminpanelaction.php:387 msgid "Site notice" -msgstr "" +msgstr "സൈറ്റ് അറിയിപ്പ്" #. TRANS: DT element for local views block. String is hidden in default CSS. #: lib/action.php:687 @@ -6545,7 +6731,7 @@ msgstr "" #. TRANS: DT element for page notice. String is hidden in default CSS. #: lib/action.php:757 msgid "Page notice" -msgstr "" +msgstr "താളിലെ അറിയിപ്പ്" #. TRANS: DT element for secondary navigation menu. String is hidden in default CSS. #: lib/action.php:858 @@ -6682,9 +6868,9 @@ msgstr "" #. TRANS: Client exception thrown when using an unknown verb for the activity importer. #: lib/activityimporter.php:81 -#, fuzzy, php-format +#, php-format msgid "Unknown verb: \"%s\"." -msgstr "അപരിചിതമായ ഭാഷ \"%s\"." +msgstr "അപരിചിതമായ ക്രിയ: \"%s\"." #. TRANS: Client exception thrown when trying to force a subscription for an untrusted user. #: lib/activityimporter.php:107 @@ -6705,7 +6891,7 @@ 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 "" +msgstr "ഈ പ്രവൃത്തി ഞങ്ങളുടെ ഒരുപയോക്താവ് ചെയ്തതാണെന്ന് തോന്നുന്നില്ല." #. TRANS: Client exception thrown when trying to join a remote group that is not a group. #: lib/activityimporter.php:154 @@ -6714,9 +6900,8 @@ 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 "താങ്കൾ ആ സംഘത്തിൽ മുമ്പേ തന്നെ അംഗമാണ്." +msgstr "ഉപയോക്താവ് ഈ സംഘത്തിൽ മുമ്പേ തന്നെ അംഗമാണ്." #. TRANS: Client exception thrown when trying to overwrite the author information for a non-trusted user during import. #: lib/activityimporter.php:207 @@ -6726,9 +6911,9 @@ 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 +#, php-format msgid "No content for notice %s." -msgstr "താങ്കൾക്ക് താങ്കളുടെ തന്നെ അറിയിപ്പ് ആവർത്തിക്കാനാവില്ല." +msgstr "ഉള്ളടക്കമൊന്നും %s എന്ന അറിയിപ്പിൽ നൽകിയിട്ടില്ല." #. TRANS: Client exception thrown when there is no source attribute. #: lib/activityutils.php:200 @@ -6769,7 +6954,7 @@ msgstr "" #. TRANS: the admin panel Design. #: lib/adminpanelaction.php:274 msgid "Unable to delete design setting." -msgstr "" +msgstr "രൂപകല്പനാ സജ്ജീകരണങ്ങൾ മായ്ക്കാൻ കഴിഞ്ഞില്ല." #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:337 @@ -6877,22 +7062,25 @@ 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 "" @@ -7014,9 +7202,8 @@ 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 "ഈ സംഘത്തെ മായ്ക്കരുത്" +msgstr "ഈ മാർഗ്ഗം ഉപയോഗിക്കരുത്!" #. TRANS: DT element label in attachment list item. #: lib/attachmentlist.php:294 @@ -7346,7 +7533,7 @@ msgstr[1] "" #. TRANS: any group subscriptions. #: lib/command.php:884 msgid "You are not a member of any groups." -msgstr "" +msgstr "താങ്കൾ ഒരു സംഘത്തിലേയും അംഗമല്ല." #. TRANS: Text shown after requesting groups a user is subscribed to. #. TRANS: This message supports plural forms. This message is followed by a @@ -7354,8 +7541,8 @@ msgstr "" #: 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] "" +msgstr[0] "താങ്കൾ ഈ സംഘത്തിലെ അംഗമാണ്:" +msgstr[1] "താങ്കൾ ഈ സംഘങ്ങളിലെ അംഗമാണ്:" #. TRANS: Help text for commands. Do not translate the command names themselves; they are fixed strings. #: lib/command.php:904 @@ -7401,24 +7588,24 @@ msgid "" msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 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:153 +#: lib/common.php:158 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 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "" @@ -7448,7 +7635,7 @@ msgstr "" #: lib/connectsettingsaction.php:120 msgctxt "MENU" msgid "Connections" -msgstr "" +msgstr "ബന്ധങ്ങൾ" #. TRANS: Tooltip for connected applications (Connections through OAuth) menu item. #: lib/connectsettingsaction.php:122 @@ -7483,11 +7670,21 @@ 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: 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 @@ -7519,9 +7716,8 @@ msgid "FOAF" msgstr "" #: lib/feedimporter.php:75 -#, fuzzy msgid "Not an atom feed." -msgstr "അംഗം അല്ല" +msgstr "ഒരു ആറ്റം ഫീഡ് അല്ല." #: lib/feedimporter.php:82 msgid "No author in the feed." @@ -7565,31 +7761,27 @@ 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 "" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 msgid "URL of the homepage or blog of the group or topic." msgstr "" -#: lib/groupeditform.php:168 +#: lib/groupeditform.php:160 msgid "Describe the group or topic" msgstr "സംഘത്തെക്കുറിച്ചോ വിഷയത്തെക്കുറിച്ചോ വിവരിക്കുക" -#: 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: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." +msgstr[0] "സംഘത്തെക്കുറിച്ചോ വിഷയത്തെക്കുറിച്ചോ വിവരിക്കുക" +msgstr[1] "സംഘത്തെക്കുറിച്ചോ വിഷയത്തെക്കുറിച്ചോ വിവരിക്കുക" -#: lib/groupeditform.php:182 +#: lib/groupeditform.php:174 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." msgstr "" -#: lib/groupeditform.php:190 +#: lib/groupeditform.php:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -7707,7 +7899,7 @@ msgstr "" #: lib/imagefile.php:95 msgid "Partial upload." -msgstr "" +msgstr "ഭാഗിക അപ്‌ലോഡ്." #: lib/imagefile.php:111 msgid "Not an image or corrupt file." @@ -7840,7 +8032,7 @@ msgstr "" #: lib/mail.php:315 #, php-format msgid "New email address for posting to %s" -msgstr "" +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 @@ -7908,7 +8100,7 @@ msgstr "" #: lib/mail.php:547 #, php-format msgid "New private message from %s" -msgstr "" +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, @@ -7974,13 +8166,16 @@ msgid "" "\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:680 #, php-format msgid "%1$s (@%2$s) sent a notice to your attention" -msgstr "" +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, @@ -8051,7 +8246,7 @@ msgstr "ക്ഷമിക്കുക, ഇങ്ങോട്ട് ഇമെയ #: lib/mailhandler.php:229 #, php-format msgid "Unsupported message type: %s" -msgstr "" +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 @@ -8094,7 +8289,7 @@ msgstr "" #: lib/messageform.php:120 msgid "Send a direct notice" -msgstr "" +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 @@ -8207,7 +8402,7 @@ msgstr "" #: lib/noticelist.php:619 msgid "Repeated by" -msgstr "" +msgstr "ആവർത്തിച്ചത്" #: lib/noticelist.php:646 msgid "Reply to this notice" @@ -8219,7 +8414,7 @@ msgstr "മറുപടി" #: lib/noticelist.php:691 msgid "Notice repeated" -msgstr "" +msgstr "അറിയിപ്പ് ആവർത്തിച്ചിരിക്കുന്നു" #: lib/nudgeform.php:116 msgid "Nudge this user" @@ -8248,7 +8443,7 @@ msgstr "" #. TRANS: Exception thrown when a notice is denied because it has been sent before. #: lib/oauthstore.php:362 msgid "Duplicate notice." -msgstr "" +msgstr "അറിയിപ്പിന്റെ പകർപ്പ്." #: lib/oauthstore.php:507 msgid "Couldn't insert new subscription." @@ -8272,7 +8467,7 @@ msgstr "ഇൻബോക്സ്" #: lib/personalgroupnav.php:129 msgid "Your incoming messages" -msgstr "" +msgstr "താങ്കൾക്ക് വരുന്ന സന്ദേശങ്ങൾ" #: lib/personalgroupnav.php:133 msgid "Outbox" @@ -8302,19 +8497,19 @@ msgstr "" #: lib/profileaction.php:144 lib/profileaction.php:214 lib/subgroupnav.php:90 msgid "Subscribers" -msgstr "" +msgstr "വരിക്കാർ" #: lib/profileaction.php:161 msgid "All subscribers" -msgstr "" +msgstr "എല്ലാ വരിക്കാരും" #: lib/profileaction.php:191 msgid "User ID" -msgstr "" +msgstr "ഉപയോക്തൃ ഐ.ഡി" #: lib/profileaction.php:196 msgid "Member since" -msgstr "" +msgstr "അംഗമായത്" #. TRANS: Average count of posts made per day since account registration #: lib/profileaction.php:235 @@ -8323,7 +8518,7 @@ msgstr "ദൈനിക ശരാശരി" #: lib/profileaction.php:264 msgid "All groups" -msgstr "" +msgstr "എല്ലാ സംഘങ്ങളും" #: lib/profileformaction.php:123 msgid "Unimplemented method." @@ -8335,7 +8530,7 @@ msgstr "സാർവ്വജനികം" #: lib/publicgroupnav.php:82 msgid "User groups" -msgstr "" +msgstr "ഉപയോക്തൃ സംഘങ്ങൾ" #: lib/publicgroupnav.php:84 lib/publicgroupnav.php:85 msgid "Recent tags" @@ -8411,15 +8606,15 @@ msgstr "ജനങ്ങൾ" #: lib/searchgroupnav.php:81 msgid "Find people on this site" -msgstr "" +msgstr "ഈ സൈറ്റിലെ ആൾക്കാരെ കണ്ടെത്തുക" #: lib/searchgroupnav.php:83 msgid "Find content of notices" -msgstr "" +msgstr "അറിയിപ്പുകളുടെ ഉള്ളടക്കം കണ്ടെത്തുക" #: lib/searchgroupnav.php:85 msgid "Find groups on this site" -msgstr "" +msgstr "ഈ സൈറ്റിലെ സംഘങ്ങൾ കണ്ടെത്തുക" #: lib/section.php:89 msgid "Untitled section" @@ -8478,7 +8673,7 @@ msgstr "ഒന്നുമില്ല" #. TRANS: Server exception displayed if a theme name was invalid. #: lib/theme.php:74 msgid "Invalid theme name." -msgstr "" +msgstr "ദൃശ്യരൂപത്തിന്റെ പേര് അസാധുവാണ്." #: lib/themeuploader.php:50 msgid "This server cannot handle theme uploads without ZIP support." @@ -8486,13 +8681,13 @@ msgstr "" #: lib/themeuploader.php:58 lib/themeuploader.php:61 msgid "The theme file is missing or the upload failed." -msgstr "" +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 "" +msgstr "ദൃശ്യരൂപം സേവ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു." #: lib/themeuploader.php:147 msgid "Invalid theme: bad directory structure." @@ -8576,7 +8771,7 @@ msgstr "" #: lib/userprofile.php:236 lib/userprofile.php:250 msgid "User actions" -msgstr "" +msgstr "ഉപയോക്തൃ പ്രവൃത്തികൾ" #: lib/userprofile.php:239 msgid "User deletion in progress..." @@ -8592,7 +8787,7 @@ msgstr "തിരുത്തുക" #: lib/userprofile.php:289 msgid "Send a direct message to this user" -msgstr "" +msgstr "ഈ ഉപയോക്താവിന് നേരിട്ട് സന്ദേശമയയ്ക്കുക" #: lib/userprofile.php:290 msgid "Message" @@ -8600,7 +8795,7 @@ msgstr "സന്ദേശം" #: lib/userprofile.php:331 msgid "Moderate" -msgstr "" +msgstr "മാധ്യസ്ഥം വഹിക്കുക" #: lib/userprofile.php:369 msgid "User role" @@ -8678,14 +8873,9 @@ msgstr[1] "ഏകദേശം %d മാസം മുമ്പ്" 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 "" @@ -8720,3 +8910,21 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "അത്തരത്തിൽ ഒരു സംഘം ഇല്ല" + +#~ msgid "HTTP method not supported" +#~ msgstr "എച്ച്.റ്റി.റ്റി.പി. രീതി പിന്തുണയ്ക്കുന്നില്ല." + +#~ msgid "Reset" +#~ msgstr "പുനഃക്രമീകരിക്കുക" + +#~ msgid "6 or more characters. Required." +#~ msgstr "ആറോ അതിലധികമോ അക്ഷരങ്ങൾ. ആവശ്യമാണ്." + +#~ msgid "Same as password above. Required." +#~ msgstr "മുകളിൽ നിലകിയിരിക്കുന്ന രഹസ്യവാക്കിനു തുല്യമായത്. നിർബന്ധമാണ്." + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s ഒരു സാധുവായ നിറമല്ല!" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index c9511b5886..76c7252f28 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:35:14+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:57:39+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 (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -76,6 +76,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Lagre" @@ -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. @@ -131,8 +134,8 @@ msgstr "Ingen slik side." #: 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,7 +146,7 @@ msgstr "Ingen slik side." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -309,7 +312,21 @@ 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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "Kunne ikke oppdatere bruker." @@ -331,7 +348,8 @@ 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 +#. 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 "Kunne ikke lagre profil." @@ -341,7 +359,7 @@ msgstr "Kunne 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -367,8 +385,8 @@ msgstr[1] "" #: 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/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." @@ -376,13 +394,18 @@ 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 +#: actions/groupdesignsettings.php:266 actions/userdesignsettings.php:179 msgid "Could not update your design." 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 "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. @@ -393,31 +416,38 @@ msgstr "Hoved" 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 abonnementer" -#: 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 "%s favoritter" -#: 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 "%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." @@ -508,7 +538,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:91 msgid "Could not delete favorite." msgstr "Kunne ikke slette favoritt." @@ -554,7 +585,7 @@ msgstr "Kunne ikke finne målbruker." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Det nicket er allerede i bruk. Prøv et annet." @@ -564,7 +595,7 @@ msgstr "Det nicket er allerede i bruk. Prøv et annet." #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Ugyldig nick." @@ -576,7 +607,7 @@ msgstr "Ugyldig nick." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "Hjemmesiden er ikke en gyldig URL." @@ -586,7 +617,7 @@ msgstr "Hjemmesiden er ikke en gyldig 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:151 actions/profilesettings.php:256 +#: actions/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." msgstr "Fullt navn er for langt (maks 255 tegn)." @@ -613,7 +644,7 @@ msgstr[1] "Beskrivelsen er for lang (maks %d tegn)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 msgid "Location is too long (maximum 255 characters)." msgstr "Plasseringen er for lang (maks 255 tegn)." @@ -670,22 +701,26 @@ 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." @@ -697,9 +732,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." @@ -736,7 +773,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." @@ -759,18 +796,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -789,18 +830,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Uventet skjemainnsending." @@ -851,9 +895,9 @@ msgstr "Konto" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Nick" @@ -861,7 +905,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Passord" @@ -872,7 +916,7 @@ msgstr "Passord" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -946,6 +990,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 @@ -965,39 +1010,51 @@ msgstr "Kan ikke gjenta din egen notis." msgid "Already repeated that notice." msgstr "Allerede gjentatt den notisen." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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-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 #, php-format 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 "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 +#. 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 "Slettet notis %d" @@ -1128,51 +1185,49 @@ msgstr "Bare brukeren kan legge til sin egen tidslinje." msgid "Only accept AtomPub for Atom feeds." 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 "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 "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 "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:334 +#: actions/apitimelineuser.php:336 msgid "Can only handle POST activities." 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:345 +#: actions/apitimelineuser.php:347 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "Kan ikke håndtere handlingsobjekttype «%s»." #. TRANS: Client error displayed when posting a notice without content through the API. -#: actions/apitimelineuser.php:378 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, php-format msgid "No content for notice %d." msgstr "Inget innhold for notis %d." #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, php-format msgid "Notice with URI \"%s\" already exists." msgstr "Notis med URI «%s» finnes allerede." -#: actions/apitimelineuser.php:437 -#, php-format -msgid "AtomPub post with unknown attention URI %s" -msgstr "AtomPub-innlegg med ukjent oppmerksomhets-URI %s" - #. TRANS: Server error for unfinished API method showTrends. #: actions/apitrends.php:85 msgid "API method under construction." @@ -1183,105 +1238,136 @@ msgstr "API-metode under utvikling." msgid "User not found." msgstr "Bruker ikke funnet." -#: actions/atompubfavoritefeed.php:70 -msgid "No such profile" -msgstr "Ingen slik profil" +#. 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 +msgid "No such profile." +msgstr "Ingen slik profil." -#: actions/atompubfavoritefeed.php:145 -#, php-format -msgid "Notices %s has favorited to on %s" -msgstr "Notiser som %s har lagt til som favoritt på %s" - -#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222 -msgid "Can't add someone else's subscription" +#. 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 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 +#. TRANS: Client exception thrown when trying favorite a notice without content. +#: actions/atompubfavoritefeed.php:259 msgid "Unknown note." 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 -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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "API-metode ikke funnet!" - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "" +msgid "Cannot delete someone else's membership." +msgstr "Kunne ikke slette favoritt." #. 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. @@ -1289,40 +1375,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +msgid "Cannot delete someone else's subscription." msgstr "Kunne ikke slette favoritt." -#: actions/atompubsubscriptionfeed.php:150 -#, fuzzy, php-format -msgid "People %s has subscribed to on %s" -msgstr "Fjernabonner" - #. TRANS: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 #, fuzzy, php-format -msgid "Unknown profile %s" +msgid "Unknown profile %s." msgstr "Ukjent filtype" #. TRANS: Client error displayed trying to get a non-existing attachment. @@ -1333,10 +1416,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Ingen kallenavn." @@ -1367,30 +1451,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Forhåndsvis" @@ -1425,7 +1515,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Mistet våre fildata." @@ -1444,35 +1535,42 @@ msgstr "Oppdatering av avatar mislyktes." msgid "Avatar deleted." msgstr "Avatar slettet." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "Bakgrunn" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1506,14 +1604,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Ikke blokker denne brukeren" @@ -1525,7 +1622,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Ja" @@ -1541,31 +1638,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 @@ -1635,23 +1707,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 @@ -1712,7 +1767,8 @@ 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 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Opprett en konto" @@ -1734,8 +1790,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Bekreft" @@ -1810,8 +1867,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." @@ -1862,10 +1921,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1905,19 +1965,30 @@ msgstr "Ikke slett denne notisen" 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." @@ -1925,78 +1996,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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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 +#. TRANS: Client error displayed when an SSL logo URL is invalid. +#: actions/designadminpanel.php:333 msgid "Invalid SSL 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 +#. 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 "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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2005,98 +2100,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 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 "Gjenopprett standardutseende" +#. 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 "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 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 "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:84 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:99 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. @@ -2186,14 +2291,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "Du må være en administrator for å redigere gruppen." @@ -2254,8 +2361,8 @@ msgstr "Nåværende bekreftede e-postadresse" #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Fjern" @@ -2280,15 +2387,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "innkommende e-post" @@ -2299,13 +2406,13 @@ 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:180 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:189 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." @@ -2318,7 +2425,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Ny" @@ -2392,9 +2499,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2409,8 +2517,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Ingen ventende bekreftelse å avbryte." @@ -2421,8 +2529,9 @@ 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:468 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. @@ -2441,24 +2550,25 @@ msgstr "Det er ikke din e-postadresse." msgid "The email address was removed." msgstr "E-postadressen ble fjernet." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Ny innkommende e-postadresse lagt til." @@ -2557,7 +2667,7 @@ msgstr "Forventet ikke denne responsen!" msgid "User being listened to does not exist." msgstr "Brukeren som lyttes til finnes ikke." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Du kan bruke det lokale abonnementet!" @@ -2687,44 +2797,46 @@ 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." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, 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:244 msgid "Upload" msgstr "Last opp" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Beskjær" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "Logo oppdatert." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "Kunne ikke oppdatere logo." @@ -2809,7 +2921,7 @@ 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 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Opprett en ny gruppe" @@ -2865,14 +2977,14 @@ msgid "Error removing the block." msgstr "Feil under oppheving av blokkering." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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 +#: actions/imsettings.php:71 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2882,23 +2994,23 @@ msgstr "" "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 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "Direktemeldingsadresse" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2912,7 +3024,7 @@ msgstr "" #. 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 " @@ -2922,63 +3034,63 @@ msgstr "" "vennelisten din i direktemeldingsklienten din eller på GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "Direktemeldingsinnstillinger" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Send meg notiser gjennom Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Post en notis når min Jabber/Gtalk-status endres." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 msgid "Send me replies through Jabber/GTalk 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk 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 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Innstillinger lagret." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 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 +#: actions/imsettings.php:317 msgid "Not a valid Jabber ID" msgstr "Ugyldig Jabber ID" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:329 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2988,28 +3100,29 @@ msgstr "" "godkjenne %s for å sende meldinger til deg." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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." +#: 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 +#: actions/imsettings.php:396 msgid "IM confirmation cancelled." msgstr "Direktemeldingsbekreftelse avbrutt." #. TRANS: Message given trying to remove an IM 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "Direktemeldingsadressen ble fjernet." @@ -3206,130 +3319,144 @@ 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" @@ -3353,11 +3480,11 @@ msgstr "Logg inn" msgid "Login to site" msgstr "Logg inn på nettstedet" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Husk meg" -#: 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 "" "Logg inn automatisk i framtiden. Ikke for datamaskiner du deler med andre!" @@ -3746,7 +3873,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" @@ -3754,7 +3882,8 @@ 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" @@ -3762,7 +3891,7 @@ msgstr "Nytt passord" msgid "6 or more characters" msgstr "6 eller flere tegn" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Samme som passord ovenfor" @@ -3786,11 +3915,12 @@ msgstr "Feil gammelt passord" msgid "Error saving user; invalid." msgstr "Feil ved lagring av bruker; ugyldig." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Klarer ikke å lagre nytt passord." -#: 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 "Passordet ble lagret" @@ -4099,12 +4229,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 "" @@ -4112,39 +4242,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:433 +#: lib/groupeditform.php:146 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Hjemmesiden" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:125 +#: actions/profilesettings.php:121 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:471 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4152,44 +4283,44 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "Tagger" #. 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 "" @@ -4197,27 +4328,27 @@ msgstr "" "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 +#: actions/profilesettings.php:171 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 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -4226,7 +4357,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 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4234,51 +4365,49 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Opprett en konto" @@ -4402,35 +4531,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." @@ -4438,67 +4575,101 @@ 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. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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: 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 "Samme som passord ovenfor" + +#. 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." @@ -4506,23 +4677,34 @@ 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 +#. 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Klarer ikke å lagre nytt passord." + +#. 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 "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." @@ -4538,7 +4720,7 @@ msgstr "Beklager, ugyldig invitasjonskode." msgid "Registration successful" msgstr "Registrering vellykket" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrer" @@ -4566,59 +4748,52 @@ 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." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 eller flere tegn" #. 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 "E-post" -#: 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 "Kun brukt for oppdateringer, kunngjøringer og passordgjenoppretting" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Lengre navn, helst ditt \"ekte\" navn" -#: actions/register.php:463 +#: actions/register.php:462 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: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 "Alle rettigheter reservert." #. 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, " @@ -4627,7 +4802,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:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4660,7 +4835,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:612 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -4668,7 +4843,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." @@ -4680,75 +4855,78 @@ 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 +#: actions/remotesubscribe.php:129 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 +#: actions/remotesubscribe.php:133 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 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Abonner" -#: actions/remotesubscribe.php:159 +#: actions/remotesubscribe.php:158 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Gjentatt" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Gjentatt!" @@ -4971,7 +5149,7 @@ msgstr "Organisasjon" #. 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 "Beskrivelse" @@ -4994,8 +5172,9 @@ msgstr "Programhandlinger" msgid "Reset key & secret" msgstr "Tilbakestill nøkkel & hemmelighet" +#. TRANS: Title of form for deleting a user. #: actions/showapplication.php:252 lib/deletegroupform.php:121 -#: lib/deleteuserform.php:66 lib/noticelist.php:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Slett" @@ -5124,7 +5303,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Alias" @@ -5512,70 +5691,70 @@ 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 +#: actions/smssettings.php:152 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." @@ -5584,32 +5763,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." @@ -5618,39 +5797,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 " @@ -5661,7 +5840,7 @@ msgstr "" "fortell oss." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Ingen kode skrevet inn" @@ -5922,10 +6101,6 @@ 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." @@ -6155,12 +6330,12 @@ 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 " @@ -6169,7 +6344,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." @@ -7123,23 +7298,27 @@ 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 "" @@ -7665,26 +7844,26 @@ msgid "" msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 #, fuzzy msgid "Go to the installer." msgstr "Log inn på nettstedet" @@ -7756,12 +7935,21 @@ 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: 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 @@ -7845,33 +8033,29 @@ msgstr "Gå" msgid "Grant this user the \"%s\" role" msgstr "Innvilg denne brukeren rollen «%s»" -#: lib/groupeditform.php:154 -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:155 #, 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:160 msgid "Describe the group or topic" msgstr "Beskriv programmet ditt" -#: 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] "Beskriv programmet ditt med %d tegn" msgstr[1] "Beskriv programmet ditt med %d tegn" -#: lib/groupeditform.php:182 +#: lib/groupeditform.php:174 #, 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:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9081,14 +9265,9 @@ msgstr[1] "" 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." @@ -9124,3 +9303,30 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "Ingen slik gruppe." + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "HTTP-metoden støttes ikke." + +#~ msgid "Reset" +#~ msgstr "Nullstill" + +#~ 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." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 eller flere tegn. Påkrevd." + +#~ msgid "Same as password above. Required." +#~ msgstr "Samme som passord over. Kreves." + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "1-64 små bokstaver eller tall, ingen punktum eller mellomrom" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s er ikke en gyldig farge." diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index 8d606109ec..b511008396 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-15 00:20+0000\n" -"PO-Revision-Date: 2011-01-15 00:22:50+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:57:32+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80364); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-01-15 00:06:50+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -77,6 +77,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Opslaan" @@ -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. @@ -132,8 +135,8 @@ msgstr "Deze pagina bestaat niet." #: 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,7 +147,7 @@ msgstr "Deze pagina bestaat niet." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -315,7 +318,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: 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." @@ -337,7 +354,8 @@ 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." @@ -347,7 +365,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -373,8 +391,8 @@ msgstr[1] "" #: 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/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." @@ -382,13 +400,17 @@ 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/groupdesignsettings.php:266 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. @@ -399,31 +421,38 @@ msgstr "Hoofdmenu" 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 +#. 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 van %s" -#: 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 "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." @@ -515,7 +544,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:91 msgid "Could not delete favorite." msgstr "" "Het was niet mogelijk deze mededeling van uw favorietenlijst te verwijderen." @@ -564,7 +594,7 @@ msgstr "Het was niet mogelijk de doelgebruiker te vinden." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "" @@ -575,7 +605,7 @@ msgstr "" #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Ongeldige gebruikersnaam!" @@ -587,7 +617,7 @@ msgstr "Ongeldige gebruikersnaam!" #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "De thuispagina is geen geldige URL." @@ -597,7 +627,7 @@ msgstr "De thuispagina is geen geldige 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:151 actions/profilesettings.php:256 +#: actions/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." msgstr "De volledige naam is te lang (maximaal 255 tekens)." @@ -624,7 +654,7 @@ msgstr[1] "De beschrijving is te lang (maximaal %d tekens)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 msgid "Location is too long (maximum 255 characters)." msgstr "De locatie is te lang (maximaal 255 tekens)." @@ -681,22 +711,26 @@ 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." @@ -708,9 +742,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." @@ -747,7 +783,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." @@ -767,18 +803,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -801,18 +841,21 @@ 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 IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Het formulier is onverwacht ingezonden." @@ -863,9 +906,9 @@ msgstr "Gebruikersgegevens" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Gebruikersnaam" @@ -873,7 +916,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Wachtwoord" @@ -884,7 +927,7 @@ msgstr "Wachtwoord" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -958,6 +1001,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 @@ -977,39 +1021,50 @@ msgstr "U kunt uw eigen mededeling niet herhalen." msgid "Already repeated that notice." msgstr "U hebt die mededeling al herhaald." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" #. 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" @@ -1145,51 +1200,49 @@ msgstr "Gebruikers kunnen alleen zelf aan hun eigen tijdlijn toevoegen." msgid "Only accept AtomPub for Atom feeds." msgstr "Alleen AtomPub voor Atomfeeds accepteren." -#: 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 "Het Atombericht mag niet leeg zijn." -#: 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 "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:334 +#: actions/apitimelineuser.php:336 msgid "Can only handle POST activities." 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:345 +#: actions/apitimelineuser.php:347 #, php-format msgid "Cannot handle activity object type \"%s\"." 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:378 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, php-format msgid "No content for notice %d." msgstr "Geen inhoud voor mededeling %d." #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, php-format msgid "Notice with URI \"%s\" already exists." msgstr "De mededeling met URI \"%s\" bestaat al." -#: actions/apitimelineuser.php:437 -#, 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." @@ -1200,101 +1253,132 @@ msgstr "De API-functie is in bewerking." msgid "User not found." msgstr "De pagina is niet aangetroffen." -#: actions/atompubfavoritefeed.php:70 -msgid "No such profile" -msgstr "Het profiel bestaat niet" +#. 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 +msgid "No such profile." +msgstr "Het profiel bestaat niet." -#: actions/atompubfavoritefeed.php:145 -#, php-format -msgid "Notices %s has favorited to on %s" -msgstr "Mededelingen die %s als favoriet heeft aangemerkt op %s" - -#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222 -msgid "Can't add someone else's subscription" +#. 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" -#. 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." +#. 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." -#: 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 msgid "Can only fave notices." msgstr "Het is alleen mogelijk om mededelingen als favoriet aan te merken." -#: actions/atompubfavoritefeed.php:256 +#. TRANS: Client exception thrown when trying favorite a notice without content. +#: actions/atompubfavoritefeed.php:259 msgid "Unknown note." msgstr "Onbekend mededeling." -#: actions/atompubfavoritefeed.php:263 +#. 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." -#: actions/atompubmembershipfeed.php:72 actions/atompubshowfavorite.php:76 -#: actions/atompubshowmembership.php:73 actions/subscribe.php:107 -msgid "No such profile." -msgstr "Het profiel bestaat niet." - +#. 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" -#: actions/atompubmembershipfeed.php:147 -#, php-format -msgid "Groups %s is a member of on %s" -msgstr "Groepen waar %s lid van is op %s" - -#: actions/atompubmembershipfeed.php:217 -msgid "Can't add someone else's membership" -msgstr "Het is niet mogelijk om een lidmaatschap van een ander toe te voegen" +#. 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 "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 -msgid "Can only handle Join activities." +#: 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 +#. TRANS: Client exception thrown when trying to subscribe to a non-existing group. +#: actions/atompubmembershipfeed.php:259 msgid "Unknown group." msgstr "Onbekende groep." -#: 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 "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 "Geblokkeerd door een beheerder." -#: actions/atompubshowfavorite.php:89 +#. TRANS: Client exception thrown when referencing a non-existing favorite. +#: actions/atompubshowfavorite.php:90 msgid "No such favorite." msgstr "De favoriet bestaat niet." +#. 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" -msgstr "Het is niet mogelijk om een favoriet van een ander te verwijderen" +#, fuzzy +msgid "Cannot delete someone else's favorite." +msgstr "Het is niet mogelijk om een favoriet van een ander te verwijderen." -#: actions/atompubshowmembership.php:81 -msgid "No such group" -msgstr "Deze groep bestaat niet" +#. 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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 -msgid "Not a member" +#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group +#: actions/atompubshowmembership.php:91 +#, fuzzy +msgid "Not a member." msgstr "Geen lid" -#: actions/atompubshowmembership.php:115 -msgid "Method not supported" -msgstr "Methode wordt niet ondersteund" - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "Het is niet mogelijk om een lidmaatschap van een ander te verwijderen" +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 +#, fuzzy +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. @@ -1302,43 +1386,40 @@ msgstr "Het is niet mogelijk om een lidmaatschap van een ander te verwijderen" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, php-format -msgid "No such profile id: %d" +msgid "No such profile id: %d." msgstr "Het profielnummer bestaat niet: %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 #, php-format -msgid "Profile %1$d not subscribed to profile %2$d" +msgid "Profile %1$d not subscribed to profile %2$d." msgstr "Profiel %1$d is niet geabonneerd op profiel %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" +msgid "Cannot delete someone else's subscription." msgstr "" "Het is niet mogelijk het abonnement van een andere gebruiker op te zeggen." -#: actions/atompubsubscriptionfeed.php:150 -#, php-format -msgid "People %s has subscribed to on %s" -msgstr "Mensen waarop %s geabonneerd is op %s" - #. TRANS: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 msgid "Can only handle Follow activities." msgstr "" "Het is alleen mogelijk om activiteiten met betrekking tot volgen af te " "handelen." -#: actions/atompubsubscriptionfeed.php:253 +#. TRANS: Client exception thrown when subscribing to an object that is not a person. +#: actions/atompubsubscriptionfeed.php:257 msgid "Can only follow people." msgstr "Het is alleen mogelijk om mensen te volgen." -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 #, php-format -msgid "Unknown profile %s" -msgstr "Onbekend profiel %s" +msgid "Unknown profile %s." +msgstr "Onbekend profiel %s." #. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 @@ -1348,10 +1429,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Geen gebruikersnaam." @@ -1383,30 +1465,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Voorvertoning" @@ -1442,7 +1530,8 @@ msgstr "" "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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Ons bestand is verloren gegaan." @@ -1461,23 +1550,29 @@ msgstr "Het bijwerken van de avatar is mislukt." msgid "Avatar deleted." msgstr "De avatar is verwijderd." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" -msgstr "Reservekopie van account maken" +msgstr "Reservekopie van gebruiker maken" -#: actions/backupaccount.php:80 +#. 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." -#: actions/backupaccount.php:232 +#. 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 " +"\">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 "" @@ -1487,12 +1582,14 @@ msgstr "" "privégegevens van de gebruiker zoals e-mailadres en IM-adres worden niet " "meegenomen. Hetzelfde geldt voor geüploade bestanden en directe berichten." -#: actions/backupaccount.php:255 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 msgctxt "BUTTON" msgid "Backup" msgstr "Reservekopie" -#: actions/backupaccount.php:258 +#. 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" @@ -1526,14 +1623,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Gebruiker niet blokkeren" @@ -1545,7 +1641,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Ja" @@ -1561,31 +1657,6 @@ msgstr "Deze gebruiker blokkeren" 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 @@ -1655,23 +1726,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 @@ -1729,7 +1783,8 @@ msgid "Account deleted." msgstr "De gebruiker is verwijderd." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 msgid "Delete account" msgstr "Gebruiker verwijderen" @@ -1754,8 +1809,9 @@ msgstr "" "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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Bevestigen" @@ -1830,8 +1886,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." @@ -1883,10 +1941,11 @@ msgid "Delete this group" msgstr "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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1926,19 +1985,30 @@ msgstr "Deze mededeling niet verwijderen" 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 +#, fuzzy +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." @@ -1947,78 +2017,102 @@ 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 +#, fuzzy +msgid "Do not delete this user" +msgstr "Verwijder deze groep niet" + #. 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 msgid "Delete this user" msgstr "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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2028,98 +2122,108 @@ 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 +#, fuzzy +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 +#, fuzzy +msgctxt "BUTTON" msgid "Use defaults" msgstr "Standaardinstellingen gebruiken" +#. 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 "Standaardontwerp toepassen" +#. 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 "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. #. 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 "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:84 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:99 msgid "Add to favorites" msgstr "Aan favorieten toevoegen" -#: 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 "Onbekend document \"%s\"" #. TRANS: Title for "Edit application" form. @@ -2209,14 +2313,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "U moet beheerder zijn om de groep te kunnen bewerken." @@ -2277,8 +2383,8 @@ msgstr "Huidige bevestigde e-mailadres" #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Verwijderen" @@ -2303,15 +2409,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Inkomende e-mail" @@ -2322,13 +2428,13 @@ 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:180 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:189 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 " @@ -2345,7 +2451,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Nieuw" @@ -2419,9 +2525,9 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2437,8 +2543,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Er is geen openstaand bevestigingsverzoek om te annuleren." @@ -2449,8 +2555,8 @@ 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:468 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. @@ -2469,24 +2575,24 @@ msgstr "Dit is niet uw e-mailadres." msgid "The email address was removed." msgstr "Het e-mailadres is verwijderd." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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" +#: actions/smssettings.php:564 actions/smssettings.php:587 +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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Het nieuwe binnenkomende e-mailadres is toegevoegd." @@ -2586,7 +2692,7 @@ msgstr "Onverwacht antwoord!" msgid "User being listened to does not exist." msgstr "De gebruiker waarnaar wordt geluisterd bestaat niet." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "U kunt het lokale abonnement gebruiken!" @@ -2722,22 +2828,19 @@ 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." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -2745,23 +2848,28 @@ 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:244 msgid "Upload" msgstr "Uploaden" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Uitsnijden" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "Logo geactualiseerd." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "Het bijwerken van het logo is mislukt." @@ -2847,7 +2955,7 @@ msgstr "" "[doorzoek dan de groepen](%%%%action.groupsearch%%%%) of [start zelf een " "groep!](%%%%action.newgroup%%%%)." -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Nieuwe groep aanmaken" @@ -2904,14 +3012,14 @@ 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 +#: 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](%%" @@ -2921,23 +3029,23 @@ msgstr "" "berichten\"](%%doc.im%%). Maak hieronder uw instellingen." #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "IM-adres" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk address." msgstr "Huidige bevestigde Jabber/GTalk adres." #. TRANS: Form note in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:124 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2952,7 +3060,7 @@ msgstr "" #. 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 " @@ -2962,65 +3070,65 @@ msgstr "" "%s eerst aan uw contactenlijst in uw IM-programma of in GTalk toevoegt." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "IM-voorkeuren" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Mij berichten sturen via Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 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 +#: actions/imsettings.php:171 msgid "Send me replies through Jabber/GTalk from people I'm not subscribed to." msgstr "" "Mij antwoorden sturen via Jabber/GTalk van gebruikers op wie ik niet " "geabonneerd ben." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:182 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Een MicroID voor mijn Jabber/GTalk-adres publiceren." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Uw voorkeuren zijn opgeslagen." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3030,28 +3138,28 @@ msgstr "" "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 +#: 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." +#: 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 +#: 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: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "Het IM-adres is verwijderd." @@ -3253,44 +3361,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 -#, 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 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 -#, 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 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." @@ -3298,87 +3413,94 @@ 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" @@ -3404,11 +3526,11 @@ msgstr "Aanmelden" msgid "Login to site" msgstr "Aanmelden" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Aanmeldgegevens onthouden" -#: 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 "Voortaan automatisch aanmelden. Niet gebruiken op gedeelde computers!" @@ -3802,7 +3924,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" @@ -3810,7 +3933,8 @@ 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" @@ -3818,7 +3942,7 @@ msgstr "Nieuw wachtwoord" msgid "6 or more characters" msgstr "Zes of meer tekens" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Gelijk aan het wachtwoord hierboven" @@ -3842,11 +3966,12 @@ msgstr "Het oude wachtwoord is onjuist" msgid "Error saving user; invalid." msgstr "Fout bij opslaan gebruiker; ongeldig." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Het was niet mogelijk het nieuwe wachtwoord op te slaan." -#: 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 "Het wachtwoord is opgeslagen." @@ -4156,12 +4281,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 "" @@ -4169,39 +4294,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:433 +#: lib/groupeditform.php:146 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" -msgstr "Thuispagina" +msgstr "Startpagina" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:125 +#: actions/profilesettings.php:121 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:471 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4209,44 +4335,44 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 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" msgstr "" @@ -4254,27 +4380,27 @@ msgstr "" "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 +#: actions/profilesettings.php:171 msgid "Preferred language" msgstr "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)" msgstr "" @@ -4284,7 +4410,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 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4292,53 +4418,49 @@ 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 actions/tagother.php:178 #, php-format 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 msgid "Restore account" msgstr "Gebruiker terugladen van back-up" @@ -4462,37 +4584,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." @@ -4501,69 +4631,102 @@ 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. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 +#, fuzzy +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 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 +#, fuzzy +msgid "6 or more characters, and do not forget it!" msgstr "Zes of meer tekens, en vergeet uw wachtwoord niet!" -#: actions/recoverpassword.php:243 -msgid "Reset" -msgstr "Herstellen" +#. 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 "Gelijk aan het wachtwoord hierboven" -#: actions/recoverpassword.php:252 +#. 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 "Opnieuw instellen" + +#. 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." @@ -4571,23 +4734,34 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Het was niet mogelijk het nieuwe wachtwoord op te slaan." + +#. 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 "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." @@ -4603,7 +4777,7 @@ msgstr "Sorry. De uitnodigingscode is ongeldig." msgid "Registration successful" msgstr "De registratie is voltooid" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Registreren" @@ -4631,60 +4805,53 @@ 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" +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "Zes of meer tekens" #. 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 "E-mail" -#: 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 "Alleen gebruikt voor updates, aankondigingen en wachtwoordherstel" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Een langere naam, mogelijk uw echte naam" -#: actions/register.php:463 +#: actions/register.php:462 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:524 +#: actions/register.php:523 #, 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:533 #, 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:537 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:540 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:545 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4693,7 +4860,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:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4727,7 +4894,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:612 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -4735,7 +4902,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." @@ -4747,74 +4914,74 @@ 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 +#: actions/remotesubscribe.php:129 msgid "Nickname of the user you want to follow" msgstr "De gebruikersnaam van de gebruiker die u wilt volgen" -#: actions/remotesubscribe.php:133 +#: actions/remotesubscribe.php:132 msgid "Profile URL" msgstr "Profiel-URL" -#: actions/remotesubscribe.php:134 +#: 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 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Abonneren" -#: actions/remotesubscribe.php:159 +#: 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Herhaald" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Herhaald!" @@ -5043,7 +5210,7 @@ msgstr "Organisatie" #. 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 "Beschrijving" @@ -5066,8 +5233,9 @@ msgstr "Applicatiehandelingen" msgid "Reset key & secret" msgstr "Sleutel en wachtwoord op nieuw instellen" +#. TRANS: Title of form for deleting a user. #: actions/showapplication.php:252 lib/deletegroupform.php:121 -#: lib/deleteuserform.php:66 lib/noticelist.php:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Verwijderen" @@ -5197,7 +5365,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Aliassen" @@ -5595,70 +5763,70 @@ 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 +#: 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." @@ -5667,32 +5835,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." @@ -5701,39 +5869,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 " @@ -5744,7 +5912,7 @@ 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 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Er is geen code ingevoerd" @@ -6010,10 +6178,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 "" @@ -6247,12 +6411,12 @@ 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." @@ -6260,7 +6424,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!" @@ -7243,24 +7407,29 @@ 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." @@ -7825,25 +7994,25 @@ msgstr "" "tracking - nog niet beschikbaar\n" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 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:153 +#: lib/common.php:158 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Naar het installatieprogramma gaan." @@ -7910,11 +8079,21 @@ 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: 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 @@ -7991,32 +8170,28 @@ msgstr "OK" msgid "Grant this user the \"%s\" role" msgstr "Deze gebruiker de rol \"%s\" geven" -#: lib/groupeditform.php:154 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 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:160 msgid "Describe the group or topic" msgstr "Beschrijf de groep of het onderwerp" -#: 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" +#: 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." 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:174 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:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9229,14 +9404,9 @@ msgstr[1] "ongeveer %d maanden geleden" 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." @@ -9276,3 +9446,29 @@ msgstr "Ongeldige XML. De XRD-root mist." #, php-format msgid "Getting backup from file '%s'." msgstr "De back-up wordt uit het bestand \"%s\" geladen." + +#~ msgid "No such group" +#~ msgstr "Deze groep bestaat niet" + +#~ msgid "HTTP method not supported" +#~ msgstr "HTTP-methode wordt niet ondersteund." + +#~ msgid "Reset" +#~ msgstr "Herstellen" + +#~ msgid "" +#~ "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#~ msgstr "" +#~ "1-64 kleine letters of cijfers, geen leestekens of spaties. Verplicht." + +#~ msgid "6 or more characters. Required." +#~ msgstr "Zes of meer tekens. Verplicht" + +#~ msgid "Same as password above. Required." +#~ msgstr "Gelijk aan het wachtwoord hierboven. Verplicht" + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "1-64 kleine letters of cijfers, geen leestekens of spaties" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s is geen geldige kleur." diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 7a10a06487..3179ecd008 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:35:12+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:57:36+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 (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\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: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -82,6 +82,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 #, fuzzy msgctxt "BUTTON" msgid "Save" @@ -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. @@ -139,8 +142,8 @@ msgstr "Dette emneord finst ikkje." #: 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 @@ -151,7 +154,7 @@ msgstr "Dette emneord finst ikkje." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -312,7 +315,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "Kan ikkje oppdatera brukar." @@ -334,7 +351,8 @@ 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 +#. 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." @@ -344,7 +362,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -366,8 +384,8 @@ msgstr[1] "" #: 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/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!" @@ -376,14 +394,18 @@ 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/groupdesignsettings.php:266 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. @@ -394,32 +416,39 @@ msgstr "" 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 +#. 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 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." @@ -514,7 +543,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:91 msgid "Could not delete favorite." msgstr "Kunne ikkje slette favoritt." @@ -562,7 +592,7 @@ msgstr "Kan ikkje oppdatera brukar." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." @@ -572,7 +602,7 @@ msgstr "Kallenamnet er allereie i bruk. Prøv eit 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:140 actions/profilesettings.php:247 +#: actions/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Ikkje eit gyldig brukarnamn." @@ -584,7 +614,7 @@ msgstr "Ikkje eit gyldig brukarnamn." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "Heimesida er ikkje ei gyldig internettadresse." @@ -594,7 +624,7 @@ msgstr "Heimesida er ikkje ei gyldig internettadresse." #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 #, fuzzy msgid "Full name is too long (maximum 255 characters)." @@ -622,7 +652,7 @@ msgstr[1] "Plassering er for lang (maksimalt 255 teikn)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -680,23 +710,27 @@ 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." @@ -709,9 +743,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." @@ -749,7 +785,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" @@ -772,18 +808,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -804,18 +844,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Uventa skjemasending." @@ -861,9 +904,9 @@ msgstr "Konto" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Kallenamn" @@ -871,7 +914,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Passord" @@ -882,7 +925,7 @@ msgstr "Passord" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 #, fuzzy msgctxt "BUTTON" @@ -956,6 +999,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 @@ -976,41 +1020,53 @@ msgstr "Kan ikkje slå på notifikasjon." msgid "Already repeated that notice." msgstr "Kan ikkje sletta notisen." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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" @@ -1145,51 +1201,49 @@ 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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, 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:406 +#: actions/apitimelineuser.php:409 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." msgstr "Fann ingen profil med den IDen." -#: 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." @@ -1200,108 +1254,138 @@ msgstr "API-metoden er ikkje ferdig enno." msgid "User not found." msgstr "Fann ikkje API-metode." -#: actions/atompubfavoritefeed.php:70 -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. +#: 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 "Denne notisen finst ikkje." +#. 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 -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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "Fann ikkje API-metode." - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "" +msgid "Cannot delete someone else's membership." +msgstr "Kunne ikkje lagra abonnement." #. 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. @@ -1309,40 +1393,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +msgid "Cannot delete someone else's subscription." msgstr "Kunne ikkje lagra abonnement." -#: actions/atompubsubscriptionfeed.php:150 -#, fuzzy, php-format -msgid "People %s has subscribed to on %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 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: 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 get a non-existing attachment. @@ -1353,10 +1434,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Ingen kallenamn." @@ -1387,30 +1469,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Forhandsvis" @@ -1449,7 +1537,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Fant ikkje igjen fil data." @@ -1469,34 +1558,41 @@ msgstr "Feil ved oppdatering av brukarbilete." msgid "Avatar deleted." msgstr "Lasta opp brukarbilete." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 msgctxt "BUTTON" msgid "Backup" msgstr "" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1527,14 +1623,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:178 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" msgstr "Lås opp brukaren" @@ -1547,7 +1642,7 @@ 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:185 #, fuzzy msgctxt "BUTTON" msgid "Yes" @@ -1564,31 +1659,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 @@ -1661,23 +1731,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 @@ -1740,7 +1793,8 @@ msgid "Account deleted." msgstr "Lasta opp brukarbilete." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Opprett ei ny gruppe" @@ -1762,8 +1816,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Godta" @@ -1839,8 +1894,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." @@ -1891,10 +1948,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1936,106 +1994,141 @@ msgstr "Kan ikkje sletta notisen." 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 'No' when deleting a user. +#: actions/deleteuser.php:158 +#, fuzzy +msgid "Do not delete this user" +msgstr "Ikkje slett denne gruppa" + #. 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 "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 +#. 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 #, 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:521 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:527 #, fuzzy, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2043,101 +2136,109 @@ 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 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 "Lagra" - +#. 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:84 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:99 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. @@ -2236,14 +2337,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "Du må være logga inn for å lage ei gruppe." @@ -2306,8 +2409,8 @@ msgstr "Godkjent epostadresse." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Gjenopprett" @@ -2332,8 +2435,8 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 actions/imsettings.php:147 +#: actions/smssettings.php:158 #, fuzzy msgctxt "BUTTON" msgid "Add" @@ -2341,7 +2444,7 @@ 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Innkomande epost" @@ -2352,13 +2455,13 @@ 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:180 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:189 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." @@ -2371,7 +2474,7 @@ 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:199 actions/smssettings.php:185 #, fuzzy msgctxt "BUTTON" msgid "New" @@ -2448,9 +2551,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2465,8 +2569,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Ingen ventande stadfesting å avbryta." @@ -2478,8 +2582,9 @@ 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:468 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. @@ -2498,24 +2603,25 @@ msgstr "Det er ikkje din epost addresse." msgid "The email address was removed." msgstr "Fjerna innkomande epostadresse." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "La til ny innkomande epostadresse." @@ -2611,7 +2717,7 @@ msgstr "Venta ikkje dette svaret!" msgid "User being listened to does not exist." msgstr "Brukaren du lyttar til eksisterer ikkje." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Du kan nytta det lokale abonnementet!" @@ -2750,46 +2856,47 @@ 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 "Kan ikkje oppdatera brukar." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, 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:244 msgid "Upload" msgstr "Last opp" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Skaler" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 #, 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:413 msgid "Logo updated." msgstr "Logo oppdatert." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "Feil ved oppdatering av logo." @@ -2870,7 +2977,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Opprett ei ny gruppe" @@ -2923,14 +3030,14 @@ msgid "Error removing the block." msgstr "Feil ved fjerning av blokka." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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 +#: actions/imsettings.php:71 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2940,24 +3047,24 @@ msgstr "" "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 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "Epostadresser" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2971,7 +3078,7 @@ msgstr "" #. 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 " @@ -2981,63 +3088,63 @@ msgstr "" "leggja %s til venelista di i ljonmeldingsklienten din." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "Lagra brukarval." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Send meg ein notis via Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk 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 +#: actions/imsettings.php:171 msgid "Send me replies through Jabber/GTalk 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk 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 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Lagra brukarval." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 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 +#: actions/imsettings.php:317 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3047,29 +3154,29 @@ msgstr "" "for å senda meldinger til deg." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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 +#: 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 +#: actions/imsettings.php:396 msgid "IM confirmation cancelled." msgstr "Ingen stadfestingskode." #. TRANS: Message given trying to remove an IM 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "Fjerna innkomande epostadresse." @@ -3269,132 +3376,146 @@ 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 "" @@ -3419,11 +3540,11 @@ msgstr "Logg inn" msgid "Login to site" msgstr "Logg inn " -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Hugs meg" -#: 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 "Logg inn automatisk i framtidi (ikkje for delte maskiner)." @@ -3823,7 +3944,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" @@ -3831,7 +3953,8 @@ 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" @@ -3839,7 +3962,7 @@ msgstr "Nytt passord" msgid "6 or more characters" msgstr "6 eller fleire teikn" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Samme passord som over" @@ -3863,11 +3986,12 @@ msgstr "Det gamle passordet stemmer ikkje" msgid "Error saving user; invalid." msgstr "Feil ved lagring av brukar; fungerer ikkje." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Klarar ikkje lagra nytt passord." -#: 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 "Lagra passord." @@ -4193,12 +4317,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 "" @@ -4206,12 +4330,13 @@ 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:433 +#: lib/groupeditform.php:146 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" @@ -4219,21 +4344,21 @@ 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Heimeside" #. 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 "URL til heimesida di, bloggen din, eller ein profil på ei anna side." @@ -4241,7 +4366,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:471 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4249,45 +4374,45 @@ 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:476 #, 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "Merkelappar" #. 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 "" @@ -4295,27 +4420,27 @@ msgstr "" "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 +#: actions/profilesettings.php:171 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 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -4324,7 +4449,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)." @@ -4332,53 +4457,50 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Opprett ei ny gruppe" @@ -4494,35 +4616,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 " @@ -4531,69 +4661,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 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: 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 "Samme passord som over" + +#. 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." @@ -4601,23 +4764,34 @@ 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 +#. 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Klarar ikkje lagra nytt passord." + +#. 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 "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." @@ -4634,7 +4808,7 @@ msgstr "Feil med stadfestingskode." msgid "Registration successful" msgstr "Registreringa gikk bra" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrér" @@ -4660,62 +4834,53 @@ 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 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." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 eller fleire teikn" #. 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 "Epost" -#: 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 "" "Blir berre brukt for uppdateringar, viktige meldingar og for gløymde passord" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Lengre namn, fortrinnsvis ditt «ekte» namn" -#: actions/register.php:463 +#: actions/register.php:462 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: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 #, fuzzy, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4724,7 +4889,7 @@ msgstr "" " unnateke privatdata: passord, epostadresse, ljonmeldingsadresse og " "telefonnummer." -#: actions/register.php:589 +#: actions/register.php:588 #, fuzzy, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4756,7 +4921,7 @@ msgstr "" "\n" "Takk for at du blei med, og vi håpar du vil lika tenesta!" -#: 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.)" @@ -4764,7 +4929,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." @@ -4776,80 +4941,80 @@ 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 +#: actions/remotesubscribe.php:129 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 +#: actions/remotesubscribe.php:133 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 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Ting" -#: actions/remotesubscribe.php:159 +#: actions/remotesubscribe.php:158 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:692 +#: 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" @@ -5077,7 +5242,7 @@ msgstr "Paginering" #. 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 "Beskriving" @@ -5100,8 +5265,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:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Slett" @@ -5220,7 +5386,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "" @@ -5601,72 +5767,72 @@ 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 +#: actions/smssettings.php:152 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." @@ -5675,33 +5841,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." @@ -5710,40 +5876,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 " @@ -5753,7 +5919,7 @@ 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 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Ingen innskriven kode" @@ -6009,10 +6175,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 "" @@ -6255,19 +6417,19 @@ 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 "" @@ -7250,24 +7412,28 @@ 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 "" @@ -7791,26 +7957,26 @@ msgid "" msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 #, fuzzy msgid "Go to the installer." msgstr "Logg inn or sida" @@ -7879,12 +8045,23 @@ 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: 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 @@ -7963,35 +8140,30 @@ msgstr "Gå" 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 små bokstavar eller tal, ingen punktum (og liknande) eller mellomrom" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 #, 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:160 #, fuzzy msgid "Describe the group or topic" msgstr "Beskriv gruppa eller emnet med 140 teikn" -#: 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] "Beskriv gruppa eller emnet med 140 teikn" msgstr[1] "Beskriv gruppa eller emnet med 140 teikn" -#: lib/groupeditform.php:182 +#: lib/groupeditform.php:174 #, 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:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9122,14 +9294,9 @@ msgstr[1] "" 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." @@ -9165,3 +9332,33 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "Denne gruppa finst ikkje." + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "Fann ikkje API-metode." + +#~ msgid "Reset" +#~ msgstr "Avbryt" + +#~ 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." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 eller fleire teikn. Kravd." + +#~ msgid "Same as password above. Required." +#~ msgstr "Samme som passord over. Påkrevd." + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "" +#~ "1-64 små bokstavar eller tal, ingen punktum (og liknande) eller mellomrom" + +#, fuzzy +#~ msgid "%s is not a valid color!" +#~ msgstr "Heimesida er ikkje ei gyldig internettadresse." diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 3d586a4f84..75da79f151 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:35:15+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:57:43+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 (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-core\n" -"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -79,6 +79,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Zapisz" @@ -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. @@ -134,8 +137,8 @@ msgstr "Nie ma takiej strony." #: 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,7 +149,7 @@ msgstr "Nie ma takiej strony." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -315,7 +318,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "Nie można zaktualizować użytkownika." @@ -337,7 +354,8 @@ 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." @@ -347,7 +365,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -376,8 +394,8 @@ msgstr[2] "" #: 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/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." @@ -385,13 +403,17 @@ 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/groupdesignsettings.php:266 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. @@ -402,31 +424,38 @@ msgstr "Główna" 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 +#. 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 ulubionych" -#: 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 "%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ę." @@ -519,7 +548,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:91 msgid "Could not delete favorite." msgstr "Nie można usunąć ulubionego wpisu." @@ -566,7 +596,7 @@ msgstr "Nie można odnaleźć użytkownika docelowego." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Pseudonim jest już używany. Spróbuj innego." @@ -576,7 +606,7 @@ msgstr "Pseudonim jest już używany. Spróbuj innego." #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "To nie jest prawidłowy pseudonim." @@ -588,7 +618,7 @@ msgstr "To nie jest prawidłowy pseudonim." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "Strona domowa nie jest prawidłowym adresem URL." @@ -598,7 +628,7 @@ msgstr "Strona domowa nie jest prawidłowym adresem 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:151 actions/profilesettings.php:256 +#: actions/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." msgstr "Imię i nazwisko jest za długie (maksymalnie 255 znaków)." @@ -626,7 +656,7 @@ msgstr[2] "Opis jest za długi (maksymalnie %d znaków)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 msgid "Location is too long (maximum 255 characters)." msgstr "Położenie jest za długie (maksymalnie 255 znaków)." @@ -684,22 +714,26 @@ 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." @@ -711,9 +745,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." @@ -750,7 +786,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." @@ -770,18 +806,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -800,18 +840,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Nieoczekiwane wysłanie formularza." @@ -862,9 +905,9 @@ msgstr "Konto" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Pseudonim" @@ -872,7 +915,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Hasło" @@ -883,7 +926,7 @@ msgstr "Hasło" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -957,6 +1000,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 @@ -976,39 +1020,50 @@ msgstr "Nie można powtórzyć własnego wpisu." msgid "Already repeated that notice." msgstr "Już powtórzono ten wpis." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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 +#. 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 "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" @@ -1144,51 +1199,49 @@ msgstr "Tylko użytkownik może dodawać do swojej osi czasu." msgid "Only accept AtomPub for Atom feeds." msgstr "Akceptowanie tylko AtomPub dla kanałów Atom." -#: 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 "Wpis Atom nie może być pusty." -#: 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 "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:334 +#: actions/apitimelineuser.php:336 msgid "Can only handle POST activities." 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:345 +#: actions/apitimelineuser.php:347 #, php-format msgid "Cannot handle activity object type \"%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:378 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, php-format msgid "No content for notice %d." msgstr "Brak zawartości dla wpisu %d." #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, php-format msgid "Notice with URI \"%s\" already exists." msgstr "Wpis z adresem URI \"%s\" już istnieje." -#: actions/apitimelineuser.php:437 -#, 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." @@ -1199,96 +1252,127 @@ msgstr "Metoda API jest w trakcie tworzenia." msgid "User not found." msgstr "Nie odnaleziono strony." -#: actions/atompubfavoritefeed.php:70 -msgid "No such profile" -msgstr "Nie ma takiego profilu" - -#: actions/atompubfavoritefeed.php:145 -#, php-format -msgid "Notices %s has favorited to on %s" -msgstr "Wpisy %s został oznaczone jako ulubione na %s" - -#: actions/atompubfavoritefeed.php:215 actions/atompubsubscriptionfeed.php:222 -msgid "Can't add someone else's subscription" -msgstr "Nie można dodać subskrypcji innej osoby" - -#. 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 "Można obsługiwać tylko działania ulubionych." - -#: actions/atompubfavoritefeed.php:248 actions/atompubmembershipfeed.php:248 -msgid "Can only fave notices." -msgstr "Można tylko dodawać wpisy do ulubionych." - -#: actions/atompubfavoritefeed.php:256 -msgid "Unknown note." -msgstr "Nieznany wpis." - -#: actions/atompubfavoritefeed.php:263 -msgid "Already a favorite." -msgstr "Jest już ulubiony." - -#: 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 msgid "No such profile." msgstr "Nie ma takiego profilu." +#. 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" -#: actions/atompubmembershipfeed.php:147 -#, php-format -msgid "Groups %s is a member of on %s" -msgstr "Grupy %s są członkiem w witrynie %s" - -#: 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 +#, fuzzy +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 -msgid "Can only handle Join activities." +#: actions/atompubmembershipfeed.php:242 +msgid "Can only handle join activities." msgstr "Można obsługiwać tylko działania dołączania." -#: 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 "Nieznana grupa." -#: 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 "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 "Zablokowane przez administratora." -#: actions/atompubshowfavorite.php:89 +#. TRANS: Client exception thrown when referencing a non-existing favorite. +#: actions/atompubshowfavorite.php:90 msgid "No such favorite." msgstr "Nie ma takiego ulubionego wpisu." +#. 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" +#, fuzzy +msgid "Cannot delete someone else's favorite." msgstr "Nie można usunąć ulubionego wpisu innej osoby" -#: 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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 -msgid "Not a member" +#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group +#: actions/atompubshowmembership.php:91 +#, fuzzy +msgid "Not a member." msgstr "Nie jest członkiem" -#: actions/atompubshowmembership.php:115 -msgid "Method not supported" -msgstr "Metoda nie jest obsługiwana" - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 +#, fuzzy +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. @@ -1297,41 +1381,37 @@ msgstr "Nie można usunąć członkostwa innej osoby" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, php-format -msgid "No such profile id: %d" -msgstr "Nie ma takiego identyfikatora profilu: %d" +msgid "No such profile id: %d." +msgstr "Nie ma takiego identyfikatora profilu: %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 "Profil %d nie jest subskrybowany do profilu %d" +#, php-format +msgid "Profile %1$d not subscribed to profile %2$d." +msgstr "Profil %1$d nie jest subskrybowany do profilu %2$d." #. 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 "Nie można usunąć subskrypcji innej osoby" - -#: actions/atompubsubscriptionfeed.php:150 -#, php-format -msgid "People %s has subscribed to on %s" -msgstr "Osoby %s są subskrybowane w witrynie %s" +msgid "Cannot delete someone else's subscription." +msgstr "Nie można usunąć subskrypcji innej osoby." #. TRANS: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 msgid "Can only handle Follow activities." 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:257 msgid "Can only follow people." msgstr "Można obserwować tylko osoby." -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 #, php-format -msgid "Unknown profile %s" -msgstr "Nieznany profil %s" +msgid "Unknown profile %s." +msgstr "Nieznany profil %s." #. TRANS: Client error displayed trying to get a non-existing attachment. #: actions/attachment.php:73 @@ -1341,10 +1421,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Brak pseudonimu." @@ -1375,30 +1456,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Podgląd" @@ -1433,7 +1520,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Utracono dane pliku." @@ -1452,37 +1540,50 @@ msgstr "Zaktualizowanie awatara nie powiodło się." msgid "Avatar deleted." msgstr "Usunięto awatar." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" -msgstr "" +msgstr "Wykonaj kopię zapasową konta" -#: actions/backupaccount.php:80 -#, fuzzy +#. 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ą powtarzać wpisy." +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 "" +msgstr "Użytkownik nie może wykonać kopii zapasowej konta." -#: actions/backupaccount.php:232 +#. 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 " +"\">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." -#: actions/backupaccount.php:255 -#, fuzzy +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 msgctxt "BUTTON" msgid "Backup" -msgstr "Tło" +msgstr "Kopia zapasowa" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" -msgstr "" +msgstr "Wykonuje kopię zapasową konta" #. TRANS: Client error displayed when blocking a user that has already been blocked. #: actions/block.php:68 @@ -1514,14 +1615,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Nie blokuj tego użytkownika" @@ -1533,7 +1633,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Tak" @@ -1549,31 +1649,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 @@ -1643,23 +1718,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 @@ -1691,39 +1749,36 @@ msgstr "Wpisy" #. 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 "Tylko zalogowani użytkownicy mogą powtarzać wpisy." +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 -#, fuzzy msgid "You cannot delete your account." -msgstr "Nie można usuwać użytkowników." +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 "" +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 "" +msgstr "Należy wpisać dokładnie \"%s\" w polu obok." #. TRANS: Confirmation that a user account has been deleted. #: actions/deleteaccount.php:206 -#, fuzzy msgid "Account deleted." -msgstr "Usunięto awatar." +msgstr "Usunięto konto." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 -#, fuzzy +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 msgid "Delete account" -msgstr "Utwórz konto" +msgstr "Usuń konto" #. TRANS: Form text for user deletion form. #: actions/deleteaccount.php:279 @@ -1731,6 +1786,7 @@ 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. @@ -1740,25 +1796,27 @@ 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 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 -#, fuzzy, php-format +#, php-format msgid "Enter \"%s\" to confirm that you want to delete your account." -msgstr "Nie można usuwać użytkowników." +msgstr "Proszę wpisać \"%s\", aby potwierdzić chęć usunięcia konta." #. TRANS: Button title for user account deletion. #: actions/deleteaccount.php:323 -#, fuzzy msgid "Permanently delete your account" -msgstr "Nie można usuwać użytkowników." +msgstr "Trwale usuwa konto" #. TRANS: Client error displayed trying to delete an application while not logged in. #: actions/deleteapplication.php:62 @@ -1816,8 +1874,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." @@ -1868,10 +1928,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1911,19 +1972,30 @@ msgstr "Nie usuwaj tego wpisu" 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 +#, fuzzy +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." @@ -1931,78 +2003,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 tej grupy" + #. 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 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2010,98 +2106,108 @@ 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 +#, fuzzy +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 +#, fuzzy +msgctxt "BUTTON" msgid "Use defaults" msgstr "Użycie domyślnych" +#. 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 "Przywróć domyślny wygląd" +#. 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 "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 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 "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:84 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:99 msgid "Add to favorites" msgstr "Dodaj do ulubionych" -#: 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 "Nie ma takiego dokumentu \\\"%s\\\"" #. TRANS: Title for "Edit application" form. @@ -2191,14 +2297,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "Musisz być administratorem, aby zmodyfikować grupę." @@ -2259,8 +2367,8 @@ msgstr "Obecnie potwierdzone adresy e-mail." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Usuń" @@ -2286,15 +2394,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Wiadomości przychodzące" @@ -2305,13 +2413,13 @@ 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:180 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:189 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." @@ -2326,7 +2434,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Nowy" @@ -2400,9 +2508,9 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2418,8 +2526,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Brak oczekujących potwierdzeń do anulowania." @@ -2430,8 +2538,8 @@ 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:468 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. @@ -2450,24 +2558,24 @@ msgstr "To nie jest twój adres e-mail." msgid "The email address was removed." msgstr "Adres e-mail został usunięty." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Dodano nowy przychodzący adres e-mail." @@ -2566,7 +2674,7 @@ msgstr "Nieoczekiwana odpowiedź." msgid "User being listened to does not exist." msgstr "Nasłuchiwany użytkownik nie istnieje." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Można używać lokalnej subskrypcji." @@ -2694,44 +2802,46 @@ msgid "" "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." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, 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:244 msgid "Upload" msgstr "Wyślij" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Przytnij" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "Zaktualizowano logo." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "Zaktualizowanie logo nie powiodło się." @@ -2816,7 +2926,7 @@ 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 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Utwórz nową grupę" @@ -2872,14 +2982,14 @@ msgid "Error removing the block." msgstr "Błąd podczas usuwania blokady." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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 +#: actions/imsettings.php:71 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2889,23 +2999,23 @@ msgstr "" "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 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "Adres komunikatora" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2920,7 +3030,7 @@ msgstr "" #. 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 " @@ -2930,64 +3040,64 @@ msgstr "" "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 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "Preferencje komunikatora" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Wyślij mi wpisy przez Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk 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 +#: actions/imsettings.php:171 msgid "Send me replies through Jabber/GTalk 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Opublikuj MicroID adresu Jabber/GTalk." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Zapisano preferencje." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 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 +#: actions/imsettings.php:317 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2997,28 +3107,28 @@ msgstr "" "zaakceptować otrzymywanie wiadomości od %s." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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." +#: 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 +#: 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: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "Adres komunikatora został usunięty." @@ -3225,44 +3335,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 -#, 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 "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 -#, 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 "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." @@ -3270,87 +3387,94 @@ 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" @@ -3374,11 +3498,11 @@ msgstr "Zaloguj się" msgid "Login to site" msgstr "Zaloguj się na witrynie" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Zapamiętaj mnie" -#: 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 "" "Automatyczne logowanie. Nie należy używać na komputerach używanych przez " @@ -3460,9 +3584,8 @@ 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 -#, fuzzy msgid "You are not allowed to create groups on this site." -msgstr "Brak uprawnienia do usunięcia tej grupy." +msgstr "Brak uprawnienia do tworzenia grup w tej witrynie." #. TRANS: Form instructions for group create form. #: actions/newgroup.php:117 @@ -3770,7 +3893,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" @@ -3778,7 +3902,8 @@ 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" @@ -3786,7 +3911,7 @@ msgstr "Nowe hasło" msgid "6 or more characters" msgstr "6 lub więcej znaków" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Takie samo jak powyższe hasło" @@ -3810,11 +3935,12 @@ msgstr "Niepoprawne poprzednie hasło" msgid "Error saving user; invalid." msgstr "Błąd podczas zapisywania użytkownika; nieprawidłowy." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Nie można zapisać nowego hasła." -#: 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 "Zapisano hasło." @@ -4124,12 +4250,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 "" @@ -4137,39 +4263,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:433 +#: lib/groupeditform.php:146 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Strona domowa" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:125 +#: actions/profilesettings.php:121 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:471 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4178,44 +4305,44 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "Znaczniki" #. 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 "" @@ -4223,27 +4350,27 @@ msgstr "" "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 +#: actions/profilesettings.php:171 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 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -4252,7 +4379,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 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4261,54 +4388,49 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 -#, fuzzy +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 msgid "Restore account" -msgstr "Utwórz konto" +msgstr "Przywróć konto" #: actions/public.php:83 #, php-format @@ -4429,35 +4551,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." @@ -4465,67 +4595,100 @@ 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. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 +#, fuzzy +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 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 +#, fuzzy +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: 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 "Takie samo jak powyższe hasło" + +#. 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." @@ -4533,23 +4696,34 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Nie można zapisać nowego hasła." + +#. 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 "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." @@ -4565,7 +4739,7 @@ msgstr "Nieprawidłowy kod zaproszenia." msgid "Registration successful" msgstr "Rejestracja powiodła się" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Zarejestruj się" @@ -4594,60 +4768,52 @@ 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." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 lub więcej znaków" #. 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 "E-mail" -#: 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 "Używane tylko do aktualizacji, ogłoszeń i przywracania hasła" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Dłuższa nazwa, najlepiej twoje \"prawdziwe\" imię i nazwisko" -#: actions/register.php:463 +#: actions/register.php:462 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:524 +#: actions/register.php:523 #, 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:533 #, 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:537 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:540 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:545 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4656,7 +4822,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:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4689,7 +4855,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:612 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -4697,7 +4863,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." @@ -4709,74 +4875,74 @@ 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 +#: actions/remotesubscribe.php:129 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 +#: actions/remotesubscribe.php:133 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 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Subskrybuj" -#: actions/remotesubscribe.php:159 +#: actions/remotesubscribe.php:158 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:692 +#: 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." @@ -4840,22 +5006,19 @@ 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 -#, fuzzy msgid "Only logged-in users can restore their account." -msgstr "Tylko zalogowani użytkownicy mogą powtarzać wpisy." +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 -#, fuzzy msgid "You may not restore your account." -msgstr "Nie zarejestrowano jeszcze żadnych aplikacji." +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 -#, fuzzy msgid "No uploaded file." -msgstr "Wyślij plik" +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 @@ -4897,9 +5060,8 @@ msgstr "Błąd systemu podczas wysyłania pliku." #. TRANS: Client exception thrown when a feed is not an Atom feed. #: actions/restoreaccount.php:207 -#, fuzzy msgid "Not an Atom feed." -msgstr "Nie jest członkiem" +msgstr "Nie jest kanałem Atom." #. TRANS: Success message when a feed has been restored. #: actions/restoreaccount.php:241 @@ -4907,11 +5069,13 @@ 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 "" +msgstr "Kanał zostanie przywrócony. Proszę poczekać kilka minut na wyniki." #. TRANS: Form instructions for feed restore. #: actions/restoreaccount.php:342 @@ -4919,10 +5083,11 @@ 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 -#, fuzzy msgid "Upload the file" msgstr "Wyślij plik" @@ -5002,7 +5167,7 @@ msgstr "Organizacja" #. 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 "Opis" @@ -5025,8 +5190,9 @@ msgstr "Czynności aplikacji" msgid "Reset key & secret" msgstr "Przywrócenie klucza i sekretu" +#. TRANS: Title of form for deleting a user. #: actions/showapplication.php:252 lib/deletegroupform.php:121 -#: lib/deleteuserform.php:66 lib/noticelist.php:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Usuń" @@ -5154,7 +5320,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Aliasy" @@ -5546,70 +5712,70 @@ 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 +#: actions/smssettings.php:152 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." @@ -5618,32 +5784,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." @@ -5652,39 +5818,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 " @@ -5695,7 +5861,7 @@ 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 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Nie podano kodu" @@ -5960,10 +6126,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 "" @@ -6193,19 +6355,19 @@ 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." @@ -6988,54 +7150,52 @@ msgstr "Oczekiwano elementu kanału roota, ale otrzymano cały dokument XML." #. TRANS: Client exception thrown when using an unknown verb for the activity importer. #: lib/activityimporter.php:81 -#, fuzzy, php-format +#, php-format msgid "Unknown verb: \"%s\"." -msgstr "Nieznany język \"%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 "" +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 -#, fuzzy msgid "Cannot force remote user to subscribe." -msgstr "Podaj nazwę użytkownika do subskrybowania." +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 -#, fuzzy msgid "Unknown profile." -msgstr "Nieznany profil %s" +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 "" +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 "" +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 -#, fuzzy msgid "User is already a member of this group." -msgstr "Jesteś już członkiem tej grupy." +msgstr "Użytkownik jest już członkiem tej grupy." #. 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 -#, fuzzy, php-format +#, php-format msgid "No content for notice %s." -msgstr "Brak zawartości dla wpisu %d." +msgstr "Brak zawartości dla wpisu %s." #. TRANS: Client exception thrown when there is no source attribute. #: lib/activityutils.php:200 @@ -7186,22 +7346,25 @@ 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ę." @@ -7320,15 +7483,13 @@ msgid "Revoke" msgstr "Unieważnij" #: lib/atom10feed.php:113 -#, fuzzy msgid "Author element must contain a name element." -msgstr "element autora musi zawierać element nazwy." +msgstr "Element \"author\" musi zawierać element \"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 "Nie usuwaj tej grupy" +msgstr "Nie należy używać tej metody." #. TRANS: DT element label in attachment list item. #: lib/attachmentlist.php:294 @@ -7764,24 +7925,24 @@ msgstr "" "tracking - jeszcze nie zaimplementowano\n" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 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:153 +#: lib/common.php:158 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Przejdź do instalatora." @@ -7846,11 +8007,21 @@ 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: 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 @@ -7882,17 +8053,16 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedimporter.php:75 -#, fuzzy msgid "Not an atom feed." -msgstr "Nie jest członkiem" +msgstr "Nie jest kanałem Atom." #: lib/feedimporter.php:82 msgid "No author in the feed." -msgstr "" +msgstr "Brak autora w kanale." #: lib/feedimporter.php:89 msgid "Can't import without a user." -msgstr "" +msgstr "Nie można zaimportować bez użytkownika." #. TRANS: Header for feed links (h2). #: lib/feedlist.php:66 @@ -7928,34 +8098,30 @@ msgstr "Przejdź" msgid "Grant this user the \"%s\" role" msgstr "Nadaj użytkownikowi rolę \"%s\"" -#: lib/groupeditform.php:154 -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" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 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:160 msgid "Describe the group or topic" msgstr "Opisz grupę lub temat" -#: 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" +#: 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." 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:174 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:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9177,14 +9343,9 @@ msgstr[2] "około %d miesięcy temu" 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 "" @@ -9223,3 +9384,29 @@ msgstr "Nieprawidłowy kod XML, brak głównego XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "Pobieranie kopii zapasowej z pliku \"%s\"." + +#~ msgid "No such group" +#~ msgstr "Nie ma takiej grupy." + +#~ msgid "HTTP method not supported" +#~ msgstr "Metoda HTTP nie jest obsługiwana" + +#~ msgid "Reset" +#~ msgstr "Przywróć" + +#~ 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." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 lub więcej znaków. Wymagane." + +#~ msgid "Same as password above. Required." +#~ msgstr "Takie samo jak powyższe hasło. Wymagane." + +#~ 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" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s nie jest prawidłowym kolorem." diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index aeb55870b5..41b430c4c2 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 # +# 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: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:35:18+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:57:46+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -79,6 +80,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Gravar" @@ -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. @@ -134,8 +138,8 @@ msgstr "Página não foi encontrada." #: 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,7 +150,7 @@ msgstr "Página não foi encontrada." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -314,7 +318,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: 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." @@ -336,7 +354,8 @@ 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." @@ -346,10 +365,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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 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." @@ -357,7 +376,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 " @@ -372,8 +391,8 @@ msgstr[1] "" #: 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/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." @@ -381,13 +400,18 @@ 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/groupdesignsettings.php:266 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. @@ -398,31 +422,38 @@ msgstr "" 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." @@ -514,7 +545,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:91 msgid "Could not delete favorite." msgstr "Não foi possível eliminar o favorito." @@ -562,7 +594,7 @@ msgstr "Não foi possível encontrar o utilizador de destino." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Utilizador já é usado. Tente outro." @@ -572,7 +604,7 @@ msgstr "Utilizador já é usado. Tente 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:140 actions/profilesettings.php:247 +#: actions/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Utilizador não é válido." @@ -584,7 +616,7 @@ msgstr "Utilizador não é 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:147 actions/profilesettings.php:252 +#: actions/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "Página de ínicio não é uma URL válida." @@ -594,7 +626,7 @@ msgstr "Página de ínicio não é uma 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:151 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)." @@ -622,7 +654,7 @@ msgstr[1] "Descrição demasiado longa (máx. %d caracteres)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -680,22 +712,26 @@ 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." @@ -707,9 +743,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." @@ -746,7 +784,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." @@ -769,18 +807,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -800,18 +842,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Envio inesperado de formulário." @@ -863,9 +908,9 @@ msgstr "Conta" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Utilizador" @@ -873,7 +918,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Senha" @@ -884,7 +929,7 @@ msgstr "Senha" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -958,6 +1003,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 @@ -977,40 +1023,52 @@ msgstr "Não pode repetir a sua própria nota." msgid "Already repeated that notice." msgstr "Já repetiu essa nota." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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" @@ -1144,51 +1202,49 @@ 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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, 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:406 +#: actions/apitimelineuser.php:409 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." msgstr "Não existe nenhuma nota com essa identificação." -#: 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." @@ -1200,108 +1256,137 @@ msgstr "Método da API em desenvolvimento." 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 +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 "" - -#: 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 -msgid "No such group" -msgstr "Grupo não existe" +#. 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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "Método da API não encontrado." - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "" +msgid "Cannot delete someone else's membership." +msgstr "Não foi possível apagar a auto-subscrição." #. 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. @@ -1309,40 +1394,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +msgid "Cannot delete someone else's subscription." msgstr "Não foi possível apagar a auto-subscrição." -#: actions/atompubsubscriptionfeed.php:150 -#, fuzzy, php-format -msgid "People %s has subscribed to on %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 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: 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 get a non-existing attachment. @@ -1353,10 +1435,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Nome de utilizador não definido." @@ -1387,30 +1470,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Antevisão" @@ -1448,7 +1537,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Perdi os dados do nosso ficheiro." @@ -1467,35 +1557,42 @@ msgstr "Falha ao actualizar avatar." msgid "Avatar deleted." msgstr "Avatar apagado." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "Fundo" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1529,14 +1626,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Não bloquear este utilizador" @@ -1548,7 +1644,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Sim" @@ -1564,31 +1660,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 @@ -1659,23 +1730,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 @@ -1737,7 +1791,8 @@ msgid "Account deleted." msgstr "Avatar apagado." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Criar uma conta" @@ -1759,8 +1814,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Confirmação" @@ -1835,8 +1891,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." @@ -1891,10 +1949,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1934,19 +1993,30 @@ msgstr "Não apagar esta nota" 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." @@ -1954,82 +2024,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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2039,98 +2133,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 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 "Repor estilos predefinidos" +#. 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 "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 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 "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:84 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:99 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. @@ -2222,14 +2326,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "Tem de ser administrador para editar o grupo." @@ -2290,8 +2396,8 @@ msgstr "Endereço de correio já confirmado." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Remover" @@ -2317,15 +2423,15 @@ 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 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Correio recebido" @@ -2336,13 +2442,13 @@ 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:180 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:189 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." @@ -2355,7 +2461,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Novo" @@ -2433,9 +2539,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2451,8 +2558,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Nenhuma confirmação pendente para cancelar." @@ -2463,8 +2570,9 @@ 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:468 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. @@ -2483,24 +2591,25 @@ msgstr "Esse não é o seu endereço electrónico." msgid "The email address was removed." msgstr "O endereço de correio electrónico foi removido." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Adicionado endereço electrónico de entrada novo." @@ -2598,7 +2707,7 @@ msgstr "Não esperava esta resposta!" 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 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Pode usar a subscrição local!" @@ -2728,22 +2837,19 @@ 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." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -2751,23 +2857,28 @@ 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:244 msgid "Upload" msgstr "Carregar" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Cortar" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "Logotipo actualizado." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "Não foi possível actualizar o logotipo." @@ -2852,7 +2963,7 @@ 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 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Criar um grupo novo" @@ -2908,14 +3019,14 @@ msgid "Error removing the block." msgstr "Erro ao remover o bloqueio." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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 +#: actions/imsettings.php:71 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2925,23 +3036,23 @@ msgstr "" "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 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "Endereço IM" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2956,7 +3067,7 @@ msgstr "" #. 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 " @@ -2967,63 +3078,63 @@ msgstr "" "MI ou no GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "Preferências de MI" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Enviar-me notas via Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk 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 +#: actions/imsettings.php:171 msgid "Send me replies through Jabber/GTalk 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk 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 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Preferências gravadas." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 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 +#: actions/imsettings.php:317 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3033,28 +3144,29 @@ msgstr "" "aprovar que %s envie mensagens para si." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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." +#: 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 +#: 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: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "O endereço do mensageiro instantâneo foi removido." @@ -3260,131 +3372,145 @@ 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 "" @@ -3408,11 +3534,11 @@ msgstr "Entrar" msgid "Login to site" msgstr "Iniciar sessão no site" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Lembrar-me neste computador" -#: 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 "" "De futuro, iniciar sessão automaticamente. Não usar em computadores " @@ -3801,7 +3927,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" @@ -3809,7 +3936,8 @@ 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" @@ -3817,7 +3945,7 @@ msgstr "Nova" msgid "6 or more characters" msgstr "6 ou mais caracteres" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Repita a senha nova" @@ -3841,11 +3969,12 @@ msgstr "Senha antiga incorrecta." msgid "Error saving user; invalid." msgstr "Erro ao guardar utilizador; inválido." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Não é possível guardar a nova senha." -#: 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 "Senha gravada." @@ -4172,12 +4301,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 "" @@ -4185,33 +4314,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:433 +#: lib/groupeditform.php:146 #, 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Página pessoal" #. 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 "URL da sua página pessoal, blogue ou perfil noutro site na internet" @@ -4219,7 +4349,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:471 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4227,44 +4357,44 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "Categorias" #. 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 "" @@ -4272,27 +4402,27 @@ msgstr "" "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 +#: actions/profilesettings.php:171 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 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "Subscrever automaticamente quem me subscreva (óptimo para não-humanos)" @@ -4300,7 +4430,7 @@ 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:229 #, fuzzy, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4308,52 +4438,50 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Criar uma conta" @@ -4477,37 +4605,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." @@ -4515,69 +4651,103 @@ 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. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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: 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 "Repita a senha nova" + +#. 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." @@ -4585,24 +4755,35 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Não é possível guardar a nova senha." + +#. 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 "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." @@ -4618,7 +4799,7 @@ msgstr "Desculpe, código de convite inválido." msgid "Registration successful" msgstr "Registo efectuado" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Registar" @@ -4646,64 +4827,56 @@ 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." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 ou mais caracteres" #. 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 "Correio" -#: 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 "Usado apenas para actualizações, anúncios e recuperação da senha" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Nome mais longo, de preferência o seu nome \"verdadeiro\"" -#: actions/register.php:463 +#: actions/register.php:462 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:524 +#: actions/register.php:523 #, 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:533 #, 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:537 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:540 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:545 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4713,7 +4886,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:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4746,7 +4919,7 @@ msgstr "" "\n" "Obrigado por se ter registado e esperamos que se divirta usando este serviço." -#: 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.)" @@ -4754,7 +4927,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." @@ -4766,74 +4939,77 @@ 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 +#: actions/remotesubscribe.php:129 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 +#: actions/remotesubscribe.php:133 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 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Subscrever" -#: actions/remotesubscribe.php:159 +#: actions/remotesubscribe.php:158 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Repetida" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Repetida!" @@ -5059,7 +5235,7 @@ msgstr "Organização" #. 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 "Descrição" @@ -5082,8 +5258,9 @@ msgstr "Operações da aplicação" msgid "Reset key & secret" msgstr "Reiniciar chave e segredo" +#. TRANS: Title of form for deleting a user. #: actions/showapplication.php:252 lib/deletegroupform.php:121 -#: lib/deleteuserform.php:66 lib/noticelist.php:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Apagar" @@ -5212,7 +5389,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Nomes alternativos" @@ -5606,70 +5783,70 @@ 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 +#: actions/smssettings.php:152 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." @@ -5678,32 +5855,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." @@ -5713,39 +5890,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 " @@ -5756,7 +5933,7 @@ msgstr "" "para %s." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Nenhum código introduzido" @@ -6018,10 +6195,6 @@ 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 "" @@ -6256,12 +6429,12 @@ 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." @@ -6269,7 +6442,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!" @@ -7241,23 +7414,27 @@ 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." @@ -7812,26 +7989,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:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Ir para o instalador." @@ -7903,12 +8080,21 @@ 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: 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 @@ -7986,33 +8172,29 @@ msgstr "Prosseguir" msgid "Grant this user the \"%s\" role" msgstr "Atribuir a este utilizador a função \"%s\"" -#: lib/groupeditform.php:154 -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:155 #, 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:160 msgid "Describe the group or topic" msgstr "Descreva o grupo ou assunto" -#: 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] "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:174 #, 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:182 #, fuzzy, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9222,14 +9404,9 @@ msgstr[1] "há cerca de %d meses atrás" 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." @@ -9265,3 +9442,30 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "Grupo não existe" + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "Método da API não encontrado." + +#~ msgid "Reset" +#~ msgstr "Reiniciar" + +#~ 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." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 ou mais caracteres. Obrigatório." + +#~ msgid "Same as password above. Required." +#~ msgstr "Repita a senha acima. Obrigatório." + +#~ 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" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s não é uma cor válida!" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index b19d55525d..84d6080221 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -15,18 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:35:19+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:57:51+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 (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -81,6 +81,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Salvar" @@ -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. @@ -136,8 +139,8 @@ msgstr "Esta página não existe." #: 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,7 +151,7 @@ msgstr "Esta página não existe." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -318,7 +321,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: 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." @@ -340,7 +357,8 @@ 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." @@ -350,7 +368,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -376,8 +394,8 @@ msgstr[1] "" #: 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/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." @@ -385,13 +403,18 @@ 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/groupdesignsettings.php:266 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 +#, fuzzy +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. @@ -402,31 +425,38 @@ msgstr "Principal" 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 +#. 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 "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." @@ -522,7 +552,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:91 msgid "Could not delete favorite." msgstr "Não foi possível excluir a favorita." @@ -568,7 +599,7 @@ msgstr "Não foi possível encontrar usuário de destino." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Esta identificação já está em uso. Tente outro." @@ -578,7 +609,7 @@ msgstr "Esta identificação já está em uso. Tente 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:140 actions/profilesettings.php:247 +#: actions/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Não é uma identificação válida." @@ -590,7 +621,7 @@ msgstr "Não é uma identificação válida." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "A URL informada não é válida." @@ -600,7 +631,7 @@ msgstr "A URL informada não é 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:151 actions/profilesettings.php:256 +#: actions/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." msgstr "O nome completo é muito extenso (máx. 255 caracteres)" @@ -627,7 +658,7 @@ msgstr[1] "A descrição é muito extensa (máximo %d caracteres)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 msgid "Location is too long (maximum 255 characters)." msgstr "A localização é muito extensa (máx. 255 caracteres)." @@ -684,22 +715,26 @@ 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." @@ -711,9 +746,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." @@ -750,7 +787,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." @@ -770,18 +807,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -801,18 +842,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Submissão inesperada de formulário." @@ -864,9 +908,9 @@ msgstr "Conta" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Usuário" @@ -874,7 +918,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Senha" @@ -885,7 +929,7 @@ msgstr "Senha" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -959,6 +1003,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 @@ -978,39 +1023,51 @@ msgstr "Você não pode repetir a sua própria mensagem." msgid "Already repeated that notice." msgstr "Você já repetiu essa mensagem." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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 +#. 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 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 +#, fuzzy +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" @@ -1138,58 +1195,52 @@ 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:334 -#, fuzzy +#: actions/apitimelineuser.php:336 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:345 -#, fuzzy, php-format +#: actions/apitimelineuser.php:347 +#, 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:378 -#, fuzzy, php-format +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 +#, 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:406 +#: actions/apitimelineuser.php:409 #, php-format msgid "Notice with URI \"%s\" already exists." msgstr "Já existe uma mensagem com a URI \"%s\"." -#: actions/apitimelineuser.php:437 -#, 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." @@ -1200,110 +1251,131 @@ msgstr "O método da API está em construção." 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 msgid "No such profile." msgstr "Este perfil não existe." +#. 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 "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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 -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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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" +msgid "Not a member." +msgstr "Não é um membro" -#: actions/atompubshowmembership.php:115 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "O método HTTP não é suportado." - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "" +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. @@ -1311,42 +1383,38 @@ msgstr "" #: 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" #. 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 "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" #. 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 salvar a assinatura." - -#: actions/atompubsubscriptionfeed.php:150 -#, fuzzy, php-format -msgid "People %s has subscribed to on %s" -msgstr "Assinantes de %s" +msgid "Cannot delete someone else's subscription." +msgstr "Não é possível excluir a assinatura de outra pessoa" #. TRANS: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 -#, fuzzy +#: actions/atompubsubscriptionfeed.php:249 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:257 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. +#: 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 get a non-existing attachment. #: actions/attachment.php:73 @@ -1356,10 +1424,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Nenhuma identificação." @@ -1391,30 +1460,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Pré-visualizar" @@ -1449,7 +1524,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Os dados do nosso arquivo foram perdidos." @@ -1468,35 +1544,47 @@ msgstr "Não foi possível atualizar o avatar." msgid "Avatar deleted." msgstr "O avatar foi excluído." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" -msgstr "" +msgstr "Fazer backup da conta" -#: actions/backupaccount.php:80 -#, fuzzy +#. 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 repetir mensagens." +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 "" +msgstr "Você não pode fazer backup da sua conta." -#: actions/backupaccount.php:232 +#. 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 " +"\">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." -#: actions/backupaccount.php:255 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "Fundo" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1531,14 +1619,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Não bloquear este usuário" @@ -1550,7 +1637,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Sim" @@ -1566,31 +1653,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 @@ -1660,23 +1722,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 @@ -1737,7 +1782,8 @@ msgid "Account deleted." msgstr "O avatar foi excluído." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Criar uma conta" @@ -1759,8 +1805,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Confirmar" @@ -1834,8 +1881,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." @@ -1886,10 +1935,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1929,19 +1979,30 @@ msgstr "Não excluir esta mensagem." 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." @@ -1949,80 +2010,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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2032,98 +2117,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 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 "Restaura a aparência padrão" +#. 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 "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 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 "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:84 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:99 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. @@ -2213,14 +2308,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "Você deve ser um administrador para editar o grupo." @@ -2281,8 +2378,8 @@ msgstr "Endereço de e-mail já confirmado." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Remover" @@ -2307,15 +2404,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "E-mail de recebimento" @@ -2326,13 +2423,13 @@ 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:180 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:189 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." @@ -2345,7 +2442,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Novo" @@ -2423,9 +2520,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2441,8 +2539,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Nenhuma confirmação pendente para cancelar." @@ -2453,8 +2551,9 @@ 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:468 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. @@ -2473,24 +2572,25 @@ msgstr "Esse não é seu endereço de email." msgid "The email address was removed." msgstr "O endereço de e-mail foi removido." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "" "Foi adicionado um novo endereço de e-mail para recebimento de mensagens." @@ -2590,7 +2690,7 @@ msgstr "Não esperava por esta resposta!" 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 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Você pode usar a assinatura local!" @@ -2721,22 +2821,19 @@ 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." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -2744,23 +2841,28 @@ 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:244 msgid "Upload" msgstr "Enviar" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Cortar" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 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:416 msgid "Failed updating logo." msgstr "Não foi possível atualizar a logo." @@ -2845,7 +2947,7 @@ 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 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Criar um novo grupo" @@ -2901,14 +3003,14 @@ msgid "Error removing the block." msgstr "Erro na remoção do bloqueio." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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 +#: actions/imsettings.php:71 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2918,23 +3020,23 @@ msgstr "" "%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 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "Endereço do MI" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2949,7 +3051,7 @@ msgstr "" #. 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 " @@ -2960,65 +3062,65 @@ msgstr "" "ou no GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: 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 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Envie-me mensagens via Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk 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 +#: actions/imsettings.php:171 msgid "Send me replies through Jabber/GTalk 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk 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 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "As preferências foram salvas." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 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 +#: actions/imsettings.php:317 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3028,28 +3130,29 @@ msgstr "" "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 +#: 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." +#: 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 +#: 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: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "O endereço de mensageiro instantâneo foi removido." @@ -3250,44 +3353,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." @@ -3295,92 +3405,99 @@ 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" @@ -3405,11 +3522,11 @@ msgstr "Entrar" msgid "Login to site" msgstr "Autenticar-se no site" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Lembrar neste computador" -#: 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 "" "Entra automaticamente da próxima vez, sem pedir a senha. Não use em " @@ -3805,7 +3922,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" @@ -3813,7 +3931,8 @@ 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" @@ -3821,7 +3940,7 @@ msgstr "Senha nova" msgid "6 or more characters" msgstr "No mínimo 6 caracteres" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Igual à senha acima" @@ -3845,11 +3964,12 @@ msgstr "A senha anterior está errada" msgid "Error saving user; invalid." msgstr "Erro ao salvar usuário; inválido." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Não é possível salvar a nova senha." -#: 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 "A senha foi salva." @@ -4158,12 +4278,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 "" @@ -4171,39 +4291,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:433 +#: lib/groupeditform.php:146 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Site" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:125 +#: actions/profilesettings.php:121 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:471 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4211,44 +4332,44 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "Etiquetas" #. 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 "" @@ -4256,27 +4377,27 @@ msgstr "" "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 +#: actions/profilesettings.php:171 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 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -4285,7 +4406,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 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4293,51 +4414,49 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Criar uma conta" @@ -4461,36 +4580,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." @@ -4498,69 +4625,103 @@ 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. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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: 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 "Igual à senha acima" + +#. 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." @@ -4568,23 +4729,34 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Não é possível salvar a nova senha." + +#. 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 "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á " @@ -4602,7 +4774,7 @@ msgstr "Desculpe, mas o código do convite é inválido." msgid "Registration successful" msgstr "Registro realizado com sucesso" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrar-se" @@ -4630,38 +4802,30 @@ 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." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "No mínimo 6 caracteres" #. 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 "E-mail" -#: 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 "Usado apenas para atualizações, anúncios e recuperações de senha" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Nome completo, de preferência seu nome \"real\"" -#: actions/register.php:463 +#: actions/register.php:462 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:524 +#: actions/register.php:523 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." @@ -4669,23 +4833,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:533 #, 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:537 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:540 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:545 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4695,7 +4859,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:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4728,7 +4892,7 @@ msgstr "" "\n" "Obrigado por se registrar e esperamos que você aproveite o serviço." -#: 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.)" @@ -4736,7 +4900,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." @@ -4748,73 +4912,76 @@ 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 +#: actions/remotesubscribe.php:129 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 +#: actions/remotesubscribe.php:133 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 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Assinar" -#: actions/remotesubscribe.php:159 +#: actions/remotesubscribe.php:158 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Repetida" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Repetida!" @@ -5043,7 +5210,7 @@ msgstr "Organização" #. 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 "Descrição" @@ -5066,8 +5233,9 @@ msgstr "Ações da aplicação" msgid "Reset key & secret" msgstr "Restaurar a chave e o segredo" +#. TRANS: Title of form for deleting a user. #: actions/showapplication.php:252 lib/deletegroupform.php:121 -#: lib/deleteuserform.php:66 lib/noticelist.php:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Excluir" @@ -5194,7 +5362,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Apelidos" @@ -5587,70 +5755,70 @@ 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 +#: actions/smssettings.php:152 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." @@ -5659,32 +5827,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." @@ -5693,39 +5861,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 " @@ -5735,7 +5903,7 @@ 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 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Não foi digitado nenhum código" @@ -5996,10 +6164,6 @@ 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 "" @@ -6233,12 +6397,12 @@ 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." @@ -6246,7 +6410,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!" @@ -7214,24 +7378,29 @@ 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." @@ -7795,26 +7964,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:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Ir para o instalador." @@ -7885,12 +8054,21 @@ 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: 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 @@ -7968,27 +8146,23 @@ msgstr "Ir" msgid "Grant this user the \"%s\" role" msgstr "Associa o papel \"%s\" a este usuário" -#: lib/groupeditform.php:154 -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" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 #, 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:160 msgid "Describe the group or topic" msgstr "Descreva o grupo ou tópico" -#: 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] "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:174 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." @@ -7996,7 +8170,7 @@ msgstr "" "Localização do grupo, caso tenha alguma, como \"cidade, estado (ou região), " "país\"" -#: lib/groupeditform.php:190 +#: lib/groupeditform.php:182 #, fuzzy, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9207,14 +9381,9 @@ msgstr[1] "há cerca de %d meses atrás" 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." @@ -9252,3 +9421,30 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "Esse grupo não existe." + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "O método HTTP não é suportado." + +#~ msgid "Reset" +#~ msgstr "Restaurar" + +#~ 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." + +#~ msgid "6 or more characters. Required." +#~ msgstr "No mínimo 6 caracteres. Obrigatório." + +#~ msgid "Same as password above. Required." +#~ msgstr "Igual à senha acima. Obrigatório." + +#~ 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" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s não é uma cor válida!" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index fb8300a0fe..6a1e10d2c7 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -16,18 +16,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:35:20+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:57:54+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-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: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -83,6 +83,7 @@ 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 text for saving "Other settings" in profile. @@ -94,13 +95,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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Сохранить" @@ -118,6 +119,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. @@ -138,8 +141,8 @@ msgstr "Нет такой страницы." #: 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,7 +153,7 @@ msgstr "Нет такой страницы." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -318,7 +321,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "Не удаётся обновить пользователя." @@ -340,7 +357,8 @@ 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 "Не удаётся сохранить профиль." @@ -350,7 +368,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -379,8 +397,8 @@ msgstr[2] "" #: 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/userdesignsettings.php:201 actions/userdesignsettings.php:211 +#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263 msgid "Unable to save your design settings." msgstr "Не удаётся сохранить ваши настройки оформления!" @@ -388,13 +406,18 @@ msgstr "Не удаётся сохранить ваши настройки оф #. TRANS: Client error displayed when a database error occurs updating profile colours. #: actions/apiaccountupdateprofilebackgroundimage.php:191 #: actions/apiaccountupdateprofilecolors.php:139 +#: actions/groupdesignsettings.php:266 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. @@ -405,31 +428,38 @@ msgstr "Главная" 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 "Неудача при блокировке пользователя." @@ -522,7 +552,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:91 msgid "Could not delete favorite." msgstr "Не удаётся удалить любимую запись." @@ -570,7 +601,7 @@ msgstr "Не удаётся найти целевого пользователя #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое." @@ -580,7 +611,7 @@ msgstr "Такое имя уже используется. Попробуйте #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Неверное имя." @@ -592,7 +623,7 @@ msgstr "Неверное имя." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "URL Главной страницы неверен." @@ -602,7 +633,7 @@ msgstr "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:151 actions/profilesettings.php:256 +#: actions/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." msgstr "Полное имя слишком длинное (максимум 255 символов)." @@ -630,7 +661,7 @@ msgstr[2] "Слишком длинное описание (максимум %d #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 msgid "Location is too long (maximum 255 characters)." msgstr "Слишком длинное месторасположение (максимум 255 символов)." @@ -688,22 +719,26 @@ 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." @@ -715,9 +750,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." @@ -754,7 +791,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 "Недопустимый ключ запроса или верификатор." @@ -774,18 +811,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -804,18 +845,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Нетиповое подтверждение формы." @@ -867,9 +911,9 @@ msgstr "Аккаунт" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Имя" @@ -877,7 +921,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Пароль" @@ -888,7 +932,7 @@ msgstr "Пароль" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -962,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 @@ -981,39 +1026,51 @@ msgstr "Невозможно повторить собственную запи 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" #. 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 +#, 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 #, php-format msgid "Deleted notice %d" msgstr "Запись %d удалена" @@ -1147,54 +1204,52 @@ msgstr "Только пользователь может добавлять в msgid "Only accept AtomPub for Atom feeds." msgstr "Принимать только AtomPub для 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 "POST-запрос Atom должен быть объектом 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 "POST-запрос Atom должен быть объектом 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 "POST-запрос Atom должен быть объектом Atom." #. TRANS: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/apitimelineuser.php:334 +#: actions/apitimelineuser.php:336 #, fuzzy 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:345 +#: actions/apitimelineuser.php:347 #, fuzzy, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "Невозможно обработать действия объекта типа «%s»" #. TRANS: Client error displayed when posting a notice without content through the API. -#: actions/apitimelineuser.php:378 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, fuzzy, php-format msgid "No content for notice %d." msgstr "Найти запись по содержимому" #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, php-format msgid "Notice with URI \"%s\" already exists." msgstr "Запись с URI «%s» уже существует." -#: actions/apitimelineuser.php:437 -#, 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." @@ -1205,110 +1260,137 @@ msgstr "Метод API реконструируется." 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 +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 +#. 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 +#. 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 "Возможна обработка только POST-запросов." -#: 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 "Возможна обработка только POST-запросов." -#: 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 +#: 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 "Заблокировано администратором." -#: 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 -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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "HTTP-метод не поддерживается." - -#: 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. @@ -1316,41 +1398,38 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +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: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 #, 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 #, fuzzy, php-format -msgid "Unknown profile %s" +msgid "Unknown profile %s." msgstr "Неподдерживаемый тип файла" #. TRANS: Client error displayed trying to get a non-existing attachment. @@ -1361,10 +1440,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Нет имени." @@ -1396,30 +1476,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Просмотр" @@ -1454,7 +1540,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Потеряна информация о файле." @@ -1473,35 +1560,42 @@ msgstr "Неудача при обновлении аватары." msgid "Avatar deleted." msgstr "Аватар удалён." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "Фон" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1535,14 +1629,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: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:158 actions/deleteuser.php:156 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Не блокировать этого пользователя" @@ -1554,7 +1647,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Да" @@ -1570,31 +1663,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 @@ -1664,23 +1732,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 @@ -1741,7 +1792,8 @@ 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 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Создать новый аккаунт" @@ -1763,8 +1815,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Подтверждение" @@ -1838,8 +1891,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." @@ -1890,10 +1945,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1933,19 +1989,30 @@ msgstr "Не удалять эту запись" 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." @@ -1953,78 +2020,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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2034,98 +2125,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 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 "Сохранить" - +#. 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:84 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:99 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. @@ -2215,14 +2316,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "Вы должны быть администратором, чтобы изменять информацию о группе." @@ -2283,8 +2386,8 @@ msgstr "Подтверждённый в настоящее время элект #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Удалить" @@ -2309,15 +2412,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Входящий электронный адрес" @@ -2328,14 +2431,14 @@ 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:180 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:189 actions/smssettings.php:182 msgid "Make a new email address for posting to; cancels the old one." msgstr "" "Создаёт новый адрес электронной почты для отсылки сообщений; отменяет старый " @@ -2350,7 +2453,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Новый" @@ -2431,9 +2534,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2449,8 +2553,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Нет подтверждения отказа." @@ -2461,8 +2565,9 @@ 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:468 actions/smssettings.php:413 +#, fuzzy +msgid "Could not delete email confirmation." msgstr "Не удаётся удалить подверждение по электронному адресу." #. TRANS: Message given after successfully canceling e-mail address confirmation. @@ -2481,24 +2586,25 @@ msgstr "Это не Ваш электронный адрес." msgid "The email address was removed." msgstr "Адрес эл. почты удалён." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Новый входящий электронный адрес добавлен." @@ -2597,7 +2703,7 @@ msgstr "Неожиданный ответ!" msgid "User being listened to does not exist." msgstr "Указанный пользователь не существует." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Вы можете использовать локальную подписку!" @@ -2727,22 +2833,19 @@ 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 "Не удаётся обновить ваше оформление." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -2750,23 +2853,28 @@ msgstr "" "Здесь вы можете загрузить логотип для группы. Максимальный размер файла " "составляет %s." -#: actions/grouplogo.php:236 +#. TRANS: Submit button for uploading a group logo. +#: actions/grouplogo.php:244 msgid "Upload" msgstr "Загрузить" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Обрезать" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "Логотип обновлён." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "Неудача при обновлении логотипа." @@ -2851,7 +2959,7 @@ msgstr "" "группу, которая вас интересует? Попробуйте [найти её](%%%%action.groupsearch%" "%%%) или [создайте собственную](%%%%action.newgroup%%%%)!" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Создать новую группу" @@ -2907,14 +3015,14 @@ msgid "Error removing the block." msgstr "Ошибка при удалении данного блока." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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](%%" @@ -2924,23 +3032,23 @@ msgstr "" "(%%doc.im%%). Настройте ваш аккаунт и предпочтения ниже." #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "IM-адрес" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2955,7 +3063,7 @@ msgstr "" #. 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 " @@ -2966,64 +3074,64 @@ msgstr "" "мессенджере или в GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "Настройки IM" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Посылать мне записи через Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Публиковать запись, когда мой Jabber/GTalk - статус изменяется." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Опубликовать MicroID для моего Jabber/GTalk - адреса." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Предпочтения сохранены." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3033,28 +3141,29 @@ msgstr "" "%s для отправки вам сообщений." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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." +#: 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 +#: actions/imsettings.php:396 msgid "IM confirmation cancelled." msgstr "Подтверждение IM отменено." #. TRANS: Message given trying to remove an IM 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "Адрес IM удалён." @@ -3263,44 +3372,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." @@ -3308,87 +3424,94 @@ 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 "Сохранить настройки лицензии" @@ -3412,11 +3535,11 @@ msgstr "Вход" msgid "Login to site" msgstr "Авторизоваться" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Запомнить меня" -#: 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 "Автоматическии входить в дальнейшем. Не для общедоступных компьютеров!" @@ -3807,7 +3930,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 "Пароль сохранён." @@ -3815,7 +3939,8 @@ 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 "Новый пароль" @@ -3823,7 +3948,7 @@ msgstr "Новый пароль" msgid "6 or more characters" msgstr "6 или больше знаков" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Тот же пароль, что и выше" @@ -3847,11 +3972,12 @@ msgstr "Некорректный старый пароль" msgid "Error saving user; invalid." msgstr "Ошибка сохранения пользователя; неверное имя." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Не удаётся сохранить новый пароль." -#: 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 "Пароль сохранён." @@ -4158,12 +4284,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 "" @@ -4171,40 +4297,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:433 +#: lib/groupeditform.php:146 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Главная" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:125 +#: actions/profilesettings.php:121 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:471 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4213,44 +4340,44 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 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" msgstr "" @@ -4258,27 +4385,27 @@ 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 +#: 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 "Автоматически подписываться на всех, кто подписался на меня" @@ -4286,7 +4413,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 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4295,51 +4422,49 @@ 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 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Создать новый аккаунт" @@ -4462,35 +4587,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." @@ -4498,67 +4631,100 @@ msgstr "" "Если вы забыли или потеряли свой пароль, вы можете запросить новый пароль на " "email-адрес вашей учётной записи." -#: actions/recoverpassword.php:158 -msgid "You have been identified. Enter a new password below. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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: 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 "Тот же пароль, что и выше" + +#. 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." @@ -4566,23 +4732,34 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Не удаётся сохранить новый пароль." + +#. 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 "Ошибка в установках пользователя." -#: 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 "Новый пароль успешно сохранён. Вы авторизовались." @@ -4598,7 +4775,7 @@ msgstr "Извините, неверный пригласительный код msgid "Registration successful" msgstr "Регистрация успешна!" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Регистрация" @@ -4629,38 +4806,30 @@ 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 "Тот же пароль что и сверху. Обязательное поле." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 или больше знаков" #. 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 "Email" -#: 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 "Нужна только для обновлений, осведомлений и восстановления пароля." -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Полное имя, предпочтительно Ваше настоящее имя" -#: actions/register.php:463 +#: actions/register.php:462 msgid "URL of your homepage, blog, or profile on another site" msgstr "Адрес твоей страницы, дневника или профиля на другом портале" -#: actions/register.php:524 +#: actions/register.php:523 #, php-format msgid "" "I understand that content and data of %1$s are private and confidential." @@ -4668,23 +4837,23 @@ msgstr "" "Я понимаю, что содержание и данные %1$s являются частными и " "конфиденциальными." -#: actions/register.php:534 +#: actions/register.php:533 #, 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: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, " @@ -4693,7 +4862,7 @@ msgstr "" "Мои тексты и файлы доступны на условиях %s, за исключением следующей личной " "информации: пароля, почтового адреса, номера мессенджера и номера телефона." -#: actions/register.php:589 +#: actions/register.php:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4727,7 +4896,7 @@ msgstr "" "Спасибо за то, что присоединились к нам, надеемся, что вы получите " "удовольствие от использования данного сервиса!" -#: 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.)" @@ -4735,7 +4904,7 @@ msgstr "" "(Вы должный получить письмо с описанием того, как подтвердить свой " "электронный адрес.)" -#: actions/remotesubscribe.php:98 +#: actions/remotesubscribe.php:97 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -4745,72 +4914,75 @@ 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 +#: 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 +#: actions/remotesubscribe.php:133 msgid "URL of your profile on another compatible microblogging service" msgstr "Адрес URL твоего профиля на другом подходящем сервисе микроблогинга" -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Подписаться" -#: actions/remotesubscribe.php:159 +#: 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." +#: 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Повторено" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Повторено!" @@ -5037,7 +5209,7 @@ msgstr "Организация" #. 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 "Описание" @@ -5060,8 +5232,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:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Удалить" @@ -5189,7 +5362,7 @@ msgid "Note" msgstr "Запись" #. 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 "Алиасы" @@ -5581,72 +5754,72 @@ 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 +#: 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." @@ -5655,32 +5828,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." @@ -5689,39 +5862,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 " @@ -5732,7 +5905,7 @@ msgstr "" "то сообщите нам об этом по электронной почте %s." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Код не введён" @@ -5997,10 +6170,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 "" @@ -6230,12 +6399,12 @@ 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." @@ -6243,7 +6412,7 @@ msgstr "" "Настройте внешний вид своего профиля, установив фоновое изображение и " "цветовую гамму на свой выбор." -#: actions/userdesignsettings.php:282 +#: actions/userdesignsettings.php:272 msgid "Enjoy your hotdog!" msgstr "Приятного аппетита!" @@ -7214,22 +7383,26 @@ 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 "Не удаётся удалить аннулированный ключ." @@ -7796,24 +7969,24 @@ msgstr "" "tracking — пока не реализовано.\n" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 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:153 +#: lib/common.php:158 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 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Перейти к установщику" @@ -7880,11 +8053,21 @@ 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: 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 @@ -7962,34 +8145,30 @@ msgstr "Перейти" msgid "Grant this user the \"%s\" role" msgstr "Назначить этому пользователю роль «%s»" -#: lib/groupeditform.php:154 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1-64 латинских строчных буквы или цифры, без пробелов" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 msgid "URL of the homepage or blog of the group or topic." msgstr "Адрес домашней страницы или блога группы или темы." -#: lib/groupeditform.php:168 +#: lib/groupeditform.php:160 msgid "Describe the group or topic" msgstr "Опишите группу или тему" -#: 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" +#: 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." msgstr[0] "Опишите группу или тему, используя до %d символов" msgstr[1] "Опишите группу или тему, используя до %d символов" msgstr[2] "Опишите группу или тему, используя до %d символов" -#: lib/groupeditform.php:182 +#: lib/groupeditform.php:174 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." msgstr "" "Местонахождение группы, если есть, например «Город, область (или регион), " "страна»." -#: lib/groupeditform.php:190 +#: lib/groupeditform.php:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9209,14 +9388,9 @@ msgstr[2] "около %d месяцев назад" 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 "" @@ -9259,3 +9433,30 @@ msgstr "Неверный XML, отсутствует корень XRD." #, php-format msgid "Getting backup from file '%s'." msgstr "Получение резервной копии из файла «%s»." + +#~ msgid "No such group" +#~ msgstr "Нет такой группы." + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "HTTP-метод не поддерживается." + +#~ msgid "Reset" +#~ msgstr "Сбросить" + +#~ msgid "" +#~ "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#~ msgstr "" +#~ "1-64 латинских строчных букв или цифр, без пробелов. Обязательное поле." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 или более символов. Обязательное поле." + +#~ msgid "Same as password above. Required." +#~ msgstr "Тот же пароль что и сверху. Обязательное поле." + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "1-64 латинских строчных буквы или цифры, без пробелов" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s не допустимым подходящим цветом!" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 8722900213..920ce732cc 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: 2011-01-14 23:32+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -70,6 +70,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" 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. @@ -125,8 +128,8 @@ msgstr "" #: 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 @@ -137,7 +140,7 @@ msgstr "" #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -297,7 +300,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "" @@ -319,7 +336,8 @@ 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 "" @@ -329,7 +347,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -351,8 +369,8 @@ msgstr[1] "" #: 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/userdesignsettings.php:201 actions/userdesignsettings.php:211 +#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263 msgid "Unable to save your design settings." msgstr "" @@ -360,13 +378,17 @@ msgstr "" #. TRANS: Client error displayed when a database error occurs updating profile colours. #: actions/apiaccountupdateprofilebackgroundimage.php:191 #: actions/apiaccountupdateprofilecolors.php:139 +#: actions/groupdesignsettings.php:266 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. @@ -377,31 +399,38 @@ msgstr "" 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 "" @@ -491,7 +520,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:91 msgid "Could not delete favorite." msgstr "" @@ -537,7 +567,7 @@ msgstr "" #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "" @@ -547,7 +577,7 @@ msgstr "" #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "" @@ -559,7 +589,7 @@ msgstr "" #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "" @@ -569,7 +599,7 @@ msgstr "" #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." msgstr "" @@ -596,7 +626,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:163 actions/profilesettings.php:269 +#: actions/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 msgid "Location is too long (maximum 255 characters)." msgstr "" @@ -653,22 +683,26 @@ 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 "" @@ -680,9 +714,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." @@ -719,7 +755,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 "" @@ -739,18 +775,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -769,18 +809,21 @@ 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 IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "" @@ -825,9 +868,9 @@ msgstr "" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "" @@ -835,7 +878,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "" @@ -846,7 +889,7 @@ msgstr "" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -916,6 +959,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 @@ -935,39 +979,50 @@ msgstr "" 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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 "" @@ -1098,51 +1153,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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, php-format msgid "No content for notice %d." msgstr "" #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, 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." @@ -1153,96 +1206,123 @@ msgstr "" 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 msgid "No such profile." 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 -#, php-format -msgid "Groups %s is a member of on %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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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" +#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group +#: actions/atompubshowmembership.php:91 +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" +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 +msgid "Cannot delete someone else's membership." msgstr "" #. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID. @@ -1251,39 +1331,36 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, php-format -msgid "No such profile id: %d" +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" +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" +msgid "Cannot delete someone else's subscription." msgstr "" #. TRANS: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 #, php-format -msgid "Unknown profile %s" +msgid "Unknown profile %s." msgstr "" #. TRANS: Client error displayed trying to get a non-existing attachment. @@ -1294,10 +1371,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "" @@ -1328,30 +1406,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "" @@ -1386,7 +1470,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "" @@ -1405,33 +1490,40 @@ msgstr "" msgid "Avatar deleted." msgstr "" -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 msgctxt "BUTTON" msgid "Backup" msgstr "" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1462,14 +1554,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: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:158 actions/deleteuser.php:156 +#: actions/block.php:158 msgid "Do not block this user" msgstr "" @@ -1481,7 +1572,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "" @@ -1497,31 +1588,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 @@ -1591,23 +1657,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 @@ -1665,7 +1714,8 @@ 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 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 msgid "Delete account" msgstr "" @@ -1686,8 +1736,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "" @@ -1757,8 +1808,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 "" @@ -1806,10 +1859,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1847,96 +1901,129 @@ msgstr "" 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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1944,98 +2031,106 @@ 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 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 "" - +#. 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:84 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:99 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. @@ -2125,14 +2220,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "" @@ -2193,8 +2290,8 @@ msgstr "" #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "" @@ -2217,15 +2314,15 @@ 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 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "" @@ -2236,13 +2333,13 @@ 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:180 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:189 actions/smssettings.php:182 msgid "Make a new email address for posting to; cancels the old one." msgstr "" @@ -2255,7 +2352,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "" @@ -2329,9 +2426,9 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2344,8 +2441,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "" @@ -2356,8 +2453,8 @@ 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:468 actions/smssettings.php:413 +msgid "Could not delete email confirmation." msgstr "" #. TRANS: Message given after successfully canceling e-mail address confirmation. @@ -2376,24 +2473,24 @@ msgstr "" msgid "The email address was removed." msgstr "" -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "" @@ -2486,7 +2583,7 @@ msgstr "" msgid "User being listened to does not exist." msgstr "" -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "" @@ -2611,44 +2708,46 @@ 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 -msgid "Couldn't update your design." -msgstr "" - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, 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:244 msgid "Upload" msgstr "" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "" -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "" @@ -2728,7 +2827,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "" @@ -2778,14 +2877,14 @@ msgid "Error removing the block." msgstr "" #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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](%%" @@ -2793,23 +2892,23 @@ msgid "" msgstr "" #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk address." msgstr "" #. TRANS: Form note in IM settings form. #. TRANS: %s is the IM address set for the site. -#: actions/imsettings.php:124 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2821,7 +2920,7 @@ msgstr "" #. 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 " @@ -2829,63 +2928,63 @@ msgid "" msgstr "" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "" #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: actions/imsettings.php:304 msgid "No Jabber ID." msgstr "" #. TRANS: Message given saving IM address that cannot be normalised. -#: actions/imsettings.php:320 +#: actions/imsettings.php:312 msgid "Cannot normalize that Jabber ID" msgstr "" #. TRANS: Message given saving IM address that not valid. -#: actions/imsettings.php:325 +#: 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2893,28 +2992,28 @@ msgid "" msgstr "" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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." +#: actions/imsettings.php:391 +msgid "Could not delete IM confirmation." msgstr "" #. TRANS: Message given after successfully canceling IM address confirmation. -#: actions/imsettings.php:405 +#: actions/imsettings.php:396 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 +#: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "" @@ -3082,130 +3181,144 @@ 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 "" @@ -3229,11 +3342,11 @@ msgstr "" msgid "Login to site" msgstr "" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "" -#: 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 "" @@ -3605,7 +3718,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 "" @@ -3613,7 +3727,8 @@ 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 "" @@ -3621,7 +3736,7 @@ msgstr "" msgid "6 or more characters" msgstr "" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "" @@ -3645,11 +3760,12 @@ msgstr "" msgid "Error saving user; invalid." msgstr "" -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "" -#: 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 "" @@ -3954,50 +4070,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:433 +#: lib/groupeditform.php:146 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:125 +#: actions/profilesettings.php:121 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:471 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4005,70 +4122,70 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 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" 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 +#: 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 "" @@ -4076,7 +4193,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 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4084,51 +4201,47 @@ 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 actions/tagother.php:178 #, 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: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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 msgid "Restore account" msgstr "" @@ -4238,123 +4351,170 @@ 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 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: Ttile for field label for password reset form where the password has to be typed again. +#: actions/recoverpassword.php:264 actions/register.php:441 +msgid "Same as password above." +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 "" -#: 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +msgid "Cannot save new password." +msgstr "" + +#. 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 "" -#: 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 "" @@ -4370,7 +4530,7 @@ msgstr "" msgid "Registration successful" msgstr "" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "" @@ -4396,66 +4556,58 @@ 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 "" - -#: actions/register.php:438 -msgid "6 or more characters. Required." -msgstr "" - -#: actions/register.php:442 -msgid "Same as password above. Required." +#: actions/register.php:437 +msgid "6 or more characters." msgstr "" #. 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 "" -#: 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 "" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "" -#: actions/register.php:463 +#: actions/register.php:462 msgid "URL of your homepage, blog, or profile on another site" msgstr "" -#: 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 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4474,13 +4626,13 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: 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.)" msgstr "" -#: actions/remotesubscribe.php:98 +#: actions/remotesubscribe.php:97 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -4488,72 +4640,72 @@ 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 +#: 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 +#: actions/remotesubscribe.php:133 msgid "URL of your profile on another compatible microblogging service" msgstr "" -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "" -#: actions/remotesubscribe.php:159 +#: 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "" @@ -4767,7 +4919,7 @@ msgstr "" #. 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 "" @@ -4790,8 +4942,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:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "" @@ -4909,7 +5062,7 @@ msgid "Note" msgstr "" #. 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 "" @@ -5273,141 +5426,141 @@ 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 +#: 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 " @@ -5415,7 +5568,7 @@ msgid "" msgstr "" #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "" @@ -5664,10 +5817,6 @@ 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 "" @@ -5887,18 +6036,18 @@ 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 "" @@ -6825,22 +6974,25 @@ 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 "" @@ -7348,24 +7500,24 @@ msgid "" msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 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:153 +#: lib/common.php:158 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 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "" @@ -7430,10 +7582,20 @@ 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: 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". @@ -7511,31 +7673,27 @@ 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 "" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 msgid "URL of the homepage or blog of the group or topic." msgstr "" -#: lib/groupeditform.php:168 +#: lib/groupeditform.php:160 msgid "Describe the group or topic" msgstr "" -#: lib/groupeditform.php:170 +#: lib/groupeditform.php:162 #, 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] "" msgstr[1] "" -#: lib/groupeditform.php:182 +#: lib/groupeditform.php:174 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." msgstr "" -#: lib/groupeditform.php:190 +#: lib/groupeditform.php:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -8621,14 +8779,9 @@ msgstr[1] "" 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 "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index feea4eb123..dd2445baee 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:35:22+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:57:58+0000\n" "Language-Team: Swedish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -78,6 +78,7 @@ 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 text for saving "Other settings" in profile. @@ -89,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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Spara" @@ -113,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. @@ -133,8 +136,8 @@ msgstr "Ingen sådan sida" #: 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,7 +148,7 @@ msgstr "Ingen sådan sida" #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -311,7 +314,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "Kunde inte uppdatera användare." @@ -333,7 +350,8 @@ 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." @@ -343,7 +361,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -369,8 +387,8 @@ msgstr[1] "" #: 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/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." @@ -378,13 +396,17 @@ 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/groupdesignsettings.php:266 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. @@ -395,31 +417,38 @@ msgstr "" 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 +#. 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 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." @@ -511,7 +540,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:91 msgid "Could not delete favorite." msgstr "Kunde inte ta bort favoriten." @@ -558,7 +588,7 @@ msgstr "Kunde inte hitta målanvändare." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Smeknamnet används redan. Försök med ett annat." @@ -568,7 +598,7 @@ msgstr "Smeknamnet används redan. Försök med ett annat." #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Inte ett giltigt smeknamn." @@ -580,7 +610,7 @@ msgstr "Inte ett giltigt smeknamn." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "Hemsida är inte en giltig webbadress." @@ -590,7 +620,7 @@ msgstr "Hemsida är inte en giltig webbadress." #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." msgstr "Fullständigt namn är för långt (max 255 tecken)." @@ -617,7 +647,7 @@ msgstr[1] "Beskrivning är för lång (max %d tecken)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 msgid "Location is too long (maximum 255 characters)." msgstr "Beskrivning av plats är för lång (max 255 tecken)." @@ -674,22 +704,26 @@ 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." @@ -701,9 +735,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." @@ -740,7 +776,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." @@ -761,18 +797,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -792,18 +832,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Oväntat inskick av formulär." @@ -854,9 +897,9 @@ msgstr "Konto" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Smeknamn" @@ -864,7 +907,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Lösenord" @@ -875,7 +918,7 @@ msgstr "Lösenord" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -948,6 +991,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 @@ -967,40 +1011,52 @@ msgstr "Kan inte upprepa din egen notis." msgid "Already repeated that notice." msgstr "Redan upprepat denna notis." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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" @@ -1133,51 +1189,49 @@ 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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, 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:406 +#: actions/apitimelineuser.php:409 #, fuzzy, php-format msgid "Notice with URI \"%s\" already exists." msgstr "Notis med den ID:n finns inte." -#: 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." @@ -1188,107 +1242,137 @@ msgstr "API-metoden är under uppbyggnad." msgid "User not found." msgstr "API-metod hittades inte." -#: actions/atompubfavoritefeed.php:70 -msgid "No such profile" -msgstr "Ingen sådan profil" +#. 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 +msgid "No such profile." +msgstr "Ingen sådan profil." -#: actions/atompubfavoritefeed.php:145 -#, php-format -msgid "Notices %s has favorited to on %s" -msgstr "" - -#: 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 -msgid "No such group" -msgstr "Ingen sådan grupp" +#. 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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "API-metod hittades inte." - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "" +msgid "Cannot delete someone else's membership." +msgstr "Kunde inte spara prenumeration." #. 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. @@ -1296,40 +1380,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +msgid "Cannot delete someone else's subscription." msgstr "Kunde inte spara prenumeration." -#: actions/atompubsubscriptionfeed.php:150 -#, fuzzy, php-format -msgid "People %s has subscribed to on %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 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: 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 get a non-existing attachment. @@ -1340,10 +1421,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Inget smeknamn." @@ -1375,30 +1457,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Förhandsgranska" @@ -1433,7 +1521,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Förlorade vår fildata." @@ -1452,35 +1541,42 @@ msgstr "Misslyckades uppdatera avatar." msgid "Avatar deleted." msgstr "Avatar borttagen." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "Bakgrund" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1514,14 +1610,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Blockera inte denna användare" @@ -1533,7 +1628,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Ja" @@ -1549,31 +1644,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 @@ -1644,23 +1714,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 @@ -1721,7 +1774,8 @@ msgid "Account deleted." msgstr "Avatar borttagen." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Skapa ett konto" @@ -1743,8 +1797,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Bekräfta" @@ -1818,8 +1873,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." @@ -1870,10 +1927,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1913,19 +1971,30 @@ msgstr "Ta inte bort denna notis" 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." @@ -1933,78 +2002,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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2014,98 +2107,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 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 "Återställ standardutseende" +#. 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 "Å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 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 "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:84 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:99 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. @@ -2195,14 +2298,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "Du måste vara en administratör för att redigera gruppen." @@ -2263,8 +2368,8 @@ msgstr "Aktuell, bekräftad e-postadress." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Ta bort" @@ -2289,15 +2394,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Inkommande e-post" @@ -2308,13 +2413,13 @@ 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:180 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:189 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." @@ -2328,7 +2433,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Ny" @@ -2402,9 +2507,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2420,8 +2526,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Ingen väntande bekräftelse att avbryta." @@ -2432,8 +2538,9 @@ 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:468 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. @@ -2452,24 +2559,25 @@ msgstr "Det är inte din e-postadress." msgid "The email address was removed." msgstr "E-postadressen togs bort." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Ny inkommande e-postadress tillagd." @@ -2568,7 +2676,7 @@ msgstr "Väntade mig inte denna respons!" msgid "User being listened to does not exist." msgstr "Användaren som lyssnas på existerar inte." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Du kan använda den lokala prenumerationen!" @@ -2697,22 +2805,19 @@ msgid "" 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." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -2720,23 +2825,28 @@ 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:244 msgid "Upload" msgstr "Ladda upp" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Beskär" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "Logtyp uppdaterad." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "Misslyckades uppdatera logtyp." @@ -2821,7 +2931,7 @@ 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 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Skapa en ny grupp" @@ -2878,14 +2988,14 @@ msgid "Error removing the block." msgstr "Fel vid hävning av blockering." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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 +#: actions/imsettings.php:71 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2895,23 +3005,23 @@ msgstr "" "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 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "Adress för snabbmeddelanden" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2925,7 +3035,7 @@ msgstr "" #. 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 " @@ -2935,65 +3045,65 @@ msgstr "" "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 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "Inställningar för snabbmeddelanden" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Skicka notiser till mig genom Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Posta en notis när min Jabber/GTalk-status ändras." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 msgid "Send me replies through Jabber/GTalk 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk 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 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Inställningar sparade." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 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 +#: actions/imsettings.php:317 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3003,28 +3113,29 @@ msgstr "" "att %s får skicka meddelanden till dig." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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." +#: 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 +#: 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: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "Adressen för snabbmeddelanden togs bort." @@ -3229,131 +3340,145 @@ 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" @@ -3377,11 +3502,11 @@ msgstr "Logga in" msgid "Login to site" msgstr "Logga in på webbplatsen" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Kom ihåg mig" -#: 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 "Logga in automatiskt i framtiden; inte för delade datorer!" @@ -3770,7 +3895,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" @@ -3778,7 +3904,8 @@ 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" @@ -3786,7 +3913,7 @@ msgstr "Nytt lösenord" msgid "6 or more characters" msgstr "Minst 6 tecken" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Samma som lösenordet ovan" @@ -3810,11 +3937,12 @@ msgstr "Felaktigt gammalt lösenord" msgid "Error saving user; invalid." msgstr "Fel vid sparande av användare; ogiltig." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Kan inte spara nytt lösenord." -#: 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 "Lösenord sparat." @@ -4132,12 +4260,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 "" @@ -4145,33 +4273,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:433 +#: lib/groupeditform.php:146 #, 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Hemsida" #. 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 "URL till din hemsida, blogg eller profil på en annan webbplats." @@ -4179,7 +4308,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:471 #, fuzzy, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4187,44 +4316,44 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "Taggar" #. 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 "" @@ -4232,27 +4361,27 @@ msgstr "" "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 +#: actions/profilesettings.php:171 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 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "" @@ -4262,7 +4391,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)." @@ -4270,52 +4399,50 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Skapa ett konto" @@ -4439,35 +4566,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." @@ -4475,68 +4610,101 @@ 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. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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: 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 "Samma som lösenordet ovan" + +#. 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." @@ -4544,24 +4712,35 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Kan inte spara nytt lösenord." + +#. 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 "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." @@ -4577,7 +4756,7 @@ msgstr "Tyvärr, ogiltig inbjudningskod." msgid "Registration successful" msgstr "Registreringen genomförd" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Registrera" @@ -4605,64 +4784,55 @@ 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." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "Minst 6 tecken" #. 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 "E-post" -#: 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 "" "Används endast för uppdateringar, tillkännagivanden och återskapande av " "lösenord" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Längre namn, förslagsvis ditt \"verkliga\" namn" -#: actions/register.php:463 +#: actions/register.php:462 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:524 +#: actions/register.php:523 #, 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:533 #, 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:537 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:540 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:545 #, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4671,7 +4841,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:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4704,7 +4874,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:612 msgid "" "(You should receive a message by email momentarily, with instructions on how " "to confirm your email address.)" @@ -4712,7 +4882,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." @@ -4724,74 +4894,77 @@ 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 +#: actions/remotesubscribe.php:129 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 +#: actions/remotesubscribe.php:133 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 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Prenumerera" -#: actions/remotesubscribe.php:159 +#: actions/remotesubscribe.php:158 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Upprepad" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Upprepad!" @@ -5017,7 +5190,7 @@ msgstr "Organisation" #. 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 "Beskrivning" @@ -5040,8 +5213,9 @@ msgstr "Åtgärder för applikation" msgid "Reset key & secret" msgstr "Återställ nyckel & hemlighet" +#. TRANS: Title of form for deleting a user. #: actions/showapplication.php:252 lib/deletegroupform.php:121 -#: lib/deleteuserform.php:66 lib/noticelist.php:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Ta bort" @@ -5169,7 +5343,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Alias" @@ -5558,70 +5732,70 @@ 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 +#: actions/smssettings.php:152 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." @@ -5630,32 +5804,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." @@ -5664,39 +5838,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 " @@ -5707,7 +5881,7 @@ msgstr "" "på %s och berätta." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Ingen kod ifylld" @@ -5970,10 +6144,6 @@ msgid "" 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 "" @@ -6210,19 +6380,19 @@ 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!" @@ -7185,23 +7355,27 @@ 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 "" @@ -7755,26 +7929,26 @@ msgstr "" "tracking - inte implementerat än.\n" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Gå till installeraren." @@ -7841,11 +8015,21 @@ 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: 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 @@ -7923,33 +8107,29 @@ msgstr "Gå" msgid "Grant this user the \"%s\" role" msgstr "Bevilja denna användare \"%s\"-rollen" -#: lib/groupeditform.php:154 -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:155 #, 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:160 msgid "Describe the group or topic" msgstr "Beskriv gruppen eller ämnet" -#: 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] "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:174 #, 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:182 #, fuzzy, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9153,14 +9333,9 @@ msgstr[1] "för ungefär %d månader sedan" 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." @@ -9196,3 +9371,31 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "Ingen sådan grupp" + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "API-metod hittades inte." + +#~ msgid "Reset" +#~ msgstr "Återställ" + +#~ 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." + +#~ msgid "6 or more characters. Required." +#~ msgstr "Minst 6 tecken. Måste fyllas i." + +#~ msgid "Same as password above. Required." +#~ msgstr "Samma som lösenordet ovan. Måste fyllas i." + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "1-64 små bokstäver eller nummer, inga punkter eller mellanslag" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s är inte en giltig färg!" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 5aaee51359..3cdea242a4 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:35:23+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:58:01+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\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: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -75,6 +75,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" 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. @@ -130,8 +133,8 @@ msgstr "అటువంటి పేజీ లేదు." #: 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,7 +145,7 @@ msgstr "అటువంటి పేజీ లేదు." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -304,7 +307,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 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 "వాడుకరిని తాజాకరించలేకున్నాం." @@ -327,7 +344,8 @@ 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 "ప్రొఫైలుని భద్రపరచలేకున్నాం." @@ -338,7 +356,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -360,8 +378,8 @@ msgstr[1] "" #: 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/userdesignsettings.php:201 actions/userdesignsettings.php:211 +#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263 msgid "Unable to save your design settings." msgstr "మీ రూపురేఖల అమరికలని భద్రపరచలేకున్నాం." @@ -369,14 +387,19 @@ msgstr "మీ రూపురేఖల అమరికలని భద్రప #. TRANS: Client error displayed when a database error occurs updating profile colours. #: actions/apiaccountupdateprofilebackgroundimage.php:191 #: actions/apiaccountupdateprofilecolors.php:139 +#: actions/groupdesignsettings.php:266 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 +#, 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. @@ -387,31 +410,38 @@ msgstr "ప్రధాన" 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 "వాడుకరి నిరోధం విఫలమైంది." @@ -503,7 +533,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:91 msgid "Could not delete favorite." msgstr "ఇష్టాంశాన్ని తొలగించలేకపోయాం." @@ -549,7 +580,7 @@ msgstr "లక్ష్యిత వాడుకరిని కనుగొన #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్నారు. మరోటి ప్రయత్నించండి." @@ -559,7 +590,7 @@ msgstr "ఆ పేరుని ఇప్పటికే వాడుతున్ #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "సరైన పేరు కాదు." @@ -571,7 +602,7 @@ msgstr "సరైన పేరు కాదు." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "హోమ్ పేజీ URL సరైనది కాదు." @@ -581,7 +612,7 @@ msgstr "హోమ్ పేజీ 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:151 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)." @@ -609,7 +640,7 @@ msgstr[1] "వివరణ చాలా పెద్దగా ఉంది (%d #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 #, fuzzy msgid "Location is too long (maximum 255 characters)." @@ -667,22 +698,26 @@ 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 గుంపులో చేర్చలేకపోయాం" @@ -694,9 +729,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." @@ -733,7 +770,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 "సందేశపు విషయం సరైనది కాదు" @@ -756,18 +793,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -787,18 +828,21 @@ 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 IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "" @@ -843,9 +887,9 @@ msgstr "ఖాతా" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "పేరు" @@ -853,7 +897,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "సంకేతపదం" @@ -864,7 +908,7 @@ msgstr "సంకేతపదం" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -936,6 +980,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 @@ -955,40 +1000,52 @@ msgstr "మీ నోటీసుని మీరే పునరావృతి 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" 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 +#, 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 "నోటీసుని తొలగించు" @@ -1122,51 +1179,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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, fuzzy, php-format msgid "No content for notice %d." msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు." #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, fuzzy, 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 @@ -1178,109 +1233,138 @@ msgstr "నిర్ధారణ సంకేతం కనబడలేదు." 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. +#: 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 "అటువంటి ఫైలు లేదు." +#. 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 -msgid "No such group" -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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "నిర్ధారణ సంకేతం కనబడలేదు." - -#: 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. @@ -1288,40 +1372,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +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: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 #, fuzzy, php-format -msgid "Unknown profile %s" +msgid "Unknown profile %s." msgstr "తెలియని ఫైలు రకం" #. TRANS: Client error displayed trying to get a non-existing attachment. @@ -1332,10 +1413,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "పేరు" @@ -1366,8 +1448,9 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." @@ -1375,22 +1458,27 @@ 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "మునుజూపు" @@ -1425,7 +1513,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "" @@ -1444,35 +1533,42 @@ msgstr "అవతారపు తాజాకరణ విఫలమైంది. msgid "Avatar deleted." msgstr "అవతారాన్ని తొలగించాం." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "నేపథ్యం" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1505,14 +1601,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: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:158 actions/deleteuser.php:156 +#: actions/block.php:158 msgid "Do not block this user" msgstr "ఈ వాడుకరిని నిరోధించకు" @@ -1524,7 +1619,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "అవును" @@ -1540,31 +1635,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 @@ -1635,23 +1705,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 @@ -1713,7 +1766,8 @@ 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 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "ఖాతాని సృష్టించుకోండి" @@ -1735,8 +1789,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "నిర్థారించు" @@ -1809,8 +1864,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 లేదు." @@ -1861,10 +1918,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1902,19 +1960,30 @@ msgstr "ఈ నోటీసుని తొలగించకు" 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." @@ -1922,79 +1991,103 @@ 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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2002,102 +2095,112 @@ 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 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 #, fuzzy 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 #, 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 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:84 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:99 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. @@ -2191,14 +2294,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "గుంపుని మార్చడానికి మీరు నిర్వాహకులయి ఉండాలి." @@ -2259,8 +2364,8 @@ msgstr "ప్రస్తుత నిర్ధారిత ఈమెయిల #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "తొలగించు" @@ -2285,15 +2390,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "" @@ -2304,14 +2409,14 @@ 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:180 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:189 actions/smssettings.php:182 #, fuzzy msgid "Make a new email address for posting to; cancels the old one." msgstr "%sకి నోటీసులు పంపించడానికి కొత్త ఈమెయిలు చిరునామా" @@ -2325,7 +2430,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "కొత్తది" @@ -2402,9 +2507,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2420,8 +2526,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "రద్దుచేయడానికి వేచివున్న నిర్ధారణలేమీ లేవు." @@ -2432,8 +2538,9 @@ 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:468 actions/smssettings.php:413 +#, fuzzy +msgid "Could not delete email confirmation." msgstr "ఈమెయిల్ నిర్ధారణని తొలగించలేకున్నాం." #. TRANS: Message given after successfully canceling e-mail address confirmation. @@ -2452,7 +2559,7 @@ msgstr "అది మీ ఈమెయిలు చిరునామా కా msgid "The email address was removed." msgstr "ఆ ఈమెయిలు చిరునామాని తొలగించాం." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 #, fuzzy msgid "No incoming email address." msgstr "ఈమెయిలు చిరునామా లేదు." @@ -2460,19 +2567,19 @@ 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 +#: actions/smssettings.php:564 actions/smssettings.php:587 #, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 #, 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 #, fuzzy msgid "New incoming email address added." msgstr "ఈమెయిలు చిరునామా లేదు." @@ -2567,7 +2674,7 @@ msgstr "" msgid "User being listened to does not exist." msgstr "" -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "మీరు స్థానిక చందాని ఉపయోగించవచ్చు!" @@ -2698,44 +2805,46 @@ 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 -msgid "Couldn't update your design." -msgstr "మీ రూపురేఖలని తాజాకరించలేకపోయాం." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, 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:244 msgid "Upload" msgstr "ఎగుమతించు" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "కత్తిరించు" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "చిహ్నాన్ని తాజాకరించాం." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "చిహ్నపు తాజాకరణ విఫలమైంది." @@ -2819,7 +2928,7 @@ msgstr "" "గుంపు లోని సభ్యులందరికీ సందేశాలని పంపించవచ్చు. మీకు నచ్చిన గుంపు కనబడలేదా? [దాని కోసం వెతకండి](%%" "%%action.groupsearch%%%%) లేదా [మీరే కొత్తది సృష్టించండి!](%%%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "కొత్త గుంపుని సృష్టించు" @@ -2874,14 +2983,14 @@ msgid "Error removing the block." msgstr "నిరోధాన్ని తొలగించడంలో పొరపాటు." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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](%%" @@ -2889,23 +2998,23 @@ msgid "" msgstr "" #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "IM చిరునామా" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 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 +#: actions/imsettings.php:120 #, fuzzy, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2919,7 +3028,7 @@ msgstr "" #. 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 " @@ -2927,65 +3036,65 @@ msgid "" msgstr "" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "IM అభిరుచులు" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 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 +#: actions/imsettings.php:178 #, 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:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "అభిరుచులు భద్రమయ్యాయి." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: 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 +#: actions/imsettings.php:317 msgid "Not a valid Jabber ID" msgstr "సరైన Jabber ఐడీ కాదు" #. TRANS: Message given saving IM address that is already set. -#: actions/imsettings.php:329 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2993,29 +3102,29 @@ msgid "" msgstr "" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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 +#: 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 +#: actions/imsettings.php:396 msgid "IM confirmation cancelled." msgstr "IM నిర్ధారణ రద్దయింది." #. TRANS: Message given trying to remove an IM 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "ఆ IM చిరునామాని తొలగించాం." @@ -3210,131 +3319,145 @@ 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 "" -#: 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 "లైసెన్సు అమరికలను భద్రపరచు" @@ -3358,11 +3481,11 @@ msgstr "ప్రవేశించండి" msgid "Login to site" msgstr "సైటు లోనికి ప్రవేశించు" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "నన్ను గుర్తుంచుకో" -#: 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 "భవిష్యత్తులో ఆటోమెటిగ్గా లోనికి ప్రవేశించు; బయటి కంప్యూర్ల కొరకు కాదు!" @@ -3749,7 +3872,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 "సంకేతపదం మార్పు" @@ -3757,7 +3881,8 @@ 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 "కొత్త సంకేతపదం" @@ -3765,7 +3890,7 @@ msgstr "కొత్త సంకేతపదం" msgid "6 or more characters" msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "పై సంకేతపదం వలెనే" @@ -3789,11 +3914,12 @@ msgstr "పాత సంకేతపదం తప్పు" msgid "Error saving user; invalid." msgstr "వాడుకరిని భద్రపరచడంలో పొరపాటు: సరికాదు." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "కొత్త సంకేతపదాన్ని భద్రపరచలేము." -#: 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 "సంకేతపదం భద్రమయ్యింది." @@ -4116,12 +4242,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 "" @@ -4129,33 +4255,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:433 +#: lib/groupeditform.php:146 #, 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "హోమ్ పేజీ" #. 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 "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా" @@ -4163,7 +4290,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" @@ -4171,70 +4298,70 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 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" 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 +#: 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 "" @@ -4242,7 +4369,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)." @@ -4250,54 +4377,50 @@ 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "ఖాతాని సృష్టించుకోండి" @@ -4417,132 +4540,184 @@ 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. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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: 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 "పై సంకేతపదం వలెనే" + +#. 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "కొత్త సంకేతపదాన్ని భద్రపరచలేము." + +#. TRANS: Server error displayed when something does wrong with the user object during password reset. +#: actions/recoverpassword.php:426 actions/register.php:256 #, 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 "మీ కొత్త సంకేతపదం భద్రమైంది. మీరు ఇప్పుడు లోనికి ప్రవేశించారు." @@ -4558,7 +4733,7 @@ msgstr "క్షమించండి, తప్పు ఆహ్వాన స msgid "Registration successful" msgstr "నమోదు విజయవంతం" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "నమోదు" @@ -4584,59 +4759,52 @@ 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 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామ చిహ్నాలు లేదా ఖాళీలు లేకుండా. తప్పనిసరి." - -#: actions/register.php:438 -msgid "6 or more characters. Required." -msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు. తప్పనిసరి." - -#: actions/register.php:442 -msgid "Same as password above. Required." -msgstr "పై సంకేతపదం మరోసారి. తప్పనిసరి." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు" #. 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 "ఈమెయిల్" -#: 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 "తాజా విశేషాలు, ప్రకటనలు, మరియు సంకేతపదం పోయినప్పుడు మాత్రమే ఉపయోగిస్తాం." -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "పొడుగాటి పేరు, మీ \"అసలు\" పేరైతే మంచిది" -#: actions/register.php:463 +#: actions/register.php:462 msgid "URL of your homepage, blog, or profile on another site" msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా" -#: 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, " @@ -4645,7 +4813,7 @@ msgstr "" "నా పాఠ్యం మరియు దస్త్రాలు %s క్రింద లభ్యం, ఈ అంతరంగిక భోగట్టా తప్ప: సంకేతపదం, ఈమెయిల్ చిరునామా, IM " "చిరునామా, మరియు ఫోన్ నంబర్." -#: actions/register.php:589 +#: actions/register.php:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4676,7 +4844,7 @@ msgstr "" "\n" "నమోదుచేసుకున్నందుకు కృతజ్ఞతలు మరియు ఈ సేవని ఉపయోగిస్తూ మీరు ఆనందిస్తారని మేం ఆశిస్తున్నాం." -#: 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.)" @@ -4684,7 +4852,7 @@ msgstr "" "(మీ ఈమెయిలు చిరునామాని ఎలా నిర్ధారించాలో తెలిపే సూచనలతో ఒక సందేశం మీరు ఈమెయిలు ద్వారా మరి కొద్దిసేపట్లోనే " "అందుతుంది.)" -#: actions/remotesubscribe.php:98 +#: actions/remotesubscribe.php:97 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -4695,73 +4863,76 @@ 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 +#: 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 +#: actions/remotesubscribe.php:133 msgid "URL of your profile on another compatible microblogging service" msgstr "" -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "చందాచేరు" -#: actions/remotesubscribe.php:159 +#: 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 "" -#: 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 #, fuzzy msgid "Repeated" msgstr "సృష్టితం" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "పునరావృతించారు!" @@ -4986,7 +5157,7 @@ msgstr "సంస్ధ" #. 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 "వివరణ" @@ -5009,8 +5180,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:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "తొలగించు" @@ -5133,7 +5305,7 @@ msgid "Note" msgstr "గమనిక" #. 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 "మారుపేర్లు" @@ -5526,107 +5698,107 @@ 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" 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 " @@ -5634,39 +5806,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 " @@ -5674,7 +5846,7 @@ 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" msgstr "విషయం లేదు!" @@ -5933,10 +6105,6 @@ 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." @@ -6161,19 +6329,19 @@ 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 "" @@ -7122,24 +7290,28 @@ 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 "" @@ -7664,26 +7836,26 @@ msgid "" msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 #, 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:156 +#: lib/common.php:161 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:160 +#: lib/common.php:165 #, fuzzy msgid "Go to the installer." msgstr "సైటు లోనికి ప్రవేశించండి" @@ -7751,11 +7923,21 @@ 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: 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 @@ -7835,33 +8017,29 @@ 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 +#: lib/groupeditform.php:155 #, fuzzy msgid "URL of the homepage or blog of the group or topic." msgstr "ఈ ఉపకరణం యొక్క హోమ్‌పేజీ చిరునామా" -#: lib/groupeditform.php:168 +#: lib/groupeditform.php:160 msgid "Describe the group or topic" msgstr "గుంపుని లేదా విషయాన్ని వివరించండి" -#: 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] "గుంపు లేదా విషయాన్ని గురించి %d అక్షరాల్లో వివరించండి" msgstr[1] "గుంపు లేదా విషయాన్ని గురించి %d అక్షరాల్లో వివరించండి" -#: lib/groupeditform.php:182 +#: lib/groupeditform.php:174 #, fuzzy msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." msgstr "గుంపు యొక్క ప్రాంతం, ఉంటే, \"నగరం, రాష్ట్రం (లేదా ప్రాంతం), దేశం\"" -#: lib/groupeditform.php:190 +#: lib/groupeditform.php:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9052,14 +9230,9 @@ msgstr[1] "సుమారు %d నెలల క్రితం" 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 హెక్స్ అక్షరాలను వాడండి." @@ -9095,3 +9268,29 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "అటువంటి గుంపు లేదు" + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "నిర్ధారణ సంకేతం కనబడలేదు." + +#~ msgid "Reset" +#~ msgstr "రీసెట్" + +#~ msgid "" +#~ "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#~ msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామ చిహ్నాలు లేదా ఖాళీలు లేకుండా. తప్పనిసరి." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షరాలు. తప్పనిసరి." + +#~ msgid "Same as password above. Required." +#~ msgstr "పై సంకేతపదం మరోసారి. తప్పనిసరి." + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "1-64 చిన్నబడి అక్షరాలు లేదా అంకెలు, విరామచిహ్నాలు మరియు ఖాళీలు తప్ప" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s అనేది సరైన రంగు కాదు!" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index cd22b059e6..640b8a412e 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:35:24+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:58:09+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\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: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -77,6 +77,7 @@ 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 text for saving "Other settings" in profile. @@ -88,13 +89,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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" msgstr "Kaydet" @@ -112,6 +113,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. @@ -132,8 +135,8 @@ msgstr "Böyle bir sayfa yok." #: 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,7 +147,7 @@ msgstr "Böyle bir sayfa yok." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -315,7 +318,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "Kullanıcı güncellenemedi." @@ -337,7 +354,8 @@ 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." @@ -347,7 +365,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -370,8 +388,8 @@ msgstr[0] "" #: 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/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." @@ -379,13 +397,18 @@ 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/groupdesignsettings.php:266 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 +#, fuzzy +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. @@ -396,31 +419,38 @@ msgstr "Ana" 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 #, php-format msgid "%s subscriptions" msgstr "%s abonelikleri" -#: 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 "%s favorileri" -#: 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 "%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." @@ -511,7 +541,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:91 msgid "Could not delete favorite." msgstr "Favori silinemedi." @@ -557,7 +588,7 @@ msgstr "Hedef kullanıcı bulunamadı." #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Takma ad kullanımda. Başka bir tane deneyin." @@ -567,7 +598,7 @@ msgstr "Takma ad kullanımda. Başka bir tane deneyin." #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Geçersiz bir takma ad." @@ -579,7 +610,7 @@ msgstr "Geçersiz bir takma ad." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "Başlangıç sayfası adresi geçerli bir URL değil." @@ -589,7 +620,7 @@ msgstr "Başlangıç sayfası adresi geçerli bir URL değil." #. 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/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." msgstr "Tam isim çok uzun (en fazla: 255 karakter)." @@ -615,7 +646,7 @@ msgstr[0] "Tanım çok uzun (en fazla %d karakter)." #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 msgid "Location is too long (maximum 255 characters)." msgstr "Yer bilgisi çok uzun (en fazla 255 karakter)." @@ -671,22 +702,26 @@ 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ı." @@ -698,9 +733,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." @@ -737,7 +774,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ı." @@ -757,18 +794,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -787,18 +828,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Beklenmeğen form girdisi." @@ -851,9 +895,9 @@ msgstr "Hesap" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Takma ad" @@ -861,7 +905,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Parola" @@ -872,7 +916,7 @@ msgstr "Parola" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -946,6 +990,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 @@ -965,39 +1010,51 @@ msgstr "Kendi durum mesajınızı tekrarlayamazsınız." msgid "Already repeated that notice." msgstr "Bu durum mesajı zaten tekrarlanmış." +#. 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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 +#. 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 "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" @@ -1128,51 +1185,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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, 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:406 +#: actions/apitimelineuser.php:409 #, 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." @@ -1184,109 +1239,138 @@ msgstr "UPA metodu yapım aşamasında." 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. +#: 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 "Böyle bir durum mesajı yok." +#. 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 -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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "HTTP yöntemi desteklenmiyor." - -#: actions/atompubshowmembership.php:150 -msgid "Can't delete someone else's membership" -msgstr "" +msgid "Cannot delete someone else's membership." +msgstr "Yeni abonelik eklenemedi." #. 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. @@ -1294,40 +1378,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +msgid "Cannot delete someone else's subscription." msgstr "Yeni abonelik eklenemedi." -#: actions/atompubsubscriptionfeed.php:150 -#, fuzzy, php-format -msgid "People %s has subscribed to on %s" -msgstr "Uzaktan abonelik" - #. TRANS: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: 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 get a non-existing attachment. @@ -1338,10 +1419,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Takma ad yok" @@ -1373,8 +1455,9 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 actions/userrss.php:108 #, fuzzy msgid "User without matching profile." @@ -1382,22 +1465,27 @@ 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Önizleme" @@ -1433,7 +1521,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "" @@ -1452,34 +1541,41 @@ msgstr "Avatar güncellemede hata." msgid "Avatar deleted." msgstr "Kullanıcı resmi silindi." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "Arkaplan" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1514,14 +1610,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:178 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 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Bu kullanıcıyı engelleme" @@ -1533,7 +1628,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Evet" @@ -1549,31 +1644,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 @@ -1644,23 +1714,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 @@ -1721,7 +1774,8 @@ msgid "Account deleted." msgstr "Kullanıcı resmi silindi." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "Bir hesap oluştur" @@ -1743,8 +1797,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "Onayla" @@ -1819,8 +1874,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" @@ -1876,10 +1933,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1919,19 +1977,30 @@ msgstr "Bu durum mesajını silme" 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." @@ -1939,79 +2008,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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2021,98 +2114,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 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 "Ö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 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 "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:84 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:99 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. @@ -2204,14 +2307,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "Bir grubu düzenlemek için bir yönetici olmalısınız." @@ -2272,8 +2377,8 @@ msgstr "Mevcut doğrulanmış e-posta adresi." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Geri al" @@ -2298,15 +2403,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Gelen e-posta" @@ -2317,13 +2422,13 @@ 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:180 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:189 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 " @@ -2338,7 +2443,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Yeni" @@ -2418,9 +2523,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2436,8 +2542,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "İptal etmek için beklenen onay yok." @@ -2448,8 +2554,9 @@ 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:468 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. @@ -2468,7 +2575,7 @@ msgstr "Bu sizin e-posta adresiniz değil." msgid "The email address was removed." msgstr "Eposta adresi zaten var." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 #, fuzzy msgid "No incoming email address." msgstr "Geçersiz bir eposta adresi." @@ -2476,17 +2583,18 @@ 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Yeni gelen e-posta adresi eklendi." @@ -2581,7 +2689,7 @@ msgstr "Bu yanıt beklenmiyordu!" msgid "User being listened to does not exist." msgstr "" -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Yerel aboneliği kullanabilirsiniz!" @@ -2711,48 +2819,49 @@ 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 "Kullanıcı güncellenemedi." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, 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:244 msgid "Upload" msgstr "Yükle" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Kırp" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 #, 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:416 #, fuzzy msgid "Failed updating logo." msgstr "Avatar güncellemede hata." @@ -2833,7 +2942,7 @@ msgid "" "%%%%)" msgstr "" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Yeni bir grup oluştur" @@ -2886,14 +2995,14 @@ msgid "Error removing the block." msgstr "Engellemeyi kaldırırken hata." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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 +#: actions/imsettings.php:71 #, php-format msgid "" "You can send and receive notices through Jabber/GTalk [instant messages](%%" @@ -2903,23 +3012,23 @@ msgstr "" "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 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "Anlık mesajlaşma adresi" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 msgid "Current confirmed Jabber/GTalk 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2933,7 +3042,7 @@ msgstr "" #. 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 " @@ -2943,66 +3052,66 @@ msgstr "" "IM istemcisi veya Gtalk arkadaşlar listenize eklenmiş olmalıdır." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "Tercihler kaydedildi." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Durum mesajlarını Jabber/GTalk üzerinden gönder." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk 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 +#: actions/imsettings.php:171 #, fuzzy msgid "Send me replies through Jabber/GTalk 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 +#: actions/imsettings.php:178 #, fuzzy msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Onaylanmış Jabber/Gtalk adresi." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Tercihler kaydedildi." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: actions/imsettings.php:312 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 +#: actions/imsettings.php:317 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3012,29 +3121,29 @@ msgstr "" "mesaj yollanabilmesi için onaylamanız gerekmektedir." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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 +#: 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 +#: 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: 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 +#: actions/imsettings.php:440 #, fuzzy msgid "The IM address was removed." msgstr "Bu adres kaldırılmıştı." @@ -3203,132 +3312,146 @@ 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" @@ -3353,11 +3476,11 @@ msgstr "Giriş" msgid "Login to site" msgstr "Siteye giriş" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Beni hatırla" -#: 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 "" "Gelecekte kendiliğinden giriş yap, paylaşılan bilgisayarlar için değildir!" @@ -3746,7 +3869,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" @@ -3754,7 +3878,8 @@ 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" @@ -3762,7 +3887,7 @@ msgstr "Yeni parola" msgid "6 or more characters" msgstr "6 veya daha fazla karakter" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "yukarıdaki parolanın aynısı" @@ -3786,11 +3911,12 @@ msgstr "Eski parola yanlış" msgid "Error saving user; invalid." msgstr "Kullanıcıyı kaydetmede hata oluştu; geçersiz." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Yeni parola kaydedilemedi." -#: 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 "Parola kaydedildi." @@ -4114,12 +4240,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 "" @@ -4127,12 +4253,13 @@ 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:433 +#: lib/groupeditform.php:146 #, fuzzy msgid "1-64 lowercase letters or numbers, no punctuation or spaces." msgstr "" @@ -4141,21 +4268,21 @@ 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Başlangıç Sayfası" #. 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 "" @@ -4164,52 +4291,52 @@ 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" 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:476 #, 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 msgid "Tags" msgstr "Etiketler" #. 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 "" @@ -4217,27 +4344,27 @@ msgstr "" "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 +#: actions/profilesettings.php:171 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 msgid "" "Automatically subscribe to whoever subscribes to me (best for non-humans)" msgstr "Bana abone olan herkese abone yap (insan olmayanlar için en iyisi)" @@ -4245,62 +4372,57 @@ 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:229 #, 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 +#: actions/profilesettings.php:291 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "Bir hesap oluştur" @@ -4416,36 +4538,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 " @@ -4454,70 +4584,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 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: 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 "yukarıdaki parolanın aynısı" + +#. 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." @@ -4525,24 +4688,35 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Yeni parola kaydedilemedi." + +#. 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 "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." @@ -4559,7 +4733,7 @@ msgstr "Onay kodu hatası." msgid "Registration successful" msgstr "Kayıt başarılı" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Kayıt" @@ -4585,66 +4759,54 @@ msgid "" "link up to friends and colleagues. " msgstr "" -#: actions/register.php:433 +#: actions/register.php:437 #, 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." +msgid "6 or more characters." 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:445 actions/register.php:449 #: actions/siteadminpanel.php:238 lib/accountsettingsaction.php:127 msgid "Email" msgstr "Eposta" -#: 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 "" "Sadece sistem güncellemeleri, duyurular ve parola geri alma için kullanılır." -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "" -#: actions/register.php:463 +#: actions/register.php:462 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: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 "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:545 #, fuzzy, php-format msgid "" "My text and files are available under %s except this private data: password, " @@ -4653,7 +4815,7 @@ msgstr "" "bu özel veriler haricinde: parola, eposta adresi, IM adresi, telefon " "numarası." -#: actions/register.php:589 +#: actions/register.php:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4672,13 +4834,13 @@ msgid "" "Thanks for signing up and we hope you enjoy using this service." msgstr "" -#: 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.)" msgstr "" -#: actions/remotesubscribe.php:98 +#: actions/remotesubscribe.php:97 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -4686,77 +4848,78 @@ 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 +#: actions/remotesubscribe.php:129 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 +#: actions/remotesubscribe.php:133 msgid "URL of your profile on another compatible microblogging service" msgstr "" -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Abone ol" -#: actions/remotesubscribe.php:159 +#: actions/remotesubscribe.php:158 msgid "Invalid profile URL (bad format)" msgstr "" -#: 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:692 +#: 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" @@ -4981,7 +5144,7 @@ msgstr "Organizasyon" #. 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 "Tanım" @@ -5004,8 +5167,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:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Sil" @@ -5124,7 +5288,7 @@ 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:293 lib/groupeditform.php:179 msgid "Aliases" msgstr "Diğerisimler" @@ -5499,64 +5663,64 @@ 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" msgstr "" @@ -5564,48 +5728,48 @@ msgstr "" "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." @@ -5614,42 +5778,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 " @@ -5657,7 +5821,7 @@ 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" msgstr "İçerik yok!" @@ -5913,10 +6077,6 @@ 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 "" @@ -6150,19 +6310,19 @@ 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 "" @@ -7114,23 +7274,27 @@ 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 "" @@ -7650,25 +7814,25 @@ msgid "" msgstr "" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 #, 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:153 +#: lib/common.php:158 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 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "" @@ -7739,12 +7903,22 @@ 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: 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 @@ -7823,36 +7997,30 @@ 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 küçük harf veya rakam, noktalama işaretlerine ve boşluklara izin " -"verilmez" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 #, 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:160 #, 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: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] "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın" -#: lib/groupeditform.php:182 +#: lib/groupeditform.php:174 #, 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:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -8973,14 +9141,9 @@ msgstr[0] "" 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." @@ -9015,3 +9178,37 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "" + +#~ msgid "No such group" +#~ msgstr "Böyle bir kullanıcı yok." + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "HTTP yöntemi desteklenmiyor." + +#~ msgid "Reset" +#~ msgstr "Sıfırla" + +#, 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" + +#, fuzzy +#~ msgid "6 or more characters. Required." +#~ msgstr "6 veya daha fazla karakter" + +#, fuzzy +#~ msgid "Same as password above. Required." +#~ msgstr "yukarıdaki parolanın aynısı" + +#~ 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" + +#, fuzzy +#~ msgid "%s is not a valid color!" +#~ msgstr "Başlangıç sayfası adresi geçerli bir URL değil." diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 7837653ccc..a856164ca4 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:35:25+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:58:13+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-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: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -80,6 +80,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" 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. @@ -135,8 +138,8 @@ msgstr "Немає такої сторінки." #: 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 @@ -147,7 +150,7 @@ msgstr "Немає такої сторінки." #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -314,7 +317,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "Не вдалося оновити користувача." @@ -336,7 +353,8 @@ 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 "Не вдалося зберегти профіль." @@ -346,7 +364,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -375,8 +393,8 @@ msgstr[2] "" #: 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/userdesignsettings.php:201 actions/userdesignsettings.php:211 +#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263 msgid "Unable to save your design settings." msgstr "Не маю можливості зберегти налаштування дизайну." @@ -384,13 +402,18 @@ msgstr "Не маю можливості зберегти налаштуванн #. TRANS: Client error displayed when a database error occurs updating profile colours. #: actions/apiaccountupdateprofilebackgroundimage.php:191 #: actions/apiaccountupdateprofilecolors.php:139 +#: actions/groupdesignsettings.php:266 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. @@ -401,31 +424,38 @@ msgstr "Головна" 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 #, php-format msgid "%s favorites" msgstr "Обрані %s" -#: 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 "Учасники спільноти %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 "Спроба заблокувати користувача невдала." @@ -519,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:91 msgid "Could not delete favorite." msgstr "Не можна видалити зі списку обраних." @@ -567,7 +598,7 @@ msgstr "Не вдалося знайти цільового користувач #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "Це ім’я вже використовується. Спробуйте інше." @@ -577,7 +608,7 @@ msgstr "Це ім’я вже використовується. Спробуйт #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "Це недійсне ім’я користувача." @@ -589,7 +620,7 @@ msgstr "Це недійсне ім’я користувача." #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "Веб-сторінка має недійсну URL-адресу." @@ -599,7 +630,7 @@ msgstr "Веб-сторінка має недійсну 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:151 actions/profilesettings.php:256 +#: actions/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." msgstr "Повне ім’я надто довге (не більше 255 символів)." @@ -627,7 +658,7 @@ msgstr[2] "Опис надто довгий (максимум — %d знакі #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 msgid "Location is too long (maximum 255 characters)." msgstr "Розташування надто довге (не більше 255 символів)." @@ -685,22 +716,26 @@ 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." @@ -712,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." @@ -751,7 +788,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 "Неправильний запит токену або його підтвердження." @@ -771,18 +808,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -802,18 +843,21 @@ 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 IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "Несподіване представлення форми." @@ -865,9 +909,9 @@ msgstr "Акаунт" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "Ім’я користувача" @@ -875,7 +919,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "Пароль" @@ -886,7 +930,7 @@ msgstr "Пароль" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -960,6 +1004,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,39 +1024,51 @@ msgstr "Не можна повторювати власні дописи." 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" #. 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 +#, 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 #, php-format msgid "Deleted notice %d" msgstr "Вилучене повідомлення %d" @@ -1150,51 +1207,49 @@ msgstr "Користувач може робити доповнення тіль msgid "Only accept AtomPub for Atom feeds." msgstr "Приймати лише AtomPub для веб-стрічок формату Atom." -#: 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 "Запис Atom не повинен бути порожнім." -#: 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 "Запис 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:334 +#: actions/apitimelineuser.php:336 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:345 +#: actions/apitimelineuser.php:347 #, php-format msgid "Cannot handle activity object type \"%s\"." msgstr "Неможливо опрацювати дії об’єкта типу «%s»." #. TRANS: Client error displayed when posting a notice without content through the API. -#: actions/apitimelineuser.php:378 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, php-format msgid "No content for notice %d." msgstr "Допис %d не має змісту." #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, php-format msgid "Notice with URI \"%s\" already exists." msgstr "Повідомлення з URI \"%s\" вже існує." -#: actions/apitimelineuser.php:437 -#, 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." @@ -1205,96 +1260,130 @@ msgstr "API метод наразі знаходиться у розробці." 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 "Дописи, що їх %s позначив як обрані на %s" - -#: 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 msgid "No such profile." 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 "Не вдається додати чиюсь підписку" + +#. 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 +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 -#, php-format -msgid "Groups %s is a member of on %s" -msgstr "Спільноти, до яких залучений %s на %s" - -#: 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 +#, 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." +#: 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 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" +#, fuzzy +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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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" +#. TRANS: Client exception thrown when trying to show membership of a non-subscribed group +#: actions/atompubshowmembership.php:91 +#, fuzzy +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" +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 +#, fuzzy +msgid "Cannot delete someone else's membership." msgstr "Неможливо позбавити когось членства" #. TRANS: Client exception thrown when trying to display a subscription for a non-existing profile ID. @@ -1302,41 +1391,38 @@ msgstr "Неможливо позбавити когось членства" #: actions/atompubshowsubscription.php:72 #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 -#, php-format -msgid "No such profile id: %d" +#, fuzzy, php-format +msgid "No such profile id: %d." msgstr "Немає такого ідентифікатора профілю: %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 "Профіль %d не є підписаним до профілю %d" +msgid "Profile %1$d not subscribed to profile %2$d." +msgstr "Профіль %1$d не є підписаним до профілю %2$d" #. 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" +msgid "Cannot delete someone else's subscription." msgstr "Не вдається видалити чиюсь підписку" -#: actions/atompubsubscriptionfeed.php:150 -#, php-format -msgid "People %s has subscribed to on %s" -msgstr "Люди, до яких підписався %s на %s" - #. TRANS: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "Можливе лише слідування людьми." -#: actions/atompubsubscriptionfeed.php:262 -#, php-format -msgid "Unknown profile %s" +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 +#, fuzzy, php-format +msgid "Unknown profile %s." msgstr "Невідомий профіль %s" #. TRANS: Client error displayed trying to get a non-existing attachment. @@ -1347,10 +1433,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "Немає імені." @@ -1381,30 +1468,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "Перегляд" @@ -1439,7 +1532,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "Дані вашого файлу загублено." @@ -1458,37 +1552,51 @@ msgstr "Оновлення аватари невдале." msgid "Avatar deleted." msgstr "Аватару видалено." -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" -msgstr "" +msgstr "Резерв. копія" -#: actions/backupaccount.php:80 -#, fuzzy +#. 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 "Лише користувачі, що знаходяться у системі, можуть повторювати дописи." +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 "" +msgstr "Ви не можете створити резервну копію свого акаунту." -#: actions/backupaccount.php:232 +#. 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 " +"\">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. Дана можливість є " +"експериментальною і результат копіювання не буде повним; особисті дані, як " +"то електронна адреса або ІМ-адреса не будуть долучені до резервного файлу. " +"До того ж, прикріплені до ваших повідомлень файли і прямі повідомлення також " +"не долучаються до резервного файлу." -#: actions/backupaccount.php:255 -#, fuzzy +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 msgctxt "BUTTON" msgid "Backup" -msgstr "Фон" +msgstr "Резерв. копія" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" -msgstr "" +msgstr "Резервне копіювання вашого акаунту" #. TRANS: Client error displayed when blocking a user that has already been blocked. #: actions/block.php:68 @@ -1520,14 +1628,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: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:158 actions/deleteuser.php:156 +#: actions/block.php:158 msgid "Do not block this user" msgstr "Не блокувати цього користувача" @@ -1539,7 +1646,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "Так" @@ -1555,31 +1662,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 @@ -1649,23 +1731,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 @@ -1697,39 +1762,37 @@ 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 "Лише користувачі, що знаходяться у системі, можуть повторювати дописи." +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 "Ви не можете видаляти користувачів." +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 "" +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 "" +msgstr "Ви мусите написати «%s» у даному віконці." #. TRANS: Confirmation that a user account has been deleted. #: actions/deleteaccount.php:206 -#, fuzzy msgid "Account deleted." -msgstr "Аватару видалено." +msgstr "Акаунт видалено." #. TRANS: Page title for page on which a user account can be deleted. -#: actions/deleteaccount.php:228 actions/profilesettings.php:474 -#, fuzzy +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 msgid "Delete account" -msgstr "Створити новий акаунт" +msgstr "Видалити акаунт" #. TRANS: Form text for user deletion form. #: actions/deleteaccount.php:279 @@ -1737,6 +1800,8 @@ 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. @@ -1746,25 +1811,27 @@ 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 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 +#, php-format msgid "Enter \"%s\" to confirm that you want to delete your account." -msgstr "Ви не можете видаляти користувачів." +msgstr "Введіть «%s», тим самим підтверджуючи свою згоду на видалення акаунту." #. TRANS: Button title for user account deletion. #: actions/deleteaccount.php:323 -#, fuzzy msgid "Permanently delete your account" -msgstr "Ви не можете видаляти користувачів." +msgstr "Остаточне і негайне видалення акаунту" #. TRANS: Client error displayed trying to delete an application while not logged in. #: actions/deleteapplication.php:62 @@ -1823,15 +1890,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. @@ -1875,10 +1944,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1916,19 +1986,30 @@ msgstr "Не видаляти цей допис" 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." @@ -1936,78 +2017,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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -2017,98 +2122,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 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 "Зберегти" - +#. 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:84 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:99 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. @@ -2198,14 +2313,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "" "Ви маєте бути наділені правами адміністратора, аби відредагувати властивості " @@ -2268,8 +2385,8 @@ msgstr "Поточна підтверджена поштова адреса." #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "Видалити" @@ -2294,15 +2411,15 @@ msgstr "Електронна адреса, на зразок «UserName@example. #. 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 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "Вхідна пошта" @@ -2313,13 +2430,13 @@ 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:180 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:189 actions/smssettings.php:182 msgid "Make a new email address for posting to; cancels the old one." msgstr "Створити нову адресу для надсилання повідомлень; видалити стару." @@ -2334,7 +2451,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "Нове" @@ -2408,9 +2525,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2426,8 +2544,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "Не очікується підтвердження для скасування." @@ -2438,8 +2556,9 @@ 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:468 actions/smssettings.php:413 +#, fuzzy +msgid "Could not delete email confirmation." msgstr "Не вдалося видалити підтвердження поштової адреси." #. TRANS: Message given after successfully canceling e-mail address confirmation. @@ -2458,24 +2577,25 @@ msgstr "Це не є вашою адресою." msgid "The email address was removed." msgstr "Адреса була видалена." -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "Нову адресу для вхідних повідомлень додано." @@ -2572,7 +2692,7 @@ msgstr "Ця відповідь не очікується!" msgid "User being listened to does not exist." msgstr "Користувача, який слідкував за вашими повідомленнями, більше не існує." -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "Ви можете користуватись локальними підписками!" @@ -2703,22 +2823,19 @@ 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 "Не вдалося оновити дизайн." - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, php-format msgid "" "You can upload a logo image for your group. The maximum file size is %s." @@ -2726,23 +2843,28 @@ msgstr "" "Ви маєте можливість завантажити логотип для вашої спільноти. Максимальний " "розмір файлу становить %s." -#: actions/grouplogo.php:236 +#. TRANS: Submit button for uploading a group logo. +#: actions/grouplogo.php:244 msgid "Upload" msgstr "Завантажити" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "Втяти" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "Логотип оновлено." -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "Оновлення логотипу завершилось невдачею." @@ -2827,7 +2949,7 @@ msgstr "" "повідомлення. Не бачите спільноту, яка вас цікавить? Спробуйте її [знайти](%%" "%%action.groupsearch%%%%) або [створіть власну!](%%%%action.newgroup%%%%)" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "Створити нову спільноту" @@ -2884,14 +3006,14 @@ msgid "Error removing the block." msgstr "Помилка при розблокуванні." #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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](%%" @@ -2901,23 +3023,23 @@ msgstr "" "повідомлень](%%doc.im%%). Вкажить свою адресу і налаштуйте опції нижче." #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "ІМ-адреса" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2932,7 +3054,7 @@ msgstr "" #. 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 " @@ -2943,65 +3065,65 @@ msgstr "" "GTalk." #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "Преференції ІМ" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "Повідомляти мене через Jabber/GTalk." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "Надсилати дописи на сайт, коли мій статус Jabber/GTalk змінюється." #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "Позначати міткою MicroID мою адресу Jabber/GTalk." #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "Преференції збережно." #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -3011,28 +3133,29 @@ msgstr "" "повинні затвердити %s для відправлення вам повідомлень." #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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." +#: 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 +#: actions/imsettings.php:396 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 +#: 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "Адреса ІМ була видалена." @@ -3239,44 +3362,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." @@ -3284,87 +3414,94 @@ 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 "Зберегти налаштування ліцензії" @@ -3388,11 +3525,11 @@ msgstr "Увійти" msgid "Login to site" msgstr "Вхід на сайт" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "Пам’ятати мене" -#: 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 "" "Автоматично входити у майбутньому; не для комп’ютерів загального " @@ -3477,9 +3614,8 @@ 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 "Вам не дозволено видаляти цю спільноту спільноту." +msgstr "Вам не дозволено створювати нові спільноті на цьому сайті." #. TRANS: Form instructions for group create form. #: actions/newgroup.php:117 @@ -3789,7 +3925,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 "Пароль замінено" @@ -3797,7 +3934,8 @@ 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 "Новий пароль" @@ -3805,7 +3943,7 @@ msgstr "Новий пароль" msgid "6 or more characters" msgstr "6 або більше знаків" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "Такий само, як і пароль вище" @@ -3829,11 +3967,12 @@ msgstr "Старий пароль є неточним" msgid "Error saving user; invalid." msgstr "Помилка при збереженні користувача; недійсний." -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "Неможна зберегти новий пароль." -#: 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 "Пароль збережено." @@ -4141,51 +4280,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:433 +#: lib/groupeditform.php:146 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "Веб-сторінка" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:125 +#: actions/profilesettings.php:121 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:471 #, php-format msgid "Describe yourself and your interests in %d character" msgid_plural "Describe yourself and your interests in %d characters" @@ -4194,44 +4334,44 @@ 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 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" msgstr "" @@ -4239,27 +4379,27 @@ 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 +#: 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 "" @@ -4268,7 +4408,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 #, php-format msgid "Bio is too long (maximum %d character)." msgid_plural "Bio is too long (maximum %d characters)." @@ -4277,54 +4417,51 @@ 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 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 -#, fuzzy +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 msgid "Restore account" -msgstr "Створити новий акаунт" +msgstr "Відновити акаунт" #: actions/public.php:83 #, php-format @@ -4445,35 +4582,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." @@ -4481,68 +4626,101 @@ msgstr "" "Якщо загубите або втратите свій пароль, його буде легко відновити за " "допомогою електронної адреси, яку ви зазначили у власному профілі." -#: actions/recoverpassword.php:158 -msgid "You have been identified. Enter a new password below. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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: 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 "Такий само, як і пароль вище" + +#. 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." @@ -4550,23 +4728,34 @@ 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "Неможна зберегти новий пароль." + +#. 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 "Помилка в налаштуваннях користувача." -#: 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 "Новий пароль успішно збережено. Тепер ви увійшли." @@ -4583,7 +4772,7 @@ msgstr "Даруйте, помилка у коді запрошення." msgid "Registration successful" msgstr "Реєстрація успішна" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "Реєстрація" @@ -4611,61 +4800,52 @@ 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 "Такий само, як і пароль вище. Неодмінно." +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 або більше знаків" #. 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 "Пошта" -#: 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 "Використовується лише для оновлень, оголошень та відновлення паролю" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "Повне ім’я, звісно ж ваше справжнє ім’я" -#: actions/register.php:463 +#: actions/register.php:462 msgid "URL of your homepage, blog, or profile on another site" msgstr "URL-адреса вашої веб-сторінки, блоґу, або профілю на іншому сайті" -#: 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 "Я розумію, що зміст і дані %1$s є приватними і конфіденційними." -#: actions/register.php:534 +#: actions/register.php:533 #, 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: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, " @@ -4674,7 +4854,7 @@ msgstr "" "Мої дописи і файли доступні на умовах %s, окрім цих приватних даних: пароль, " "електронна адреса, адреса IM, телефонний номер." -#: actions/register.php:589 +#: actions/register.php:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4707,7 +4887,7 @@ msgstr "" "Дякуємо, що зареєструвались у нас, і, сподіваємось, вам сподобається наш " "сервіс." -#: 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.)" @@ -4715,7 +4895,7 @@ msgstr "" "(Ви маєте негайно отримати листа електронною поштою, в якому знаходитимуться " "інструкції щодо підтвердження вашої електронної адреси.)" -#: actions/remotesubscribe.php:98 +#: actions/remotesubscribe.php:97 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -4726,73 +4906,76 @@ 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 +#: 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 +#: actions/remotesubscribe.php:133 msgid "URL of your profile on another compatible microblogging service" msgstr "URL-адреса вашого профілю на іншому сумісному сервісі" -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "Підписатись" -#: actions/remotesubscribe.php:159 +#: 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." +#: 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "Повторено" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "Повторено!" @@ -4856,22 +5039,20 @@ 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 "Лише користувачі, що знаходяться у системі, можуть повторювати дописи." +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 "Поки що ви не зареєстрували жодних додатків." +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 "Завантажити файл" +msgstr "Немає завантажених файлів" #. TRANS: Client exception thrown when an uploaded file is larger than set in php.ini. #: actions/restoreaccount.php:129 lib/mediafile.php:194 @@ -4914,9 +5095,8 @@ msgstr "Система відповіла помилкою при заванта #. TRANS: Client exception thrown when a feed is not an Atom feed. #: actions/restoreaccount.php:207 -#, fuzzy msgid "Not an Atom feed." -msgstr "Не є учасником" +msgstr "Ця стрічка не у форматі Atom." #. TRANS: Success message when a feed has been restored. #: actions/restoreaccount.php:241 @@ -4924,11 +5104,14 @@ 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 @@ -4936,10 +5119,11 @@ 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 -#, fuzzy msgid "Upload the file" msgstr "Завантажити файл" @@ -5019,7 +5203,7 @@ msgstr "Організація" #. 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 "Опис" @@ -5042,8 +5226,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:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "Видалити" @@ -5171,7 +5356,7 @@ msgid "Note" msgstr "Зауваження" #. 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 "Додаткові імена" @@ -5564,70 +5749,70 @@ 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 +#: 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." @@ -5636,32 +5821,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." @@ -5670,39 +5855,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 " @@ -5713,7 +5898,7 @@ msgstr "" "на %s і ми внесемо його до списку." #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "Код не введено" @@ -5976,10 +6161,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 "Скористайтесь цією формою, щоб додати теґи своїм підпискам та читачам." @@ -6209,12 +6390,12 @@ 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." @@ -6222,7 +6403,7 @@ msgstr "" "Налаштуйте вигляд сторінки свого профілю, використовуючи фонове зображення і " "кольори на свій смак." -#: actions/userdesignsettings.php:282 +#: actions/userdesignsettings.php:272 msgid "Enjoy your hotdog!" msgstr "Поласуйте бутербродом!" @@ -6991,54 +7172,52 @@ msgstr "" #. TRANS: Client exception thrown when using an unknown verb for the activity importer. #: lib/activityimporter.php:81 -#, fuzzy, php-format +#, php-format msgid "Unknown verb: \"%s\"." -msgstr "Невідома мова «%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 "" +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 "Зазначте ім’я користувача, до якого бажаєте підписатись." +msgstr "Примусова підписка віддалених користувачів є неможливою." #. TRANS: Client exception thrown when trying to subscribe to an unknown profile. #: lib/activityimporter.php:132 -#, fuzzy msgid "Unknown profile." -msgstr "Невідомий профіль %s" +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 "" +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 "" +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 "Ви вже стоїте у цій спільноти." +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 +#, php-format msgid "No content for notice %s." -msgstr "Допис %d не має змісту." +msgstr "Допис %s не має змісту." #. TRANS: Client exception thrown when there is no source attribute. #: lib/activityutils.php:200 @@ -7189,22 +7368,26 @@ 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 "Не вдалося видалити скасований токен." @@ -7323,15 +7506,13 @@ msgid "Revoke" msgstr "Відкликати" #: lib/atom10feed.php:113 -#, fuzzy msgid "Author element must contain a name element." -msgstr "елемент author повинен містити елемент name." +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 "Не видаляти цю спільноту" +msgstr "Не видаляти цей метод!" #. TRANS: DT element label in attachment list item. #: lib/attachmentlist.php:294 @@ -7771,24 +7952,24 @@ msgstr "" "tracking — наразі не виконується\n" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 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:153 +#: lib/common.php:158 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 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "Іти до файлу інсталяції." @@ -7855,11 +8036,21 @@ 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: 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 @@ -7891,17 +8082,16 @@ msgid "FOAF" msgstr "FOAF" #: lib/feedimporter.php:75 -#, fuzzy msgid "Not an atom feed." -msgstr "Не є учасником" +msgstr "Не є стрічкою у форматі Atom." #: lib/feedimporter.php:82 msgid "No author in the feed." -msgstr "" +msgstr "Немає автора в цій стрічці." #: lib/feedimporter.php:89 msgid "Can't import without a user." -msgstr "" +msgstr "Неможливо імпортувати без користувача." #. TRANS: Header for feed links (h2). #: lib/feedlist.php:66 @@ -7937,34 +8127,29 @@ msgstr "Вперед" msgid "Grant this user the \"%s\" role" msgstr "Надати цьому користувачеві роль «%s»" -#: lib/groupeditform.php:154 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "" -"1-64 літери нижнього регістру і цифри, ніякої пунктуації або інтервалів" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 msgid "URL of the homepage or blog of the group or topic." msgstr "URL-адреса веб-сторінки або тематичного блоґу спільноти" -#: lib/groupeditform.php:168 +#: lib/groupeditform.php:160 msgid "Describe the group or topic" msgstr "Опишіть спільноту або тему" -#: 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" +#: 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." msgstr[0] "Опишіть спільноту або тему, вкладаючись у %d знак" msgstr[1] "Опишіть спільноту або тему, вкладаючись у %d знаків" msgstr[2] "Опишіть спільноту або тему, вкладаючись у %d знаків" -#: lib/groupeditform.php:182 +#: lib/groupeditform.php:174 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." msgstr "" "Розташування спільноти, на кшталт «Місто, область (або регіон), країна»." -#: lib/groupeditform.php:190 +#: lib/groupeditform.php:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -9188,14 +9373,9 @@ msgstr[2] "близько %d місяців тому" 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-формат)" @@ -9238,3 +9418,32 @@ msgstr "Неправильний XML, корінь XRD відсутній." #, php-format msgid "Getting backup from file '%s'." msgstr "Отримання резервної копії файлу «%s»." + +#~ msgid "No such group" +#~ msgstr "Такої спільноти не існує." + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "HTTP спосіб не підтримується." + +#~ msgid "Reset" +#~ msgstr "Скинути" + +#~ msgid "" +#~ "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#~ msgstr "" +#~ "1-64 літери нижнього регістра і цифри, ніякої пунктуації або інтервалів. " +#~ "Неодмінно." + +#~ msgid "6 or more characters. Required." +#~ msgstr "6 або більше знаків. Неодмінно." + +#~ msgid "Same as password above. Required." +#~ msgstr "Такий само, як і пароль вище. Неодмінно." + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "" +#~ "1-64 літери нижнього регістру і цифри, ніякої пунктуації або інтервалів" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s є неприпустимим кольором!" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 8f0025cdc3..c071fa458a 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -14,18 +14,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:35:27+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 14:58:19+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 (r80343); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2011-01-14 13:22:39+0000\n" +"X-POT-Import-Date: 2011-01-20 20:41:25+0000\n" #. TRANS: Page title for Access admin panel that allows configuring site access. #. TRANS: Menu item for site administration @@ -80,6 +80,7 @@ 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 text for saving "Other settings" in profile. @@ -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:254 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:262 +#: actions/useradminpanel.php:298 lib/applicationeditform.php:355 +#: lib/designsettings.php:270 lib/groupeditform.php:198 msgctxt "BUTTON" msgid "Save" 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. @@ -135,8 +138,8 @@ msgstr "没有这个页面。" #: 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 @@ -147,7 +150,7 @@ msgstr "没有这个页面。" #: 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/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/usergroups.php:93 actions/userrss.php:40 actions/userxrd.php:59 @@ -312,7 +315,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 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/apiaccountupdatedeliverydevice.php:130 +#: actions/confirmaddress.php:118 actions/emailsettings.php:359 +#: actions/emailsettings.php:508 actions/imsettings.php:276 +#: actions/imsettings.php:432 actions/othersettings.php:184 +#: actions/profilesettings.php:322 actions/smssettings.php:301 +#: actions/smssettings.php:454 msgid "Could not update user." msgstr "无法更新用户。" @@ -334,7 +351,8 @@ 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,7 +362,7 @@ 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/designadminpanel.php:120 actions/editapplication.php:121 #: actions/newapplication.php:104 actions/newnotice.php:95 #: lib/designsettings.php:298 #, php-format @@ -365,8 +383,8 @@ msgstr[0] "服务器当前的设置无法处理这么多的 POST 数据(%s byt #: 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/userdesignsettings.php:201 actions/userdesignsettings.php:211 +#: actions/userdesignsettings.php:253 actions/userdesignsettings.php:263 msgid "Unable to save your design settings." msgstr "无法保存你的外观设置。" @@ -374,13 +392,18 @@ msgstr "无法保存你的外观设置。" #. TRANS: Client error displayed when a database error occurs updating profile colours. #: actions/apiaccountupdateprofilebackgroundimage.php:191 #: actions/apiaccountupdateprofilecolors.php:139 +#: actions/groupdesignsettings.php:266 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. @@ -391,31 +414,38 @@ msgstr "首页" 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 #, php-format msgid "%s favorites" msgstr "%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 "%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 "屏蔽用户失败。" @@ -504,7 +534,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:91 msgid "Could not delete favorite." msgstr "无法删除收藏。" @@ -550,7 +581,7 @@ msgstr "无法找到目标用户。" #. 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/newgroup.php:136 actions/profilesettings.php:273 #: actions/register.php:214 msgid "Nickname already in use. Try another one." msgstr "昵称已被使用,换一个吧。" @@ -560,7 +591,7 @@ msgstr "昵称已被使用,换一个吧。" #. 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/newgroup.php:140 actions/profilesettings.php:243 #: actions/register.php:216 msgid "Not a valid nickname." msgstr "不是有效的昵称。" @@ -572,7 +603,7 @@ msgstr "不是有效的昵称。" #. 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/newgroup.php:147 actions/profilesettings.php:248 #: actions/register.php:223 msgid "Homepage is not a valid URL." msgstr "主页的URL不正确。" @@ -582,7 +613,7 @@ msgstr "主页的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:151 actions/profilesettings.php:256 +#: actions/newgroup.php:151 actions/profilesettings.php:252 #: actions/register.php:226 msgid "Full name is too long (maximum 255 characters)." msgstr "全名过长(不能超过 255 个字符)。" @@ -608,7 +639,7 @@ msgstr[0] "D描述过长(不能超过%d 个字符)。" #. 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/newgroup.php:163 actions/profilesettings.php:265 #: actions/register.php:235 msgid "Location is too long (maximum 255 characters)." msgstr "位置过长(不能超过255个字符)。" @@ -664,22 +695,26 @@ 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小组" @@ -691,9 +726,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." @@ -730,7 +767,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。" @@ -750,18 +787,22 @@ 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. #: actions/apioauthauthorize.php:147 actions/avatarsettings.php:280 -#: actions/deletenotice.php:177 actions/disfavor.php:74 +#: actions/deletenotice.php:177 actions/disfavor.php:76 #: 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/groupblock.php:66 actions/grouplogo.php:324 +#: actions/groupunblock.php:65 actions/imsettings.php:224 #: 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: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 @@ -780,18 +821,21 @@ 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: Form validation error message when an unsupported argument is used. #. TRANS: Message given submitting a form with an unknown action in IM settings. #. 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:316 actions/grouplogo.php:335 +#: actions/imsettings.php:239 actions/newapplication.php:125 +#: actions/oauthconnectionssettings.php:147 actions/recoverpassword.php:46 +#: actions/smssettings.php:271 lib/designsettings.php:321 msgid "Unexpected form submission." msgstr "未预料的表单提交。" @@ -840,9 +884,9 @@ msgstr "帐号" #. 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/profilesettings.php:106 actions/register.php:432 #: actions/showgroup.php:240 actions/tagother.php:94 -#: actions/userauthorization.php:145 lib/groupeditform.php:152 +#: actions/userauthorization.php:145 lib/groupeditform.php:144 #: lib/userprofile.php:134 msgid "Nickname" msgstr "昵称" @@ -850,7 +894,7 @@ 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/register.php:436 lib/accountsettingsaction.php:120 msgid "Password" msgstr "密码" @@ -861,7 +905,7 @@ msgstr "密码" #. 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/imsettings.php:127 actions/smssettings.php:133 #: lib/applicationeditform.php:351 msgctxt "BUTTON" msgid "Cancel" @@ -931,6 +975,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 @@ -950,39 +995,51 @@ msgstr "不能转发你自己的消息。" 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. -#: actions/apistatusesshow.php:117 actions/atompubfavoritefeed.php:104 -#: actions/atompubmembershipfeed.php:106 actions/atompubshowfavorite.php:116 +#. 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" #. 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 +#, 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 #, php-format msgid "Deleted notice %d" msgstr "删除消息 %d" @@ -1112,51 +1169,49 @@ msgstr "只有该用户才能添加到他们的时间线。" msgid "Only accept AtomPub for Atom feeds." msgstr "Atom feeds 只接受 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 "" -#: 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:334 +#: actions/apitimelineuser.php:336 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 +#: actions/apitimelineuser.php:347 #, 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 +#. TRANS: %d is the notice ID (number). +#: actions/apitimelineuser.php:381 #, fuzzy, php-format msgid "No content for notice %d." msgstr "搜索消息内容" #. TRANS: Client error displayed when using another format than AtomPub. -#: actions/apitimelineuser.php:406 +#: actions/apitimelineuser.php:409 #, php-format msgid "Notice with URI \"%s\" already exists." msgstr "已存在使用 URI \"%s\" 的消息了。" -#: 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." @@ -1167,108 +1222,137 @@ msgstr "API 方法尚未实现。" 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. +#: actions/atompubfavoritefeed.php:69 actions/atompubmembershipfeed.php:71 +#: actions/atompubshowfavorite.php:75 actions/atompubshowmembership.php:72 +#: actions/subscribe.php:107 +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 +#. 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 -#, fuzzy, php-format -msgid "Groups %s is a member of on %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 -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 trying to update logo settings for a non-existing 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:44 actions/foafgroup.php:62 actions/foafgroup.php:69 +#: actions/groupblock.php:86 actions/groupbyid.php:83 +#: actions/groupdesignsettings.php:100 actions/grouplogo.php:104 +#: 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: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 +#. TRANS: Client exception thrown when deleting someone else's membership. +#: actions/atompubshowmembership.php:151 #, fuzzy -msgid "Method not supported" -msgstr "HTTP 方法不支持。" - -#: 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. @@ -1276,40 +1360,37 @@ msgstr "" #: actions/atompubshowsubscription.php:83 #: actions/atompubsubscriptionfeed.php:74 #, fuzzy, php-format -msgid "No such profile id: %d" +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" +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" +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: Client error displayed when not using the POST verb. #. TRANS: Do not translate POST. -#: actions/atompubsubscriptionfeed.php:246 +#: actions/atompubsubscriptionfeed.php:249 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:257 msgid "Can only follow people." msgstr "" -#: actions/atompubsubscriptionfeed.php:262 +#. TRANS: Client exception thrown when subscribing to a non-existing profile. +#: actions/atompubsubscriptionfeed.php:267 #, fuzzy, php-format -msgid "Unknown profile %s" +msgid "Unknown profile %s." msgstr "未知文件类型" #. TRANS: Client error displayed trying to get a non-existing attachment. @@ -1320,10 +1401,11 @@ 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 when trying to change group logo settings without having a 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/grouplogo.php:87 actions/groupmembers.php:76 #: actions/grouprss.php:91 actions/showgroup.php:116 msgid "No nickname." msgstr "没有昵称。" @@ -1354,30 +1436,36 @@ 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. #: actions/avatarsettings.php:108 actions/avatarsettings.php:192 -#: actions/grouplogo.php:181 actions/remotesubscribe.php:191 +#: actions/grouplogo.php:185 actions/remotesubscribe.php:190 #: actions/userauthorization.php:72 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:263 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:208 actions/grouplogo.php:272 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:220 actions/grouplogo.php:285 msgid "Preview" msgstr "预览" @@ -1412,7 +1500,8 @@ 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:361 actions/grouplogo.php:393 msgid "Lost our file data." msgstr "文件数据丢失" @@ -1431,35 +1520,42 @@ msgstr "更新头像失败。" msgid "Avatar deleted." msgstr "头像已删除。" -#: actions/backupaccount.php:62 actions/profilesettings.php:467 +#. 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:464 msgid "Backup account" msgstr "" -#: actions/backupaccount.php:80 +#. 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 "" -#: actions/backupaccount.php:232 +#. 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 " +"\">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 +#. TRANS: Submit button to backup an account on the backup account page. +#: actions/backupaccount.php:248 #, fuzzy msgctxt "BUTTON" msgid "Backup" msgstr "背景" -#: actions/backupaccount.php:258 +#. TRANS: Title for submit button to backup an account on the backup account page. +#: actions/backupaccount.php:252 msgid "Backup your account" msgstr "" @@ -1492,14 +1588,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: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:158 actions/deleteuser.php:156 +#: actions/block.php:158 msgid "Do not block this user" msgstr "不要屏蔽这个用户" @@ -1511,7 +1606,7 @@ 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:185 msgctxt "BUTTON" msgid "Yes" msgstr "是" @@ -1527,31 +1622,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 @@ -1621,23 +1691,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 @@ -1698,7 +1751,8 @@ 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 +#. TRANS: Option in profile settings to delete the account of the currently logged in user. +#: actions/deleteaccount.php:228 actions/profilesettings.php:472 #, fuzzy msgid "Delete account" msgstr "创建一个账户" @@ -1720,8 +1774,9 @@ msgid "" 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:239 actions/register.php:441 +#: actions/recoverpassword.php:262 actions/register.php:440 msgid "Confirm" msgstr "密码确认" @@ -1794,8 +1849,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。" @@ -1845,10 +1902,11 @@ 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 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/deletenotice.php:52 actions/disfavor.php:62 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 @@ -1886,97 +1944,132 @@ msgstr "不要删除这个消息" 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 +#. TRANS: Description of form for deleting a user. +#: actions/deleteuser.php:165 lib/deleteuserform.php:75 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:521 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:527 #, php-format msgid "" "You can upload a background image for the site. The maximum file size is %1" @@ -1984,98 +2077,108 @@ 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" +#. 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 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 "保存" - +#. 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:84 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:99 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. @@ -2165,14 +2268,16 @@ 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 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 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:107 actions/grouplogo.php:112 msgid "You must be an admin to edit the group." msgstr "管理员才可以编辑小组。" @@ -2233,8 +2338,8 @@ msgstr "当前确认的电子邮件。" #. 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/imsettings.php:112 actions/smssettings.php:120 +#: actions/smssettings.php:176 msgctxt "BUTTON" msgid "Remove" msgstr "移除" @@ -2259,15 +2364,15 @@ 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 a SMS phone number in SMS settings form. -#: actions/emailsettings.php:144 actions/imsettings.php:151 -#: actions/smssettings.php:162 +#: actions/emailsettings.php:144 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:152 actions/smssettings.php:167 msgid "Incoming email" msgstr "接收用 email" @@ -2278,13 +2383,13 @@ 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:180 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:189 actions/smssettings.php:182 msgid "Make a new email address for posting to; cancels the old one." msgstr "生成新的电子邮件地址用于发布消息;取消旧的。" @@ -2297,7 +2402,7 @@ 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:199 actions/smssettings.php:185 msgctxt "BUTTON" msgid "New" msgstr "新增" @@ -2371,9 +2476,10 @@ 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 SMS confirmation code. -#: actions/emailsettings.php:426 actions/imsettings.php:351 -#: actions/smssettings.php:373 -msgid "Couldn't insert confirmation code." +#: actions/emailsettings.php:426 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. @@ -2388,8 +2494,8 @@ 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 +#: actions/emailsettings.php:454 actions/imsettings.php:377 +#: actions/smssettings.php:399 msgid "No pending confirmation to cancel." msgstr "没有可以取消的确认。" @@ -2400,8 +2506,9 @@ 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:468 actions/smssettings.php:413 +#, fuzzy +msgid "Could not delete email confirmation." msgstr "无法删除电子邮件确认。" #. TRANS: Message given after successfully canceling e-mail address confirmation. @@ -2420,24 +2527,25 @@ msgstr "这个不是你的电子邮件地址。" msgid "The email address was removed." msgstr "电子邮件地址已被删除。" -#: actions/emailsettings.php:528 actions/smssettings.php:568 +#: actions/emailsettings.php:528 actions/smssettings.php:554 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." +#: actions/smssettings.php:564 actions/smssettings.php:587 +#, 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 +#: actions/emailsettings.php:544 actions/smssettings.php:567 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 +#: actions/emailsettings.php:569 actions/smssettings.php:590 msgid "New incoming email address added." msgstr "已添加新的发布用的电子邮件地址。" @@ -2530,7 +2638,7 @@ msgstr "未预料的响应!" msgid "User being listened to does not exist." msgstr "要查看的用户不存在。" -#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:59 +#: actions/finishremotesubscribe.php:87 actions/remotesubscribe.php:58 msgid "You can use the local subscription!" msgstr "你可以使用本地关注!" @@ -2657,44 +2765,46 @@ 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 -msgid "Couldn't update your design." -msgstr "无法更新你的外观。" - -#: actions/groupdesignsettings.php:311 actions/userdesignsettings.php:231 +#: actions/groupdesignsettings.php:311 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:145 actions/grouplogo.php:200 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:157 #, 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:244 msgid "Upload" msgstr "上传" -#: actions/grouplogo.php:289 +#. TRANS: Button text for cropping an uploaded group logo. +#: actions/grouplogo.php:301 msgid "Crop" msgstr "剪裁" -#: actions/grouplogo.php:365 +#. TRANS: Form instructions on the group logo page. +#: actions/grouplogo.php:378 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:413 msgid "Logo updated." msgstr "logo已更新。" -#: actions/grouplogo.php:401 +#. TRANS: Form failure message after failing to update a group logo. +#: actions/grouplogo.php:416 msgid "Failed updating logo." msgstr "更新 logo 失败。" @@ -2778,7 +2888,7 @@ msgstr "" "组?试一下[搜索小组](%%%%action.groupsearch%%%%)或[建立自己的小组](%%%%" "action.newgroup%%%%)!" -#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:122 +#: actions/groups.php:107 actions/usergroups.php:126 lib/groupeditform.php:115 msgid "Create a new group" msgstr "新建一个小组" @@ -2832,14 +2942,14 @@ msgid "Error removing the block." msgstr "取消屏蔽时出错。" #. TRANS: Title for instance messaging settings. -#: actions/imsettings.php:60 +#: 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](%%" @@ -2849,23 +2959,23 @@ msgstr "" "们。" #. TRANS: Message given in the IM settings if XMPP is not enabled on the site. -#: actions/imsettings.php:94 +#: 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 +#: actions/imsettings.php:102 actions/imsettings.php:132 msgid "IM address" msgstr "IM 地址" -#: actions/imsettings.php:113 +#: actions/imsettings.php:109 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 +#: actions/imsettings.php:120 #, php-format msgid "" "Awaiting confirmation on this address. Check your Jabber/GTalk account for a " @@ -2879,7 +2989,7 @@ msgstr "" #. 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 " @@ -2889,63 +2999,63 @@ msgstr "" "或 GTalk 中将 %s 加为好友。" #. TRANS: Form legend for IM preferences form. -#: actions/imsettings.php:158 +#: actions/imsettings.php:154 msgid "IM preferences" msgstr "IM 首选项已保存。" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:163 +#: actions/imsettings.php:159 msgid "Send me notices through Jabber/GTalk." msgstr "通过 Jabber/GTalk 发送通告。" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:169 +#: actions/imsettings.php:165 msgid "Post a notice when my Jabber/GTalk status changes." msgstr "当我的 Jabber/GTalk 状态改变时自动发布消息。" #. TRANS: Checkbox label in IM preferences form. -#: actions/imsettings.php:175 +#: actions/imsettings.php:171 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 +#: actions/imsettings.php:178 msgid "Publish a MicroID for my Jabber/GTalk address." msgstr "公开 Jabber/GTalk 帐号的 MicroID。" #. TRANS: Confirmation message for successful IM preferences save. -#: actions/imsettings.php:290 actions/othersettings.php:190 +#: actions/imsettings.php:283 actions/othersettings.php:190 msgid "Preferences saved." msgstr "首选项已保存。" #. TRANS: Message given saving IM address without having provided one. -#: actions/imsettings.php:312 +#: 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 +#: 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 +#: 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 +#: 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 +#: 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 +#: actions/imsettings.php:353 #, php-format msgid "" "A confirmation code was sent to the IM address you added. You must approve %" @@ -2953,28 +3063,29 @@ msgid "" msgstr "验证码已被发送到你新增的 IM 地址。你必须允许 %s 向你发送信息。" #. TRANS: Message given canceling IM address confirmation for the wrong IM address. -#: actions/imsettings.php:391 +#: 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." +#: 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 +#: actions/imsettings.php:396 msgid "IM confirmation cancelled." msgstr "IM 确认已取消。" #. TRANS: Message given trying to remove an IM 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 +#: actions/imsettings.php:440 msgid "The IM address was removed." msgstr "IM 地址已删除。" @@ -3161,130 +3272,144 @@ 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 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 "保存许可协议设置" @@ -3308,11 +3433,11 @@ msgstr "登录" msgid "Login to site" msgstr "登录" -#: actions/login.php:258 actions/register.php:491 +#: actions/login.php:258 actions/register.php:490 msgid "Remember me" msgstr "记住登录状态" -#: 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 "下次自动登录,请不要在公共电脑上使用此选项!" @@ -3692,7 +3817,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 "修改密码" @@ -3700,7 +3826,8 @@ 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 "新密码" @@ -3708,7 +3835,7 @@ msgstr "新密码" msgid "6 or more characters" msgstr "6 个或更多字符" -#: actions/passwordsettings.php:113 actions/recoverpassword.php:240 +#: actions/passwordsettings.php:113 msgid "Same as password above" msgstr "与上面相同的密码" @@ -3732,11 +3859,12 @@ msgstr "旧密码不正确" msgid "Error saving user; invalid." msgstr "保存用户时出错;无效。" -#: actions/passwordsettings.php:186 actions/recoverpassword.php:381 +#: actions/passwordsettings.php:186 msgid "Can't save new password." msgstr "无法保存新密码。" -#: 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 "密码已保存。" @@ -4043,120 +4171,121 @@ 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:433 +#: lib/groupeditform.php:146 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/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:152 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:460 +#: lib/applicationeditform.php:236 lib/groupeditform.php:153 msgid "Homepage" msgstr "主页" #. TRANS: Tooltip for field label in form for profile settings. -#: actions/profilesettings.php:125 +#: actions/profilesettings.php:121 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:471 #, 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:476 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:478 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/profilesettings.php:145 actions/register.php:483 #: actions/showgroup.php:262 actions/tagother.php:112 -#: actions/userauthorization.php:166 lib/groupeditform.php:180 +#: actions/userauthorization.php:166 lib/groupeditform.php:172 #: lib/userprofile.php:167 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 actions/register.php:485 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 +#: actions/profilesettings.php:161 actions/tagother.php:149 #: actions/tagother.php:209 lib/subscriptionlist.php:106 #: lib/subscriptionlist.php:108 lib/userprofile.php:212 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" 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 +#: 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 "自动关注任何关注我的人 (这个选项适合机器人)" @@ -4164,58 +4293,56 @@ 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 #, 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 actions/tagother.php:178 #, 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:481 actions/restoreaccount.php:60 +#: actions/profilesettings.php:480 actions/restoreaccount.php:60 #, fuzzy msgid "Restore account" msgstr "创建一个账户" @@ -4332,123 +4459,175 @@ 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. " +#: actions/recoverpassword.php:167 +#, fuzzy +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 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: 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 "与上面相同的密码" + +#. 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: Reset password form validation error message. +#: actions/recoverpassword.php:418 +#, fuzzy +msgid "Cannot save new password." +msgstr "无法保存新密码。" + +#. 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 "保存用户设置时出错。" -#: 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 "新密码已保存,你现在已登录。" @@ -4464,7 +4643,7 @@ msgstr "对不起,无效的邀请码。" msgid "Registration successful" msgstr "注册成功" -#: actions/register.php:121 actions/register.php:512 lib/logingroupnav.php:85 +#: actions/register.php:121 actions/register.php:511 lib/logingroupnav.php:85 msgid "Register" msgstr "注册" @@ -4492,59 +4671,52 @@ 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 "与上面输入相同的密码。此项必填。" +#: actions/register.php:437 +#, fuzzy +msgid "6 or more characters." +msgstr "6 个或更多字符" #. 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 "电子邮件" -#: 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 "只用于更新、通知及密码恢复" -#: actions/register.php:458 +#: actions/register.php:457 msgid "Longer name, preferably your \"real\" name" msgstr "更长的名字,最好是“真实姓名”" -#: actions/register.php:463 +#: actions/register.php:462 msgid "URL of your homepage, blog, or profile on another site" msgstr "你的主页、博客或在其他网站的URL" -#: 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 "我明白%1$s的信息是私人且保密的。" -#: actions/register.php:534 +#: actions/register.php:533 #, 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: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, " @@ -4553,7 +4725,7 @@ msgstr "" "我的文字和文件在%s下提供,除了如下隐私内容:密码、电子邮件地址、IM 地址和电话" "号码。" -#: actions/register.php:589 +#: actions/register.php:588 #, php-format msgid "" "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " @@ -4583,13 +4755,13 @@ msgstr "" "\n" "感谢你的注册,希望你喜欢这个服务。" -#: 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.)" msgstr "(你将收到一封邮件,包含了如何确认邮件地址的说明。)" -#: actions/remotesubscribe.php:98 +#: actions/remotesubscribe.php:97 #, php-format msgid "" "To subscribe, you can [login](%%action.login%%), or [register](%%action." @@ -4600,72 +4772,75 @@ 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 +#: 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 +#: actions/remotesubscribe.php:133 msgid "URL of your profile on another compatible microblogging service" msgstr "你在其他兼容的微博客服务的资料页 URL" -#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 +#: actions/remotesubscribe.php:136 lib/subscribeform.php:139 #: lib/userprofile.php:411 msgid "Subscribe" msgstr "关注" -#: actions/remotesubscribe.php:159 +#: 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." +#: 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 "无法获得一个 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 +#, 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:692 +#: actions/repeat.php:112 lib/noticelist.php:692 msgid "Repeated" msgstr "已转发" -#: actions/repeat.php:119 +#: actions/repeat.php:117 msgid "Repeated!" msgstr "已转发!" @@ -4887,7 +5062,7 @@ msgstr "组织名称必填。" #. 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 "描述" @@ -4910,8 +5085,9 @@ msgstr "应用程序动作" msgid "Reset key & secret" msgstr "重置key和secret" +#. TRANS: Title of form for deleting a user. #: actions/showapplication.php:252 lib/deletegroupform.php:121 -#: lib/deleteuserform.php:66 lib/noticelist.php:673 +#: lib/deleteuserform.php:64 lib/noticelist.php:673 msgid "Delete" msgstr "删除" @@ -5033,7 +5209,7 @@ msgid "Note" msgstr "注释" #. 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 "别名" @@ -5415,102 +5591,102 @@ 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 +#: 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." @@ -5518,39 +5694,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 " @@ -5560,7 +5736,7 @@ msgstr "" "系 %s 以告知。" #. TRANS: Message given saving SMS phone number confirmation code without having provided one. -#: actions/smssettings.php:548 +#: actions/smssettings.php:535 msgid "No code entered" msgstr "没有输入验证码" @@ -5816,10 +5992,6 @@ 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 "使用这个表单给你的关注者或你关注的用户添加标签。" @@ -6043,18 +6215,18 @@ 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 "享受你的成果吧!" @@ -6990,22 +7162,26 @@ 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 +#, 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 "尝试了取消未知的 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 失败。" @@ -7550,24 +7726,24 @@ msgstr "" "tracking - 尚未实现。\n" #. TRANS: Error message displayed when no configuration file was found for a StatusNet installation. -#: lib/common.php:150 +#: lib/common.php:155 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:153 +#: lib/common.php:158 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 +#: lib/common.php:161 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:160 +#: lib/common.php:165 msgid "Go to the installer." msgstr "去安装程序。" @@ -7632,11 +7808,21 @@ 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: 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 @@ -7714,30 +7900,26 @@ msgstr "执行" msgid "Grant this user the \"%s\" role" msgstr "给这个用户添加\\\"%s\\\"权限" -#: lib/groupeditform.php:154 -msgid "1-64 lowercase letters or numbers, no punctuation or spaces" -msgstr "1 到 64 个小写字母或数字,不包含标点或空格" - -#: lib/groupeditform.php:163 +#: lib/groupeditform.php:155 msgid "URL of the homepage or blog of the group or topic." msgstr "这个小组或主题的主页或博客 URL。" -#: lib/groupeditform.php:168 +#: lib/groupeditform.php:160 msgid "Describe the group or topic" msgstr "小组或主题的描述" -#: 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" +#: 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." msgstr[0] "用不超过%d个字符描述下这个小组或者主题" -#: lib/groupeditform.php:182 +#: lib/groupeditform.php:174 msgid "" "Location for the group, if any, like \"City, State (or Region), Country\"." msgstr "小组的地理位置,例如“国家、省份、城市”。" -#: lib/groupeditform.php:190 +#: lib/groupeditform.php:182 #, php-format msgid "" "Extra nicknames for the group, separated with commas or spaces. Maximum %d " @@ -8914,14 +9096,9 @@ msgstr[0] "约%d个月前" 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个十六进制字符。" @@ -8955,3 +9132,29 @@ msgstr "" #, php-format msgid "Getting backup from file '%s'." msgstr "从文件'%s'获取备份。" + +#~ msgid "No such group" +#~ msgstr "没有这个组。" + +#, fuzzy +#~ msgid "HTTP method not supported" +#~ msgstr "HTTP 方法不支持。" + +#~ msgid "Reset" +#~ msgstr "重置" + +#~ msgid "" +#~ "1-64 lowercase letters or numbers, no punctuation or spaces. Required." +#~ msgstr "1 到 64 位的小写字母或数字,不能使用标点和空格。此项必填。" + +#~ msgid "6 or more characters. Required." +#~ msgstr "至少 6 位字符。此项必填。" + +#~ msgid "Same as password above. Required." +#~ msgstr "与上面输入相同的密码。此项必填。" + +#~ msgid "1-64 lowercase letters or numbers, no punctuation or spaces" +#~ msgstr "1 到 64 个小写字母或数字,不包含标点或空格" + +#~ msgid "%s is not a valid color!" +#~ msgstr "%s不是有效的颜色!" diff --git a/plugins/Bookmark/Bookmark.php b/plugins/Bookmark/Bookmark.php index 4ee287fb65..777b50f724 100644 --- a/plugins/Bookmark/Bookmark.php +++ b/plugins/Bookmark/Bookmark.php @@ -214,7 +214,11 @@ class Bookmark extends Memcached_DataObject } if (is_string($rawtags)) { - $rawtags = preg_split('/[\s,]+/', $rawtags); + if (empty($rawtags)) { + $rawtags = array(); + } else { + $rawtags = preg_split('/[\s,]+/', $rawtags); + } } $nb = new Bookmark(); @@ -274,10 +278,15 @@ class Bookmark extends Memcached_DataObject // Use user's preferences for short URLs, if possible - $user = User::staticGet('id', $profile->id); + try { + $user = User::staticGet('id', $profile->id); - $shortUrl = File_redirection::makeShort($url, - empty($user) ? null : $user); + $shortUrl = File_redirection::makeShort($url, + empty($user) ? null : $user); + } catch (Exception $e) { + // Don't let this stop us. + $shortUrl = $url; + } $content = sprintf(_('"%s" %s %s %s'), $title, diff --git a/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po new file mode 100644 index 0000000000..38e99a2d2b --- /dev/null +++ b/plugins/Bookmark/locale/ia/LC_MESSAGES/Bookmark.po @@ -0,0 +1,36 @@ +# Translation of StatusNet - Bookmark to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Bookmark\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-20 19:02+0000\n" +"PO-Revision-Date: 2011-01-20 19:06:24+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-01-14 23:54:45+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80631); 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-bookmark\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: bookmarkform.php:162 +msgctxt "BUTTON" +msgid "Save" +msgstr "Salveguardar" + +#: importdelicious.php:340 +msgctxt "BUTTON" +msgid "Upload" +msgstr "Incargar" + +#: BookmarkPlugin.php:458 +msgid "Simple extension for supporting bookmarks." +msgstr "Extension simple pro supportar marcapaginas." diff --git a/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po new file mode 100644 index 0000000000..551e450b5b --- /dev/null +++ b/plugins/Bookmark/locale/mk/LC_MESSAGES/Bookmark.po @@ -0,0 +1,36 @@ +# Translation of StatusNet - Bookmark to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Bookmark\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-20 19:02+0000\n" +"PO-Revision-Date: 2011-01-20 19:06:24+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-01-14 23:54:45+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80631); 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-bookmark\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: bookmarkform.php:162 +msgctxt "BUTTON" +msgid "Save" +msgstr "Зачувај" + +#: importdelicious.php:340 +msgctxt "BUTTON" +msgid "Upload" +msgstr "Подигни" + +#: BookmarkPlugin.php:458 +msgid "Simple extension for supporting bookmarks." +msgstr "Прост додаток за поддршка на обележувачи." diff --git a/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po new file mode 100644 index 0000000000..f1a2a793c8 --- /dev/null +++ b/plugins/Bookmark/locale/uk/LC_MESSAGES/Bookmark.po @@ -0,0 +1,37 @@ +# Translation of StatusNet - Bookmark to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Bookmark\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-20 19:02+0000\n" +"PO-Revision-Date: 2011-01-20 19:06:24+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-01-14 23:54:45+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80631); 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-bookmark\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" + +#: bookmarkform.php:162 +msgctxt "BUTTON" +msgid "Save" +msgstr "Зберегти" + +#: importdelicious.php:340 +msgctxt "BUTTON" +msgid "Upload" +msgstr "Завантажити" + +#: BookmarkPlugin.php:458 +msgid "Simple extension for supporting bookmarks." +msgstr "Простий додаток, що підтримує додавання закладок." diff --git a/plugins/CasAuthentication/CasAuthenticationPlugin.php b/plugins/CasAuthentication/CasAuthenticationPlugin.php index 71e54d41f9..3196bd94a7 100644 --- a/plugins/CasAuthentication/CasAuthenticationPlugin.php +++ b/plugins/CasAuthentication/CasAuthenticationPlugin.php @@ -74,7 +74,7 @@ class CasAuthenticationPlugin extends AuthenticationPlugin return true; } - function onEndLoginGroupNav(&$action) + function onEndLoginGroupNav($action) { $action_name = $action->trimmed('action'); diff --git a/plugins/Facebook/FBConnectAuth.php b/plugins/Facebook/FBConnectAuth.php index 84d51578f1..937db56e56 100644 --- a/plugins/Facebook/FBConnectAuth.php +++ b/plugins/Facebook/FBConnectAuth.php @@ -232,6 +232,10 @@ class FBConnectauthAction extends Action function createNewUser() { + if (!Event::handle('StartRegistrationTry', array($this))) { + return; + } + if (common_config('site', 'closed')) { // TRANS: Client error trying to register with registrations not allowed. $this->clientError(_m('Registration not allowed.')); @@ -297,6 +301,8 @@ class FBConnectauthAction extends Action common_debug('Facebook Connect Plugin - ' . "Registered new user $user->id from Facebook user $this->fbuid"); + Event::handle('EndRegistrationTry', array($this)); + common_redirect(common_local_url('showstream', array('nickname' => $user->nickname)), 303); } diff --git a/plugins/Facebook/FacebookPlugin.php b/plugins/Facebook/FacebookPlugin.php index 798009817c..e877d300b6 100644 --- a/plugins/Facebook/FacebookPlugin.php +++ b/plugins/Facebook/FacebookPlugin.php @@ -446,11 +446,11 @@ class FacebookPlugin extends Plugin /* * Add a login tab for Facebook Connect * - * @param Action &action the current action + * @param Action $action the current action * * @return void */ - function onEndLoginGroupNav(&$action) + function onEndLoginGroupNav($action) { if (self::hasKeys()) { $action_name = $action->trimmed('action'); @@ -470,11 +470,11 @@ class FacebookPlugin extends Plugin /* * Add a tab for managing Facebook Connect settings * - * @param Action &action the current action + * @param Action $action the current action * * @return void */ - function onEndConnectSettingsNav(&$action) + function onEndConnectSettingsNav($action) { if (self::hasKeys()) { $action_name = $action->trimmed('action'); diff --git a/plugins/Facebook/locale/Facebook.pot b/plugins/Facebook/locale/Facebook.pot index f41ee06615..b7c6dead94 100644 --- a/plugins/Facebook/locale/Facebook.pot +++ b/plugins/Facebook/locale/Facebook.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-22 14:50+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -129,28 +129,28 @@ msgstr "" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:237 FBConnectAuth.php:247 +#: FBConnectAuth.php:241 FBConnectAuth.php:251 msgid "Registration not allowed." msgstr "" #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:255 +#: FBConnectAuth.php:259 msgid "Not a valid invitation code." msgstr "" -#: FBConnectAuth.php:267 +#: FBConnectAuth.php:271 msgid "Nickname not allowed." msgstr "" -#: FBConnectAuth.php:272 +#: FBConnectAuth.php:276 msgid "Nickname already in use. Try another one." msgstr "" -#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344 +#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350 msgid "Error connecting user to Facebook." msgstr "" -#: FBConnectAuth.php:310 +#: FBConnectAuth.php:316 msgid "Invalid username or password." msgstr "" diff --git a/plugins/Facebook/locale/be-tarask/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/be-tarask/LC_MESSAGES/Facebook.po index 52511e51de..cae852296f 100644 --- a/plugins/Facebook/locale/be-tarask/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/be-tarask/LC_MESSAGES/Facebook.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:33:05+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 14:59:35+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: 2011-01-10 18:26:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n" @@ -154,28 +154,28 @@ msgstr "Злучыць" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:237 FBConnectAuth.php:247 +#: FBConnectAuth.php:241 FBConnectAuth.php:251 msgid "Registration not allowed." msgstr "Рэгістрацыя не дазволеная." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:255 +#: FBConnectAuth.php:259 msgid "Not a valid invitation code." msgstr "Няслушны код запрашэньня." -#: FBConnectAuth.php:267 +#: FBConnectAuth.php:271 msgid "Nickname not allowed." msgstr "Мянушка забароненая." -#: FBConnectAuth.php:272 +#: FBConnectAuth.php:276 msgid "Nickname already in use. Try another one." msgstr "Мянушка ўжо выкарыстоўваецца. Паспрабуйце іншую." -#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344 +#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350 msgid "Error connecting user to Facebook." msgstr "Памылка далучэньня карыстальніка да Facebook." -#: FBConnectAuth.php:310 +#: FBConnectAuth.php:316 msgid "Invalid username or password." msgstr "Няслушнае імя карыстальніка ці пароль." diff --git a/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po index 1ee2bf7f1a..c2edf3bf20 100644 --- a/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:33:06+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 14:59:35+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:26:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n" @@ -138,28 +138,28 @@ msgstr "Kevreañ" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:237 FBConnectAuth.php:247 +#: FBConnectAuth.php:241 FBConnectAuth.php:251 msgid "Registration not allowed." msgstr "N'eo ket aotreet krouiñ kontoù." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:255 +#: FBConnectAuth.php:259 msgid "Not a valid invitation code." msgstr "N'eo ket reizh ar c'hod pedadenn." -#: FBConnectAuth.php:267 +#: FBConnectAuth.php:271 msgid "Nickname not allowed." msgstr "Lesanv nann-aotreet." -#: FBConnectAuth.php:272 +#: FBConnectAuth.php:276 msgid "Nickname already in use. Try another one." msgstr "Implijet eo dija al lesanv-se. Klaskit unan all." -#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344 +#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350 msgid "Error connecting user to Facebook." msgstr "" -#: FBConnectAuth.php:310 +#: FBConnectAuth.php:316 msgid "Invalid username or password." msgstr "Anv implijer pe ger-tremen direizh." diff --git a/plugins/Facebook/locale/de/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/de/LC_MESSAGES/Facebook.po index 3ae1c2fa8a..3781695ab3 100644 --- a/plugins/Facebook/locale/de/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/de/LC_MESSAGES/Facebook.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:33:06+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 14:59:35+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-10 18:26:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n" @@ -158,28 +158,28 @@ msgstr "Verbinden" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:237 FBConnectAuth.php:247 +#: FBConnectAuth.php:241 FBConnectAuth.php:251 msgid "Registration not allowed." msgstr "Registrierung nicht erlaubt." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:255 +#: FBConnectAuth.php:259 msgid "Not a valid invitation code." msgstr "Kein gültiger Einladungscode." -#: FBConnectAuth.php:267 +#: FBConnectAuth.php:271 msgid "Nickname not allowed." msgstr "Benutzername nicht erlaubt." -#: FBConnectAuth.php:272 +#: FBConnectAuth.php:276 msgid "Nickname already in use. Try another one." msgstr "Benutzername wird bereits verwendet. Suche dir einen anderen aus." -#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344 +#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350 msgid "Error connecting user to Facebook." msgstr "Fehler beim Verbinden des Benutzers mit Facebook." -#: FBConnectAuth.php:310 +#: FBConnectAuth.php:316 msgid "Invalid username or password." msgstr "Benutzername oder Passwort falsch." diff --git a/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po index 8ba04b2829..f72df84434 100644 --- a/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:33:06+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 14:59:36+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:26:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n" @@ -153,28 +153,28 @@ msgstr "Conectar" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:237 FBConnectAuth.php:247 +#: FBConnectAuth.php:241 FBConnectAuth.php:251 msgid "Registration not allowed." msgstr "Registro de usuario no permitido." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:255 +#: FBConnectAuth.php:259 msgid "Not a valid invitation code." msgstr "No es un código de invitación válido." -#: FBConnectAuth.php:267 +#: FBConnectAuth.php:271 msgid "Nickname not allowed." msgstr "Nombre de usuario no autorizado." -#: FBConnectAuth.php:272 +#: FBConnectAuth.php:276 msgid "Nickname already in use. Try another one." msgstr "El nombre de usuario ya existe. Prueba con otro." -#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344 +#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350 msgid "Error connecting user to Facebook." msgstr "Error de conexión del usuario a Facebook." -#: FBConnectAuth.php:310 +#: FBConnectAuth.php:316 msgid "Invalid username or password." msgstr "Nombre de usuario o contraseña inválidos." diff --git a/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po index d4bb47a5e1..02242d2348 100644 --- a/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:33:06+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 14:59:36+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:26:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n" @@ -157,28 +157,28 @@ msgstr "Connexion" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:237 FBConnectAuth.php:247 +#: FBConnectAuth.php:241 FBConnectAuth.php:251 msgid "Registration not allowed." msgstr "Inscription non autorisée." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:255 +#: FBConnectAuth.php:259 msgid "Not a valid invitation code." msgstr "Le code d’invitation n’est pas valide." -#: FBConnectAuth.php:267 +#: FBConnectAuth.php:271 msgid "Nickname not allowed." msgstr "Pseudonyme non autorisé." -#: FBConnectAuth.php:272 +#: FBConnectAuth.php:276 msgid "Nickname already in use. Try another one." msgstr "Pseudonyme déjà utilisé. Essayez-en un autre." -#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344 +#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350 msgid "Error connecting user to Facebook." msgstr "Erreur de connexion de l’utilisateur à Facebook." -#: FBConnectAuth.php:310 +#: FBConnectAuth.php:316 msgid "Invalid username or password." msgstr "Nom d’utilisateur ou mot de passe incorrect." diff --git a/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po index d46ed10995..4fbedad9d1 100644 --- a/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:33:06+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 14:59:36+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:26:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n" @@ -139,28 +139,28 @@ msgstr "Conectar" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:237 FBConnectAuth.php:247 +#: FBConnectAuth.php:241 FBConnectAuth.php:251 msgid "Registration not allowed." msgstr "Non se permite o rexistro." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:255 +#: FBConnectAuth.php:259 msgid "Not a valid invitation code." msgstr "O código da invitación é incorrecto." -#: FBConnectAuth.php:267 +#: FBConnectAuth.php:271 msgid "Nickname not allowed." msgstr "" -#: FBConnectAuth.php:272 +#: FBConnectAuth.php:276 msgid "Nickname already in use. Try another one." msgstr "Ese alcume xa está en uso. Probe con outro." -#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344 +#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350 msgid "Error connecting user to Facebook." msgstr "" -#: FBConnectAuth.php:310 +#: FBConnectAuth.php:316 msgid "Invalid username or password." msgstr "O nome de usuario ou contrasinal non son correctos." diff --git a/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po index 3f2eebf349..8aae8310f0 100644 --- a/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:33:06+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 14:59:36+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:26:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n" @@ -152,28 +152,28 @@ msgstr "Connecter" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:237 FBConnectAuth.php:247 +#: FBConnectAuth.php:241 FBConnectAuth.php:251 msgid "Registration not allowed." msgstr "Creation de conto non permittite." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:255 +#: FBConnectAuth.php:259 msgid "Not a valid invitation code." msgstr "Le codice de invitation es invalide." -#: FBConnectAuth.php:267 +#: FBConnectAuth.php:271 msgid "Nickname not allowed." msgstr "Pseudonymo non permittite." -#: FBConnectAuth.php:272 +#: FBConnectAuth.php:276 msgid "Nickname already in use. Try another one." msgstr "Pseudonymo ja in uso. Proba un altere." -#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344 +#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350 msgid "Error connecting user to Facebook." msgstr "Error durante le connexion del usator a Facebook." -#: FBConnectAuth.php:310 +#: FBConnectAuth.php:316 msgid "Invalid username or password." msgstr "Nomine de usator o contrasigno invalide." diff --git a/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po index 20349393a7..93d93a6362 100644 --- a/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:33:06+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 14:59:36+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:26:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n" @@ -152,28 +152,28 @@ msgstr "Поврзи се" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:237 FBConnectAuth.php:247 +#: FBConnectAuth.php:241 FBConnectAuth.php:251 msgid "Registration not allowed." msgstr "Регистрацијата не е дозволена." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:255 +#: FBConnectAuth.php:259 msgid "Not a valid invitation code." msgstr "Ова не е важечки код за покана." -#: FBConnectAuth.php:267 +#: FBConnectAuth.php:271 msgid "Nickname not allowed." msgstr "Прекарот не е дозволен." -#: FBConnectAuth.php:272 +#: FBConnectAuth.php:276 msgid "Nickname already in use. Try another one." msgstr "Прекарот е зафатен. Одберете друг." -#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344 +#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350 msgid "Error connecting user to Facebook." msgstr "Грешка при поврзувањето на корисникот со Facebook." -#: FBConnectAuth.php:310 +#: FBConnectAuth.php:316 msgid "Invalid username or password." msgstr "Неважечко корисничко име или лозинка." @@ -201,7 +201,7 @@ msgstr "Расположиви знаци" #: facebooknoticeform.php:196 msgctxt "BUTTON" msgid "Send" -msgstr "Прати" +msgstr "Испрати" #: facebookhome.php:103 msgid "Server error: Couldn't get user!" diff --git a/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po index bf797b3ac4..4c05ffa666 100644 --- a/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:33:06+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 14:59:37+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: 2011-01-10 18:26:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n" @@ -134,28 +134,28 @@ msgstr "Koble til" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:237 FBConnectAuth.php:247 +#: FBConnectAuth.php:241 FBConnectAuth.php:251 msgid "Registration not allowed." msgstr "Registrering ikke tillatt." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:255 +#: FBConnectAuth.php:259 msgid "Not a valid invitation code." msgstr "Ikke en gyldig invitasjonskode." -#: FBConnectAuth.php:267 +#: FBConnectAuth.php:271 msgid "Nickname not allowed." msgstr "Kallenavn er ikke tillatt." -#: FBConnectAuth.php:272 +#: FBConnectAuth.php:276 msgid "Nickname already in use. Try another one." msgstr "Kallenavnet er allerede i bruk. Prøv et annet." -#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344 +#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350 msgid "Error connecting user to Facebook." msgstr "" -#: FBConnectAuth.php:310 +#: FBConnectAuth.php:316 msgid "Invalid username or password." msgstr "Ugyldig brukernavn eller passord." diff --git a/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po index 794c5db7e4..74a7171f55 100644 --- a/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:35:59+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 14:59:36+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-14 13:21:15+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n" @@ -157,29 +157,29 @@ msgstr "Koppelen" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:237 FBConnectAuth.php:247 +#: FBConnectAuth.php:241 FBConnectAuth.php:251 msgid "Registration not allowed." msgstr "Registratie is niet toegestaan." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:255 +#: FBConnectAuth.php:259 msgid "Not a valid invitation code." msgstr "De uitnodigingscode is ongeldig." -#: FBConnectAuth.php:267 +#: FBConnectAuth.php:271 msgid "Nickname not allowed." msgstr "Gebruikersnaam niet toegestaan." -#: FBConnectAuth.php:272 +#: FBConnectAuth.php:276 msgid "Nickname already in use. Try another one." msgstr "" "De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam." -#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344 +#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350 msgid "Error connecting user to Facebook." msgstr "Fout bij het verbinden van de gebruiker met Facebook." -#: FBConnectAuth.php:310 +#: FBConnectAuth.php:316 msgid "Invalid username or password." msgstr "Ongeldige gebruikersnaam of wachtwoord." diff --git a/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po index b6c5a45c97..b13d1750f2 100644 --- a/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:33:06+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 14:59:37+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:26:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n" @@ -136,28 +136,28 @@ msgstr "Conectar" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:237 FBConnectAuth.php:247 +#: FBConnectAuth.php:241 FBConnectAuth.php:251 msgid "Registration not allowed." msgstr "Não é permitido o registro." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:255 +#: FBConnectAuth.php:259 msgid "Not a valid invitation code." msgstr "O código de convite é inválido." -#: FBConnectAuth.php:267 +#: FBConnectAuth.php:271 msgid "Nickname not allowed." msgstr "Apelido não permitido." -#: FBConnectAuth.php:272 +#: FBConnectAuth.php:276 msgid "Nickname already in use. Try another one." msgstr "Este apelido já está em uso. Tente outro." -#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344 +#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350 msgid "Error connecting user to Facebook." msgstr "Erro ao conectar o usuário ao Facebook." -#: FBConnectAuth.php:310 +#: FBConnectAuth.php:316 msgid "Invalid username or password." msgstr "" diff --git a/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po index 8d975e3a2b..0eaedbb800 100644 --- a/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:33:06+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 14:59:37+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:26:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n" @@ -158,28 +158,28 @@ msgstr "Umugnay" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:237 FBConnectAuth.php:247 +#: FBConnectAuth.php:241 FBConnectAuth.php:251 msgid "Registration not allowed." msgstr "Hindi pinapahintulutan ang pagpapatala." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:255 +#: FBConnectAuth.php:259 msgid "Not a valid invitation code." msgstr "Hindi isang tanggap na kodigo ng paanyaya." -#: FBConnectAuth.php:267 +#: FBConnectAuth.php:271 msgid "Nickname not allowed." msgstr "Hindi pinapahintulutan ang palayaw." -#: FBConnectAuth.php:272 +#: FBConnectAuth.php:276 msgid "Nickname already in use. Try another one." msgstr "Ginagamit na ang palayaw. Subukan ang iba." -#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344 +#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350 msgid "Error connecting user to Facebook." msgstr "May kamalian sa pag-ugnay ng tagagamit sa Facebook." -#: FBConnectAuth.php:310 +#: FBConnectAuth.php:316 msgid "Invalid username or password." msgstr "Hindi tanggap na pangalan ng tagagamit o hudyat." diff --git a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po index 5f28c03f52..88aef430fd 100644 --- a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:33:07+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 14:59:37+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:26:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n" @@ -154,28 +154,28 @@ msgstr "Під’єднати" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:237 FBConnectAuth.php:247 +#: FBConnectAuth.php:241 FBConnectAuth.php:251 msgid "Registration not allowed." msgstr "Реєстрацію не дозволено." #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:255 +#: FBConnectAuth.php:259 msgid "Not a valid invitation code." msgstr "Це не дійсний код запрошення." -#: FBConnectAuth.php:267 +#: FBConnectAuth.php:271 msgid "Nickname not allowed." msgstr "Нікнейм не допускається." -#: FBConnectAuth.php:272 +#: FBConnectAuth.php:276 msgid "Nickname already in use. Try another one." msgstr "Цей нікнейм вже використовується. Спробуйте інший." -#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344 +#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350 msgid "Error connecting user to Facebook." msgstr "Помилка при підключенні до Facebook." -#: FBConnectAuth.php:310 +#: FBConnectAuth.php:316 msgid "Invalid username or password." msgstr "Невірне ім’я або пароль." diff --git a/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po index 40c83bb8f5..f81d46986d 100644 --- a/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:33:07+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 14:59:38+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:26:00+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-14 23:54:26+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-facebook\n" @@ -148,28 +148,28 @@ msgstr "连接" #. TRANS: Client error trying to register with registrations not allowed. #. TRANS: Client error trying to register with registrations 'invite only'. -#: FBConnectAuth.php:237 FBConnectAuth.php:247 +#: FBConnectAuth.php:241 FBConnectAuth.php:251 msgid "Registration not allowed." msgstr "不允许注册。" #. TRANS: Client error trying to register with an invalid invitation code. -#: FBConnectAuth.php:255 +#: FBConnectAuth.php:259 msgid "Not a valid invitation code." msgstr "对不起,无效的邀请码。" -#: FBConnectAuth.php:267 +#: FBConnectAuth.php:271 msgid "Nickname not allowed." msgstr "昵称不被允许。" -#: FBConnectAuth.php:272 +#: FBConnectAuth.php:276 msgid "Nickname already in use. Try another one." msgstr "昵称已被使用,换一个吧。" -#: FBConnectAuth.php:290 FBConnectAuth.php:324 FBConnectAuth.php:344 +#: FBConnectAuth.php:294 FBConnectAuth.php:330 FBConnectAuth.php:350 msgid "Error connecting user to Facebook." msgstr "连接用户至Facebook时发生错误。" -#: FBConnectAuth.php:310 +#: FBConnectAuth.php:316 msgid "Invalid username or password." msgstr "用户名或密码不正确。" diff --git a/plugins/FacebookBridge/FacebookBridgePlugin.php b/plugins/FacebookBridge/FacebookBridgePlugin.php index 8b5d05e983..000b214ff4 100644 --- a/plugins/FacebookBridge/FacebookBridgePlugin.php +++ b/plugins/FacebookBridge/FacebookBridgePlugin.php @@ -186,11 +186,11 @@ class FacebookBridgePlugin extends Plugin * Add a login tab for Facebook, but only if there's a Facebook * application defined for the plugin to use. * - * @param Action &action the current action + * @param Action $action the current action * * @return void */ - function onEndLoginGroupNav(&$action) + function onEndLoginGroupNav($action) { $action_name = $action->trimmed('action'); @@ -252,11 +252,11 @@ class FacebookBridgePlugin extends Plugin * Add a tab for user-level Facebook settings if the user * has a link to Facebook * - * @param Action &action the current action + * @param Action $action the current action * * @return void */ - function onEndConnectSettingsNav(&$action) + function onEndConnectSettingsNav($action) { if ($this->hasApplication()) { $action_name = $action->trimmed('action'); diff --git a/plugins/FacebookBridge/actions/facebookfinishlogin.php b/plugins/FacebookBridge/actions/facebookfinishlogin.php index 022c1e98b1..7b2f274741 100644 --- a/plugins/FacebookBridge/actions/facebookfinishlogin.php +++ b/plugins/FacebookBridge/actions/facebookfinishlogin.php @@ -257,12 +257,20 @@ class FacebookfinishloginAction extends Action $this->element('p', null, _m('Create a new user with this nickname.')); $this->elementStart('ul', 'form_data'); + + // Hook point for captcha etc + Event::handle('StartRegistrationFormData', array($this)); + $this->elementStart('li'); // TRANS: Field label. $this->input('newname', _m('New nickname'), ($this->username) ? $this->username : '', _m('1-64 lowercase letters or numbers, no punctuation or spaces')); $this->elementEnd('li'); + + // Hook point for captcha etc + Event::handle('EndRegistrationFormData', array($this)); + $this->elementEnd('ul'); // TRANS: Submit button. $this->submit('create', _m('BUTTON','Create')); diff --git a/plugins/InfiniteScroll/infinitescroll.js b/plugins/InfiniteScroll/infinitescroll.js index 0c8edce2b0..961c320916 100644 --- a/plugins/InfiniteScroll/infinitescroll.js +++ b/plugins/InfiniteScroll/infinitescroll.js @@ -16,6 +16,12 @@ jQuery(document).ready(function($){ contentSelector : "#notices_primary ol.notices", itemSelector : "#notices_primary ol.notices li" },function(){ - SN.Init.Notices(); + // Reply button and attachment magic need to be set up + // for each new notice. + // DO NOT run SN.Init.Notices() which will duplicate stuff. + $(this).find('.notice').each(function() { + SN.U.NoticeReplyTo($(this)); + SN.U.NoticeWithAttachment($(this)); + }); }); }); diff --git a/plugins/InfiniteScroll/jquery.infinitescroll.js b/plugins/InfiniteScroll/jquery.infinitescroll.js index ec31bb0863..dd61f8b18a 100644 --- a/plugins/InfiniteScroll/jquery.infinitescroll.js +++ b/plugins/InfiniteScroll/jquery.infinitescroll.js @@ -21,7 +21,7 @@ // grab each selector option and see if any fail. function areSelectorsValid(opts){ for (var key in opts){ - if (key.indexOf && key.indexOf('Selector') && $(opts[key]).length === 0){ + if (key.indexOf && (key.indexOf('Selector') != -1) && $(opts[key]).length === 0){ debug('Your ' + key + ' found no elements.'); return false; } diff --git a/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po new file mode 100644 index 0000000000..92666bcec1 --- /dev/null +++ b/plugins/MobileProfile/locale/ce/LC_MESSAGES/MobileProfile.po @@ -0,0 +1,78 @@ +# Translation of StatusNet - MobileProfile to Chechen (Нохчийн) +# Expored from translatewiki.net +# +# Author: Sasan700 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - MobileProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-20 19:03+0000\n" +"PO-Revision-Date: 2011-01-20 19:07:19+0000\n" +"Language-Team: Chechen \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-01-14 13:21:16+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80631); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ce\n" +"X-Message-Group: #out-statusnet-plugin-mobileprofile\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: MobileProfilePlugin.php:193 +msgid "This page is not available in a media type you accept." +msgstr "Агlо схьа ца гойту ишта тайпнара чун, ахьа лелош йолу." + +#: MobileProfilePlugin.php:310 +msgid "Home" +msgstr "Цlехьа" + +#: MobileProfilePlugin.php:312 +msgid "Account" +msgstr "Дlавазвалар" + +#: MobileProfilePlugin.php:314 +msgid "Connect" +msgstr "Зlе тасар" + +#: MobileProfilePlugin.php:317 +msgid "Admin" +msgstr "Адаманкуьйгалхо" + +#: MobileProfilePlugin.php:317 +msgid "Change site configuration" +msgstr "" + +#: MobileProfilePlugin.php:321 +msgid "Invite" +msgstr "Схьакхайкха" + +#: MobileProfilePlugin.php:324 +msgid "Logout" +msgstr "Ара валар" + +#: MobileProfilePlugin.php:328 +msgid "Register" +msgstr "Дlавазвалар" + +#: MobileProfilePlugin.php:331 +msgid "Login" +msgstr "Вовзийта хьой" + +#: MobileProfilePlugin.php:335 +msgid "Search" +msgstr "Лаха" + +#: MobileProfilePlugin.php:361 +msgid "Attach" +msgstr "Тlечlагlде" + +#: MobileProfilePlugin.php:365 +msgid "Attach a file" +msgstr "Тlечlагlйе хlума" + +#: MobileProfilePlugin.php:417 +msgid "XHTML MobileProfile output for supporting user agents." +msgstr "XHTML MobileProfile арайокху иза лелочу декъашхошна аттон." diff --git a/plugins/NewMenu/NewMenuPlugin.php b/plugins/NewMenu/NewMenuPlugin.php index cdcea5cd92..7aad0672bf 100644 --- a/plugins/NewMenu/NewMenuPlugin.php +++ b/plugins/NewMenu/NewMenuPlugin.php @@ -53,31 +53,6 @@ class NewMenuPlugin extends Plugin { public $loadCSS = false; - /** - * Load related modules when needed - * - * @param string $cls Name of the class to be loaded - * - * @return boolean hook value; true means continue processing, false means stop. - */ - - function onAutoload($cls) - { - $dir = dirname(__FILE__); - - switch ($cls) - { - case 'HelloAction': - include_once $dir . '/' . strtolower(mb_substr($cls, 0, -6)) . '.php'; - return false; - case 'User_greeting_count': - include_once $dir . '/'.$cls.'.php'; - return false; - default: - return true; - } - } - /** * Modify the default menu * @@ -279,19 +254,19 @@ class NewMenuPlugin extends Plugin return true; } - function onStartAccountSettingsNav(&$action) + function onStartAccountSettingsNav($action) { $this->_settingsMenu($action); return false; } - function onStartConnectSettingsNav(&$action) + function onStartConnectSettingsNav($action) { $this->_settingsMenu($action); return false; } - private function _settingsMenu(&$action) + private function _settingsMenu($action) { $actionName = $action->trimmed('action'); @@ -325,7 +300,7 @@ class NewMenuPlugin extends Plugin _('Other options'), $actionName == 'othersettings'); - Event::handle('EndAccountSettingsNav', array(&$action)); + Event::handle('EndAccountSettingsNav', array($action)); if (common_config('xmpp', 'enabled')) { $action->menuItem(common_local_url('imsettings'), @@ -346,7 +321,7 @@ class NewMenuPlugin extends Plugin _('Authorized connected applications'), $actionName == 'oauthconnectionsettings'); - Event::handle('EndConnectSettingsNav', array(&$action)); + Event::handle('EndConnectSettingsNav', array($action)); } function onEndShowStyles($action) diff --git a/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po new file mode 100644 index 0000000000..fcd2c3a77d --- /dev/null +++ b/plugins/NewMenu/locale/ia/LC_MESSAGES/NewMenu.po @@ -0,0 +1,98 @@ +# Translation of StatusNet - NewMenu to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - NewMenu\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-20 19:03+0000\n" +"PO-Revision-Date: 2011-01-20 19:07:22+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-01-14 23:54:27+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80631); 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-newmenu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: NewMenuPlugin.php:99 +msgid "Home" +msgstr "Initio" + +#: NewMenuPlugin.php:100 +msgid "Friends timeline" +msgstr "Chronologia de amicos" + +#: NewMenuPlugin.php:105 +msgid "Profile" +msgstr "Profilo" + +#: NewMenuPlugin.php:106 +msgid "Your profile" +msgstr "Tu profilo" + +#: NewMenuPlugin.php:110 NewMenuPlugin.php:133 +msgid "Public" +msgstr "Public" + +#: NewMenuPlugin.php:111 NewMenuPlugin.php:134 +msgid "Everyone on this site" +msgstr "Omnes in iste sito" + +#: NewMenuPlugin.php:115 +msgid "Settings" +msgstr "Configurationes" + +#: NewMenuPlugin.php:116 +msgid "Change your personal settings" +msgstr "Cambiar tu optiones personal" + +#: NewMenuPlugin.php:121 +msgid "Admin" +msgstr "Admin" + +#: NewMenuPlugin.php:122 +msgid "Site configuration" +msgstr "Configuration del sito" + +#: NewMenuPlugin.php:127 +msgid "Logout" +msgstr "Clauder session" + +#: NewMenuPlugin.php:128 +msgid "Logout from the site" +msgstr "Terminar le session del sito" + +#: NewMenuPlugin.php:138 +msgid "Login" +msgstr "Aperir session" + +#: NewMenuPlugin.php:139 +msgid "Login to the site" +msgstr "Authenticar te a iste sito" + +#: NewMenuPlugin.php:146 +msgid "Search" +msgstr "Recerca" + +#: NewMenuPlugin.php:147 +msgid "Search the site" +msgstr "Cercar in le sito" + +#: NewMenuPlugin.php:332 +msgid "IM" +msgstr "MI" + +#: NewMenuPlugin.php:339 +msgid "SMS" +msgstr "SMS" + +#: NewMenuPlugin.php:431 +msgid "A preview of the new menu layout in StatusNet 1.0." +msgstr "Un previsualisation del nove apparentia del menus in StatusNet 1.0." diff --git a/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po new file mode 100644 index 0000000000..45f33f0c9f --- /dev/null +++ b/plugins/NewMenu/locale/mk/LC_MESSAGES/NewMenu.po @@ -0,0 +1,98 @@ +# Translation of StatusNet - NewMenu to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - NewMenu\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-20 19:03+0000\n" +"PO-Revision-Date: 2011-01-20 19:07:22+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-01-14 23:54:27+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80631); 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-newmenu\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: NewMenuPlugin.php:99 +msgid "Home" +msgstr "Почетна" + +#: NewMenuPlugin.php:100 +msgid "Friends timeline" +msgstr "Хронологија на пријатели" + +#: NewMenuPlugin.php:105 +msgid "Profile" +msgstr "Профил" + +#: NewMenuPlugin.php:106 +msgid "Your profile" +msgstr "Вашиот профил" + +#: NewMenuPlugin.php:110 NewMenuPlugin.php:133 +msgid "Public" +msgstr "Јавно" + +#: NewMenuPlugin.php:111 NewMenuPlugin.php:134 +msgid "Everyone on this site" +msgstr "Секој на мрежново место" + +#: NewMenuPlugin.php:115 +msgid "Settings" +msgstr "Нагодувања" + +#: NewMenuPlugin.php:116 +msgid "Change your personal settings" +msgstr "Промена на личните нагодувања" + +#: NewMenuPlugin.php:121 +msgid "Admin" +msgstr "Админ" + +#: NewMenuPlugin.php:122 +msgid "Site configuration" +msgstr "Поставки за мрежното место" + +#: NewMenuPlugin.php:127 +msgid "Logout" +msgstr "Одјава" + +#: NewMenuPlugin.php:128 +msgid "Logout from the site" +msgstr "Одјава од мрежното место" + +#: NewMenuPlugin.php:138 +msgid "Login" +msgstr "Најава" + +#: NewMenuPlugin.php:139 +msgid "Login to the site" +msgstr "Најава на мрежното место" + +#: NewMenuPlugin.php:146 +msgid "Search" +msgstr "Пребарај" + +#: NewMenuPlugin.php:147 +msgid "Search the site" +msgstr "Пребарување на мрежното место" + +#: NewMenuPlugin.php:332 +msgid "IM" +msgstr "НП" + +#: NewMenuPlugin.php:339 +msgid "SMS" +msgstr "СМС" + +#: NewMenuPlugin.php:431 +msgid "A preview of the new menu layout in StatusNet 1.0." +msgstr "Преглед на новиот распоред на менито во StatusNet 1.0." diff --git a/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po b/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po new file mode 100644 index 0000000000..71d17f40a3 --- /dev/null +++ b/plugins/NewMenu/locale/uk/LC_MESSAGES/NewMenu.po @@ -0,0 +1,99 @@ +# Translation of StatusNet - NewMenu to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - NewMenu\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-20 19:03+0000\n" +"PO-Revision-Date: 2011-01-20 19:07:22+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-01-14 23:54:27+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80631); 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-newmenu\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" + +#: NewMenuPlugin.php:99 +msgid "Home" +msgstr "Дім" + +#: NewMenuPlugin.php:100 +msgid "Friends timeline" +msgstr "Стрічка друзів" + +#: NewMenuPlugin.php:105 +msgid "Profile" +msgstr "Профіль" + +#: NewMenuPlugin.php:106 +msgid "Your profile" +msgstr "Ваш профіль" + +#: NewMenuPlugin.php:110 NewMenuPlugin.php:133 +msgid "Public" +msgstr "Загал" + +#: NewMenuPlugin.php:111 NewMenuPlugin.php:134 +msgid "Everyone on this site" +msgstr "Всі на цьому сайті" + +#: NewMenuPlugin.php:115 +msgid "Settings" +msgstr "Параметри" + +#: NewMenuPlugin.php:116 +msgid "Change your personal settings" +msgstr "Змінити налаштування профілю" + +#: NewMenuPlugin.php:121 +msgid "Admin" +msgstr "Адмін" + +#: NewMenuPlugin.php:122 +msgid "Site configuration" +msgstr "Конфігурація сайту" + +#: NewMenuPlugin.php:127 +msgid "Logout" +msgstr "Вийти" + +#: NewMenuPlugin.php:128 +msgid "Logout from the site" +msgstr "Вийти з сайту" + +#: NewMenuPlugin.php:138 +msgid "Login" +msgstr "Увійти" + +#: NewMenuPlugin.php:139 +msgid "Login to the site" +msgstr "Увійти на сайт" + +#: NewMenuPlugin.php:146 +msgid "Search" +msgstr "Пошук" + +#: NewMenuPlugin.php:147 +msgid "Search the site" +msgstr "Пошук на сайті" + +#: NewMenuPlugin.php:332 +msgid "IM" +msgstr "ІМ" + +#: NewMenuPlugin.php:339 +msgid "SMS" +msgstr "СМС" + +#: NewMenuPlugin.php:431 +msgid "A preview of the new menu layout in StatusNet 1.0." +msgstr "Попередній перегляд нового макета меню в StatusNet 1.0" diff --git a/plugins/OStatus/OStatusPlugin.php b/plugins/OStatus/OStatusPlugin.php index 86bd15e0b7..59c18746f0 100644 --- a/plugins/OStatus/OStatusPlugin.php +++ b/plugins/OStatus/OStatusPlugin.php @@ -992,17 +992,29 @@ class OStatusPlugin extends Plugin return false; } - function onStartGetProfileFromURI($uri, &$profile) { + function onStartGetProfileFromURI($uri, &$profile) + { + // Don't want to do Web-based discovery on our own server, + // so we check locally first. - // XXX: do discovery here instead (OStatus_profile::ensureProfileURI($uri)) + $user = User::staticGet('uri', $uri); + + if (!empty($user)) { + $profile = $user->getProfile(); + return false; + } - $oprofile = Ostatus_profile::staticGet('uri', $uri); + // Now, check remotely - if (!empty($oprofile) && !$oprofile->isGroup()) { + $oprofile = Ostatus_profile::ensureProfileURI($uri); + + if (!empty($oprofile)) { $profile = $oprofile->localProfile(); return false; } + // Still not a hit, so give up. + return true; } diff --git a/plugins/OStatus/classes/Magicsig.php b/plugins/OStatus/classes/Magicsig.php index e057deb144..31d061e6a0 100644 --- a/plugins/OStatus/classes/Magicsig.php +++ b/plugins/OStatus/classes/Magicsig.php @@ -39,11 +39,41 @@ class Magicsig extends Memcached_DataObject public $__table = 'magicsig'; + /** + * Key to user.id/profile.id for the local user whose key we're storing. + * + * @var int + */ public $user_id; + + /** + * Flattened string representation of the key pair; callers should + * usually use $this->publicKey and $this->privateKey directly, + * which hold live Crypt_RSA key objects. + * + * @var string + */ public $keypair; + + /** + * Crypto algorithm used for this key; currently only RSA-SHA256 is supported. + * + * @var string + */ public $alg; + /** + * Public RSA key; gets serialized in/out via $this->keypair string. + * + * @var Crypt_RSA + */ public $publicKey; + + /** + * PrivateRSA key; gets serialized in/out via $this->keypair string. + * + * @var Crypt_RSA + */ public $privateKey; public function __construct($alg = 'RSA-SHA256') @@ -51,6 +81,13 @@ class Magicsig extends Memcached_DataObject $this->alg = $alg; } + /** + * Fetch a Magicsig object from the cache or database on a field match. + * + * @param string $k + * @param mixed $v + * @return Magicsig + */ public /*static*/ function staticGet($k, $v=null) { $obj = parent::staticGet(__CLASS__, $k, $v); @@ -103,6 +140,14 @@ class Magicsig extends Memcached_DataObject return array(false, false, false); } + /** + * Save this keypair into the database. + * + * Overloads default insert behavior to encode the live key objects + * as a flat string for storage. + * + * @return mixed + */ function insert() { $this->keypair = $this->toString(); @@ -110,6 +155,14 @@ class Magicsig extends Memcached_DataObject return parent::insert(); } + /** + * Generate a new keypair for a local user and store in the database. + * + * Warning: this can be very slow on systems without the GMP module. + * Runtimes of 20-30 seconds are not unheard-of. + * + * @param int $user_id id of local user we're creating a key for + */ public function generate($user_id) { $rsa = new Crypt_RSA(); @@ -128,6 +181,12 @@ class Magicsig extends Memcached_DataObject $this->insert(); } + /** + * Encode the keypair or public key as a string. + * + * @param boolean $full_pair set to false to leave out the private key. + * @return string + */ public function toString($full_pair = true) { $mod = Magicsig::base64_url_encode($this->publicKey->modulus->toBytes()); @@ -140,6 +199,13 @@ class Magicsig extends Memcached_DataObject return 'RSA.' . $mod . '.' . $exp . $private_exp; } + /** + * Decode a string representation of an RSA public key or keypair + * as a Magicsig object which can be used to sign or verify. + * + * @param string $text + * @return Magicsig + */ public static function fromString($text) { $magic_sig = new Magicsig(); @@ -168,6 +234,14 @@ class Magicsig extends Memcached_DataObject return $magic_sig; } + /** + * Fill out $this->privateKey or $this->publicKey with a Crypt_RSA object + * representing the give key (as mod/exponent pair). + * + * @param string $mod base64-encoded + * @param string $exp base64-encoded exponent + * @param string $type one of 'public' or 'private' + */ public function loadKey($mod, $exp, $type = 'public') { common_log(LOG_DEBUG, "Adding ".$type." key: (".$mod .', '. $exp .")"); @@ -186,11 +260,22 @@ class Magicsig extends Memcached_DataObject } } + /** + * Returns the name of the crypto algorithm used for this key. + * + * @return string + */ public function getName() { return $this->alg; } + /** + * Returns the name of a hash function to use for signing with this key. + * + * @return string + * @fixme is this used? doesn't seem to be called by name. + */ public function getHash() { switch ($this->alg) { @@ -200,24 +285,48 @@ class Magicsig extends Memcached_DataObject } } + /** + * Generate base64-encoded signature for the given byte string + * using our private key. + * + * @param string $bytes as raw byte string + * @return string base64-encoded signature + */ public function sign($bytes) { $sig = $this->privateKey->sign($bytes); return Magicsig::base64_url_encode($sig); } + /** + * + * @param string $signed_bytes as raw byte string + * @param string $signature as base64 + * @return boolean + */ public function verify($signed_bytes, $signature) { $signature = Magicsig::base64_url_decode($signature); return $this->publicKey->verify($signed_bytes, $signature); } - + /** + * URL-encoding-friendly base64 variant encoding. + * + * @param string $input + * @return string + */ public static function base64_url_encode($input) { return strtr(base64_encode($input), '+/', '-_'); } + /** + * URL-encoding-friendly base64 variant decoding. + * + * @param string $input + * @return string + */ public static function base64_url_decode($input) { return base64_decode(strtr($input, '-_', '+/')); diff --git a/plugins/OStatus/classes/Ostatus_profile.php b/plugins/OStatus/classes/Ostatus_profile.php index 9c0f014fc6..303e177a57 100644 --- a/plugins/OStatus/classes/Ostatus_profile.php +++ b/plugins/OStatus/classes/Ostatus_profile.php @@ -331,6 +331,7 @@ class Ostatus_profile extends Memcached_DataObject * an acceptable response from the remote site. * * @param mixed $entry XML string, Notice, or Activity + * @param Profile $actor * @return boolean success */ public function notifyActivity($entry, $actor) @@ -1778,8 +1779,10 @@ class Ostatus_profile extends Memcached_DataObject case 'mailto': $rest = $match[2]; $oprofile = Ostatus_profile::ensureWebfinger($rest); + break; default: - common_log("Unrecognized URI protocol for profile: $protocol ($uri)"); + common_log(LOG_WARNING, + "Unrecognized URI protocol for profile: $protocol ($uri)"); break; } } diff --git a/plugins/OStatus/lib/linkheader.php b/plugins/OStatus/lib/linkheader.php deleted file mode 100644 index efa3f65ff3..0000000000 --- a/plugins/OStatus/lib/linkheader.php +++ /dev/null @@ -1,66 +0,0 @@ -]+>/', $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); - } - } - } - - 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/plugins/OStatus/lib/magicenvelope.php b/plugins/OStatus/lib/magicenvelope.php index 03e6f7c665..384506280d 100644 --- a/plugins/OStatus/lib/magicenvelope.php +++ b/plugins/OStatus/lib/magicenvelope.php @@ -80,21 +80,53 @@ class MagicEnvelope throw new Exception(_m('Unable to locate signer public key.')); } + /** + * The current MagicEnvelope spec as used in StatusNet 0.9.7 and later + * includes both the original data and some signing metadata fields as + * the input plaintext for the signature hash. + * + * @param array $env + * @return string + */ + public function signingText($env) { + return implode('.', array($env['data'], // this field is pre-base64'd + Magicsig::base64_url_encode($env['data_type']), + Magicsig::base64_url_encode($env['encoding']), + Magicsig::base64_url_encode($env['alg']))); + } + /** + * + * @param $text + * @param $mimetype + * @param $keypair + * @return array: associative array of envelope properties + * @fixme it might be easier to work with storing envelope data these in the object instead of passing arrays around + */ public function signMessage($text, $mimetype, $keypair) { $signature_alg = Magicsig::fromString($keypair); $armored_text = Magicsig::base64_url_encode($text); - - return array( + $env = array( 'data' => $armored_text, 'encoding' => MagicEnvelope::ENCODING, 'data_type' => $mimetype, - 'sig' => $signature_alg->sign($armored_text), + 'sig' => '', 'alg' => $signature_alg->getName() ); + + $env['sig'] = $signature_alg->sign($this->signingText($env)); + + return $env; } + /** + * Create an XML representation of the envelope. + * + * @param array $env associative array with envelope data + * @return string representation of XML document + * @fixme it might be easier to work with storing envelope data these in the object instead of passing arrays around + */ public function toXML($env) { $xs = new XMLStringer(); $xs->startXML(); @@ -110,6 +142,16 @@ class MagicEnvelope return $string; } + /** + * Extract the contained XML payload, and insert a copy of the envelope + * signature data as an section. + * + * @param array $env associative array with envelope data + * @return string representation of modified XML document + * + * @fixme in case of XML parsing errors, this will spew to the error log or output + * @fixme it might be easier to work with storing envelope data these in the object instead of passing arrays around + */ public function unfold($env) { $dom = new DOMDocument(); @@ -136,6 +178,14 @@ class MagicEnvelope return $dom->saveXML(); } + /** + * Find the author URI referenced in the given Atom entry. + * + * @param string $text string containing Atom entry XML + * @return mixed URI string or false if XML parsing fails, or null if no author URI can be found + * + * @fixme XML parsing failures will spew to error logs/output + */ public function getAuthor($text) { $doc = new DOMDocument(); if (!$doc->loadXML($text)) { @@ -153,11 +203,30 @@ class MagicEnvelope } } + /** + * Check if the author in the Atom entry fragment claims to match + * the given identifier URI. + * + * @param string $text string containing Atom entry XML + * @param string $signer_uri + * @return boolean + */ public function checkAuthor($text, $signer_uri) { return ($this->getAuthor($text) == $signer_uri); } + /** + * Attempt to verify cryptographic signing for parsed envelope data. + * Requires network access to retrieve public key referenced by the envelope signer. + * + * Details of failure conditions are dumped to output log and not exposed to caller. + * + * @param array $env array representation of magic envelope data, as returned from MagicEnvelope::parse() + * @return boolean + * + * @fixme it might be easier to work with storing envelope data these in the object instead of passing arrays around + */ public function verify($env) { if ($env['alg'] != 'RSA-SHA256') { @@ -187,15 +256,35 @@ class MagicEnvelope return false; } - return $verifier->verify($env['data'], $env['sig']); + return $verifier->verify($this->signingText($env), $env['sig']); } + /** + * Extract envelope data from an XML document containing an or element. + * + * @param string XML source + * @return mixed associative array of envelope data, or false on unrecognized input + * + * @fixme it might be easier to work with storing envelope data these in the object instead of passing arrays around + * @fixme will spew errors to logs or output in case of XML parse errors + * @fixme may give fatal errors if some elements are missing or invalid XML + * @fixme calling DOMDocument::loadXML statically triggers warnings in strict mode + */ public function parse($text) { $dom = DOMDocument::loadXML($text); return $this->fromDom($dom); } + /** + * Extract envelope data from an XML document containing an or element. + * + * @param DOMDocument $dom + * @return mixed associative array of envelope data, or false on unrecognized input + * + * @fixme it might be easier to work with storing envelope data these in the object instead of passing arrays around + * @fixme may give fatal errors if some elements are missing + */ public function fromDom($dom) { $env_element = $dom->getElementsByTagNameNS(MagicEnvelope::NS, 'env')->item(0); @@ -218,3 +307,24 @@ class MagicEnvelope ); } } + +/** + * Variant of MagicEnvelope using the earlier signature form listed in the MagicEnvelope + * spec in early 2010; this was used in StatusNet up through 0.9.6, so for backwards compatiblity + * we still need to accept and sometimes send this format. + */ +class MagicEnvelopeCompat extends MagicEnvelope { + + /** + * StatusNet through 0.9.6 used an earlier version of the MagicEnvelope spec + * which used only the input data, without the additional fields, as the plaintext + * for signing. + * + * @param array $env + * @return string + */ + public function signingText($env) { + return $env['data']; + } +} + diff --git a/plugins/OStatus/lib/salmon.php b/plugins/OStatus/lib/salmon.php index 963da65084..2f5772a844 100644 --- a/plugins/OStatus/lib/salmon.php +++ b/plugins/OStatus/lib/salmon.php @@ -38,10 +38,12 @@ class Salmon /** * Sign and post the given Atom entry as a Salmon message. * - * @fixme pass through the actor for signing? + * Side effects: may generate a keypair on-demand for the given user, + * which can be very slow on some systems. * * @param string $endpoint_uri - * @param string $xml + * @param string $xml string representation of payload + * @param Profile $actor local user profile whose keys to sign with * @return boolean success */ public function post($endpoint_uri, $xml, $actor) @@ -50,34 +52,65 @@ class Salmon return false; } - try { - $xml = $this->createMagicEnv($xml, $actor); - } catch (Exception $e) { - common_log(LOG_ERR, "Salmon unable to sign: " . $e->getMessage()); - return false; - } + foreach ($this->formatClasses() as $class) { + try { + $envelope = $this->createMagicEnv($xml, $actor, $class); + } catch (Exception $e) { + common_log(LOG_ERR, "Salmon unable to sign: " . $e->getMessage()); + return false; + } + + $headers = array('Content-Type: application/magic-envelope+xml'); + + try { + $client = new HTTPClient(); + $client->setBody($envelope); + $response = $client->post($endpoint_uri, $headers); + } catch (HTTP_Request2_Exception $e) { + common_log(LOG_ERR, "Salmon ($class) post to $endpoint_uri failed: " . $e->getMessage()); + continue; + } + if ($response->getStatus() != 200) { + common_log(LOG_ERR, "Salmon ($class) at $endpoint_uri returned status " . + $response->getStatus() . ': ' . $response->getBody()); + continue; + } - $headers = array('Content-Type: application/magic-envelope+xml'); - - try { - $client = new HTTPClient(); - $client->setBody($xml); - $response = $client->post($endpoint_uri, $headers); - } catch (HTTP_Request2_Exception $e) { - common_log(LOG_ERR, "Salmon post to $endpoint_uri failed: " . $e->getMessage()); - return false; + // Success! + return true; } - if ($response->getStatus() != 200) { - common_log(LOG_ERR, "Salmon at $endpoint_uri returned status " . - $response->getStatus() . ': ' . $response->getBody()); - return false; - } - return true; + return false; } - public function createMagicEnv($text, $actor) + /** + * List the magic envelope signature class variants in the order we try them. + * Multiples are needed for backwards-compat with StatusNet prior to 0.9.7, + * which used a draft version of the magic envelope spec. + */ + protected function formatClasses() { + return array('MagicEnvelope', 'MagicEnvelopeCompat'); + } + + /** + * Encode the given string as a signed MagicEnvelope XML document, + * using the keypair for the given local user profile. + * + * Side effects: will create and store a keypair on-demand if one + * hasn't already been generated for this user. This can be very slow + * on some systems. + * + * @param string $text XML fragment to sign, assumed to be Atom + * @param Profile $actor Profile of a local user to use as signer + * @param string $class to override the magic envelope signature version, pass a MagicEnvelope subclass here + * + * @return string XML string representation of magic envelope + * + * @throws Exception on bad profile input or key generation problems + * @fixme if signing fails, this seems to return the original text without warning. Is there a reason for this? + */ + public function createMagicEnv($text, $actor, $class='MagicEnvelope') { - $magic_env = new MagicEnvelope(); + $magic_env = new $class(); $user = User::staticGet('id', $actor->id); if ($user->id) { @@ -101,12 +134,32 @@ class Salmon return $magic_env->toXML($env); } + /** + * Check if the given magic envelope is well-formed and correctly signed. + * Needs to have network access to fetch public keys over the web. + * Both current and back-compat signature formats will be checked. + * + * Side effects: exceptions and caching updates may occur during network + * fetches. + * + * @param string $text XML fragment of magic envelope + * @return boolean + * + * @throws Exception on bad profile input or key generation problems + * @fixme could hit fatal errors or spew output on invalid XML + */ public function verifyMagicEnv($text) { - $magic_env = new MagicEnvelope(); + foreach ($this->formatClasses() as $class) { + $magic_env = new $class(); - $env = $magic_env->parse($text); + $env = $magic_env->parse($text); - return $magic_env->verify($env); + if ($magic_env->verify($env)) { + return true; + } + } + + return false; } } diff --git a/plugins/OStatus/tests/MagicEnvelopeTest.php b/plugins/OStatus/tests/MagicEnvelopeTest.php new file mode 100644 index 0000000000..5ee0362d28 --- /dev/null +++ b/plugins/OStatus/tests/MagicEnvelopeTest.php @@ -0,0 +1,60 @@ +signingText($env); + + $this->assertEquals($expected, $text, "'$text' should be '$expected'"); + } + + static public function provider() + { + return array( + array( + // Sample case given in spec: + // http://salmon-protocol.googlecode.com/svn/trunk/draft-panzer-magicsig-00.html#signing + array( + 'data' => 'Tm90IHJlYWxseSBBdG9t', + 'data_type' => 'application/atom+xml', + 'encoding' => 'base64url', + 'alg' => 'RSA-SHA256' + ), + 'Tm90IHJlYWxseSBBdG9t.YXBwbGljYXRpb24vYXRvbSt4bWw=.YmFzZTY0dXJs.UlNBLVNIQTI1Ng==' + ) + ); + } + + + /** + * Test that MagicEnvelope builds the correct plaintext for signing. + * @dataProvider provider + */ + public function testSignatureTextCompat($env, $expected) + { + // Our old code didn't add the extra fields, just used the armored text. + $alt = $env['data']; + + $magic = new MagicEnvelopeCompat; + $text = $magic->signingText($env); + + $this->assertEquals($alt, $text, "'$text' should be '$alt'"); + } + +} diff --git a/plugins/OStatus/tests/remote-tests.php b/plugins/OStatus/tests/remote-tests.php index 7888ec7c5d..1dce588dfe 100644 --- a/plugins/OStatus/tests/remote-tests.php +++ b/plugins/OStatus/tests/remote-tests.php @@ -72,6 +72,8 @@ class OStatusTester extends TestBase $base = 'test' . mt_rand(1, 1000000); $this->pub = new SNTestClient($this->a, 'pub' . $base, 'pw-' . mt_rand(1, 1000000), $timeout); $this->sub = new SNTestClient($this->b, 'sub' . $base, 'pw-' . mt_rand(1, 1000000), $timeout); + + $this->group = 'group' . $base; } function run() @@ -163,6 +165,39 @@ class OStatusTester extends TestBase $this->assertFalse($this->pub->hasSubscriber($this->sub->getProfileUri())); } + function testCreateGroup() + { + $this->groupUrl = $this->pub->createGroup($this->group); + $this->assertTrue(!empty($this->groupUrl)); + } + + function testJoinGroup() + { + #$this->assertFalse($this->sub->inGroup($this->groupUrl)); + $this->sub->joinGroup($this->groupUrl); + #$this->assertTrue($this->sub->inGroup($this->groupUrl)); + } + + function testLocalGroupPost() + { + $post = $this->pub->post("Group post from local to !{$this->group}, should go out over push."); + $this->assertNotEqual('', $post); + $this->sub->assertReceived($post); + } + + function testRemoteGroupPost() + { + $post = $this->sub->post("Group post from remote to !{$this->group}, should come in over salmon."); + $this->assertNotEqual('', $post); + $this->pub->assertReceived($post); + } + + function testLeaveGroup() + { + #$this->assertTrue($this->sub->inGroup($this->groupUrl)); + $this->sub->leaveGroup($this->groupUrl); + #$this->assertFalse($this->sub->inGroup($this->groupUrl)); + } } class SNTestClient extends TestBase @@ -534,6 +569,63 @@ class SNTestClient extends TestBase return false; } + /** + * Create a group on this site. + * + * @param string $nickname + * @param array $options + * @return string: profile URL for the group + */ + function createGroup($nickname, $options=array()) { + $this->log("Creating group as %s on %s: %s", + $this->username, + $this->basepath, + $nickname); + + $data = $this->api('statusnet/groups/create', 'json', + array_merge(array('nickname' => $nickname), $options)); + $url = $data['url']; + + if ($url) { + $this->log(' created as %s', $url); + } else { + $this->log(' failed? %s', var_export($data, true)); + } + return $url; + } + + function groupInfo($nickname) { + $data = $this->api('statusnet/groups/show', 'json', array( + 'id' => $nickname + )); + } + + /** + * Join a group. + * + * @param string $group nickname or URL + */ + function joinGroup($group) { + $this->post('join ' . $group); + } + + /** + * Leave a group. + * + * @param string $group nickname or URL + */ + function leaveGroup($group) { + $this->post('drop ' . $group); + } + + /** + * + * @param string $nickname + * @return + */ + function inGroup($nickname) { + // @todo + } } // @fixme switch to commandline.inc? diff --git a/plugins/OStatus/tests/slap.php b/plugins/OStatus/tests/slap.php new file mode 100644 index 0000000000..b5f9d3e073 --- /dev/null +++ b/plugins/OStatus/tests/slap.php @@ -0,0 +1,92 @@ +#!/usr/bin/env php +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..')); + +$longoptions = array('verify', 'slap=', 'notice='); + +$helptext = << send signed Salmon slap to the destination endpoint + + +END_OF_HELP; + +require_once INSTALLDIR.'/scripts/commandline.inc'; + +if (!have_option('--notice')) { + print "$helptext"; + exit(1); +} + +$notice_id = get_option_value('--notice'); + +$notice = Notice::staticGet('id', $notice_id); +$profile = $notice->getProfile(); +$entry = $notice->asAtomEntry(true); + +echo "== Original entry ==\n\n"; +print $entry; +print "\n\n"; + +$salmon = new Salmon(); +$envelope = $salmon->createMagicEnv($entry, $profile); + +echo "== Signed envelope ==\n\n"; +print $envelope; +print "\n\n"; + +echo "== Testing local verification ==\n\n"; +$ok = $salmon->verifyMagicEnv($envelope); +if ($ok) { + print "OK\n\n"; +} else { + print "FAIL\n\n"; +} + +if (have_option('--verify')) { + $url = 'http://www.madebymonsieur.com/ostatus_discovery/magic_env/validate/'; + echo "== Testing remote verification ==\n\n"; + print "Sending for verification to $url ...\n"; + + $client = new HTTPClient(); + $response = $client->post($url, array(), array('magic_env' => $envelope)); + + print $response->getStatus() . "\n\n"; + print $response->getBody() . "\n\n"; +} + +if (have_option('--slap')) { + $url = get_option_value('--slap'); + echo "== Remote salmon slap ==\n\n"; + print "Sending signed Salmon slap to $url ...\n"; + + $ok = $salmon->post($url, $entry, $profile); + if ($ok) { + print "OK\n\n"; + } else { + print "FAIL\n\n"; + } +} diff --git a/plugins/OpenID/OpenIDPlugin.php b/plugins/OpenID/OpenIDPlugin.php index d5a8c1bf02..2635cb7c9d 100644 --- a/plugins/OpenID/OpenIDPlugin.php +++ b/plugins/OpenID/OpenIDPlugin.php @@ -248,11 +248,11 @@ class OpenIDPlugin extends Plugin * * If we're in openidOnly mode, we disable the menu for all other login. * - * @param Action &$action Action being executed + * @param Action $action Action being executed * * @return boolean hook return */ - function onStartLoginGroupNav(&$action) + function onStartLoginGroupNav($action) { if (common_config('site', 'openidonly')) { $this->showOpenIDLoginTab($action); @@ -268,11 +268,11 @@ class OpenIDPlugin extends Plugin /** * Menu item for login * - * @param Action &$action Action being executed + * @param Action $action Action being executed * * @return boolean hook return */ - function onEndLoginGroupNav(&$action) + function onEndLoginGroupNav($action) { $this->showOpenIDLoginTab($action); @@ -318,11 +318,11 @@ class OpenIDPlugin extends Plugin /** * Menu item for OpenID settings * - * @param Action &$action Action being executed + * @param Action $action Action being executed * * @return boolean hook return */ - function onEndAccountSettingsNav(&$action) + function onEndAccountSettingsNav($action) { $action_name = $action->trimmed('action'); diff --git a/plugins/OpenID/finishopenidlogin.php b/plugins/OpenID/finishopenidlogin.php index 0053a7f1d2..dfabdd7903 100644 --- a/plugins/OpenID/finishopenidlogin.php +++ b/plugins/OpenID/finishopenidlogin.php @@ -118,11 +118,24 @@ class FinishopenidloginAction extends Action $this->element('p', null, _m('Create a new user with this nickname.')); $this->elementStart('ul', 'form_data'); + + // Hook point for captcha etc + Event::handle('StartRegistrationFormData', array($this)); + $this->elementStart('li'); $this->input('newname', _m('New nickname'), ($this->username) ? $this->username : '', _m('1-64 lowercase letters or numbers, no punctuation or spaces')); $this->elementEnd('li'); + $this->elementStart('li'); + $this->input('email', _('Email'), $this->getEmail(), + _('Used only for updates, announcements, '. + 'and password recovery')); + $this->elementEnd('li'); + + // Hook point for captcha etc + Event::handle('EndRegistrationFormData', array($this)); + $this->elementStart('li'); $this->element('input', array('type' => 'checkbox', 'id' => 'license', @@ -180,6 +193,39 @@ class FinishopenidloginAction extends Action $this->elementEnd('form'); } + /** + * Get specified e-mail from the form, or the OpenID sreg info, or the + * invite code. + * + * @return string + */ + function getEmail() + { + $email = $this->trimmed('email'); + if (!empty($email)) { + return $email; + } + + // Pull from openid thingy + list($display, $canonical, $sreg) = $this->getSavedValues(); + if (!empty($sreg['email'])) { + return $sreg['email']; + } + + // Terrible hack for invites... + if (common_config('site', 'inviteonly')) { + $code = $_SESSION['invitecode']; + if ($code) { + $invite = Invitation::staticGet($code); + + if ($invite && $invite->address_type == 'email') { + return $invite->address; + } + } + } + return ''; + } + function tryLogin() { $consumer = oid_consumer(); @@ -262,6 +308,10 @@ class FinishopenidloginAction extends Action { # FIXME: save invite code before redirect, and check here + if (!Event::handle('StartRegistrationTry', array($this))) { + return; + } + if (common_config('site', 'closed')) { // TRANS: OpenID plugin message. No new user registration is allowed on the site. $this->clientError(_m('Registration not allowed.')); @@ -343,11 +393,7 @@ class FinishopenidloginAction extends Action $fullname = ''; } - if (!empty($sreg['email']) && Validate::email($sreg['email'], common_config('email', 'check_domain'))) { - $email = $sreg['email']; - } else { - $email = ''; - } + $email = $this->getEmail(); # XXX: add language # XXX: add timezone @@ -374,6 +420,9 @@ class FinishopenidloginAction extends Action common_rememberme($user); } unset($_SESSION['openid_rememberme']); + + Event::handle('EndRegistrationTry', array($this)); + common_redirect(common_local_url('showstream', array('nickname' => $user->nickname)), 303); } diff --git a/plugins/OpenID/locale/OpenID.pot b/plugins/OpenID/locale/OpenID.pot index bc49dd91e4..9bbf73f793 100644 --- a/plugins/OpenID/locale/OpenID.pot +++ b/plugins/OpenID/locale/OpenID.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-22 14:50+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -447,43 +447,43 @@ msgstr "" #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. -#: finishopenidlogin.php:267 finishopenidlogin.php:277 +#: finishopenidlogin.php:271 finishopenidlogin.php:281 msgid "Registration not allowed." msgstr "" #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. -#: finishopenidlogin.php:285 +#: finishopenidlogin.php:289 msgid "Not a valid invitation code." msgstr "" #. TRANS: OpenID plugin message. The entered new user name is blacklisted. -#: finishopenidlogin.php:299 +#: finishopenidlogin.php:303 msgid "Nickname not allowed." msgstr "" #. TRANS: OpenID plugin message. The entered new user name is already used. -#: finishopenidlogin.php:305 +#: finishopenidlogin.php:309 msgid "Nickname already in use. Try another one." msgstr "" #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. -#: finishopenidlogin.php:313 finishopenidlogin.php:400 +#: finishopenidlogin.php:317 finishopenidlogin.php:407 msgid "Stored OpenID not found." msgstr "" #. TRANS: OpenID plugin server error. -#: finishopenidlogin.php:323 +#: finishopenidlogin.php:327 msgid "Creating new account for OpenID that already has a user." msgstr "" #. TRANS: OpenID plugin message. -#: finishopenidlogin.php:388 +#: finishopenidlogin.php:395 msgid "Invalid username or password." msgstr "" #. TRANS: OpenID plugin server error. The user or user profile could not be saved. -#: finishopenidlogin.php:408 +#: finishopenidlogin.php:415 msgid "Error connecting user to OpenID." msgstr "" diff --git a/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po index b4b7424a14..5cb552eb7a 100644 --- a/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/br/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:28+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:00:48+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:43:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-10 18:26:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-openid\n" @@ -454,43 +454,43 @@ msgstr "" #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. -#: finishopenidlogin.php:267 finishopenidlogin.php:277 +#: finishopenidlogin.php:271 finishopenidlogin.php:281 msgid "Registration not allowed." msgstr "N'eo ket aotreet krouiñ kontoù." #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. -#: finishopenidlogin.php:285 +#: finishopenidlogin.php:289 msgid "Not a valid invitation code." msgstr "N'eo ket reizh ar c'hod pedadenn." #. TRANS: OpenID plugin message. The entered new user name is blacklisted. -#: finishopenidlogin.php:299 +#: finishopenidlogin.php:303 msgid "Nickname not allowed." msgstr "Lesanv nann-aotreet." #. TRANS: OpenID plugin message. The entered new user name is already used. -#: finishopenidlogin.php:305 +#: finishopenidlogin.php:309 msgid "Nickname already in use. Try another one." msgstr "Implijet eo dija al lesanv-se. Klaskit unan all." #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. -#: finishopenidlogin.php:313 finishopenidlogin.php:400 +#: finishopenidlogin.php:317 finishopenidlogin.php:407 msgid "Stored OpenID not found." msgstr "" #. TRANS: OpenID plugin server error. -#: finishopenidlogin.php:323 +#: finishopenidlogin.php:327 msgid "Creating new account for OpenID that already has a user." msgstr "" #. TRANS: OpenID plugin message. -#: finishopenidlogin.php:388 +#: finishopenidlogin.php:395 msgid "Invalid username or password." msgstr "" #. TRANS: OpenID plugin server error. The user or user profile could not be saved. -#: finishopenidlogin.php:408 +#: finishopenidlogin.php:415 msgid "Error connecting user to OpenID." msgstr "" diff --git a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po index 12b2de53cc..0f608c299b 100644 --- a/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ca/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:28+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:00:48+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-11-30 20:43:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-10 18:26:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-openid\n" @@ -465,44 +465,44 @@ msgstr "" #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. -#: finishopenidlogin.php:267 finishopenidlogin.php:277 +#: finishopenidlogin.php:271 finishopenidlogin.php:281 msgid "Registration not allowed." msgstr "No es permet el registre." #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. -#: finishopenidlogin.php:285 +#: finishopenidlogin.php:289 msgid "Not a valid invitation code." msgstr "No és un codi d'invitació vàlid." #. TRANS: OpenID plugin message. The entered new user name is blacklisted. -#: finishopenidlogin.php:299 +#: finishopenidlogin.php:303 msgid "Nickname not allowed." msgstr "No es permet el sobrenom." #. TRANS: OpenID plugin message. The entered new user name is already used. -#: finishopenidlogin.php:305 +#: finishopenidlogin.php:309 msgid "Nickname already in use. Try another one." msgstr "El sobrenom ja és en ús. Proveu-ne un altre." #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. -#: finishopenidlogin.php:313 finishopenidlogin.php:400 +#: finishopenidlogin.php:317 finishopenidlogin.php:407 msgid "Stored OpenID not found." msgstr "No s'ha trobat la connexió OpenID emmagatzemada." #. TRANS: OpenID plugin server error. -#: finishopenidlogin.php:323 +#: finishopenidlogin.php:327 msgid "Creating new account for OpenID that already has a user." msgstr "" "S'està creant un compte nou per a una connexió OpenID que ja té un usuari." #. TRANS: OpenID plugin message. -#: finishopenidlogin.php:388 +#: finishopenidlogin.php:395 msgid "Invalid username or password." msgstr "El nom d'usuari o la contrasenya no són vàlids." #. TRANS: OpenID plugin server error. The user or user profile could not be saved. -#: finishopenidlogin.php:408 +#: finishopenidlogin.php:415 msgid "Error connecting user to OpenID." msgstr "S'ha produït un error en connectar l'usuari amb la connexió OpenID." diff --git a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po index e9143aeb07..c2a9aa6a83 100644 --- a/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/de/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:29+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:00:49+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:43:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-10 18:26:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-openid\n" @@ -489,43 +489,43 @@ msgstr "" #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. -#: finishopenidlogin.php:267 finishopenidlogin.php:277 +#: finishopenidlogin.php:271 finishopenidlogin.php:281 msgid "Registration not allowed." msgstr "Registrierung nicht erlaubt." #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. -#: finishopenidlogin.php:285 +#: finishopenidlogin.php:289 msgid "Not a valid invitation code." msgstr "Kein gültiger Einladungscode." #. TRANS: OpenID plugin message. The entered new user name is blacklisted. -#: finishopenidlogin.php:299 +#: finishopenidlogin.php:303 msgid "Nickname not allowed." msgstr "Benutzername nicht erlaubt." #. TRANS: OpenID plugin message. The entered new user name is already used. -#: finishopenidlogin.php:305 +#: finishopenidlogin.php:309 msgid "Nickname already in use. Try another one." msgstr "Benutzername wird bereits verwendet. Suche dir einen anderen aus." #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. -#: finishopenidlogin.php:313 finishopenidlogin.php:400 +#: finishopenidlogin.php:317 finishopenidlogin.php:407 msgid "Stored OpenID not found." msgstr "" #. TRANS: OpenID plugin server error. -#: finishopenidlogin.php:323 +#: finishopenidlogin.php:327 msgid "Creating new account for OpenID that already has a user." msgstr "" #. TRANS: OpenID plugin message. -#: finishopenidlogin.php:388 +#: finishopenidlogin.php:395 msgid "Invalid username or password." msgstr "Benutzername oder Passwort falsch." #. TRANS: OpenID plugin server error. The user or user profile could not be saved. -#: finishopenidlogin.php:408 +#: finishopenidlogin.php:415 msgid "Error connecting user to OpenID." msgstr "" diff --git a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po index a0a2d5d6e5..c3cf1af981 100644 --- a/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/fr/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:29+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:00:49+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:43:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-10 18:26:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-openid\n" @@ -499,43 +499,43 @@ msgstr "" #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. -#: finishopenidlogin.php:267 finishopenidlogin.php:277 +#: finishopenidlogin.php:271 finishopenidlogin.php:281 msgid "Registration not allowed." msgstr "Inscription non autorisée." #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. -#: finishopenidlogin.php:285 +#: finishopenidlogin.php:289 msgid "Not a valid invitation code." msgstr "Le code d’invitation n’est pas valide." #. TRANS: OpenID plugin message. The entered new user name is blacklisted. -#: finishopenidlogin.php:299 +#: finishopenidlogin.php:303 msgid "Nickname not allowed." msgstr "Pseudonyme non autorisé." #. TRANS: OpenID plugin message. The entered new user name is already used. -#: finishopenidlogin.php:305 +#: finishopenidlogin.php:309 msgid "Nickname already in use. Try another one." msgstr "Pseudonyme déjà utilisé. Essayez-en un autre." #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. -#: finishopenidlogin.php:313 finishopenidlogin.php:400 +#: finishopenidlogin.php:317 finishopenidlogin.php:407 msgid "Stored OpenID not found." msgstr "OpenID stocké non trouvé." #. TRANS: OpenID plugin server error. -#: finishopenidlogin.php:323 +#: finishopenidlogin.php:327 msgid "Creating new account for OpenID that already has a user." msgstr "Créer un nouveau compte pour OpenID qui a déjà un utilisateur." #. TRANS: OpenID plugin message. -#: finishopenidlogin.php:388 +#: finishopenidlogin.php:395 msgid "Invalid username or password." msgstr "Nom d’utilisateur ou mot de passe incorrect." #. TRANS: OpenID plugin server error. The user or user profile could not be saved. -#: finishopenidlogin.php:408 +#: finishopenidlogin.php:415 msgid "Error connecting user to OpenID." msgstr "Erreur de connexion de l’utilisateur à OpenID." diff --git a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po index 3ca10002c8..a9c6ab0e9b 100644 --- a/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/ia/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:29+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:00:49+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:43:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-10 18:26:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-openid\n" @@ -489,43 +489,43 @@ msgstr "" #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. -#: finishopenidlogin.php:267 finishopenidlogin.php:277 +#: finishopenidlogin.php:271 finishopenidlogin.php:281 msgid "Registration not allowed." msgstr "Creation de conto non permittite." #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. -#: finishopenidlogin.php:285 +#: finishopenidlogin.php:289 msgid "Not a valid invitation code." msgstr "Le codice de invitation es invalide." #. TRANS: OpenID plugin message. The entered new user name is blacklisted. -#: finishopenidlogin.php:299 +#: finishopenidlogin.php:303 msgid "Nickname not allowed." msgstr "Pseudonymo non permittite." #. TRANS: OpenID plugin message. The entered new user name is already used. -#: finishopenidlogin.php:305 +#: finishopenidlogin.php:309 msgid "Nickname already in use. Try another one." msgstr "Pseudonymo ja in uso. Proba un altere." #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. -#: finishopenidlogin.php:313 finishopenidlogin.php:400 +#: finishopenidlogin.php:317 finishopenidlogin.php:407 msgid "Stored OpenID not found." msgstr "Le OpenID immagazinate non esseva trovate." #. TRANS: OpenID plugin server error. -#: finishopenidlogin.php:323 +#: finishopenidlogin.php:327 msgid "Creating new account for OpenID that already has a user." msgstr "Tentativa de crear un nove conto pro un OpenID que ha jam un usator." #. TRANS: OpenID plugin message. -#: finishopenidlogin.php:388 +#: finishopenidlogin.php:395 msgid "Invalid username or password." msgstr "Nomine de usator o contrasigno invalide." #. TRANS: OpenID plugin server error. The user or user profile could not be saved. -#: finishopenidlogin.php:408 +#: finishopenidlogin.php:415 msgid "Error connecting user to OpenID." msgstr "Error durante le connexion del usator a OpenID." diff --git a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po index bbdee40b9f..1146039913 100644 --- a/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/mk/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:30+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:00:49+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:43:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-10 18:26:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-openid\n" @@ -485,43 +485,43 @@ msgstr "" #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. -#: finishopenidlogin.php:267 finishopenidlogin.php:277 +#: finishopenidlogin.php:271 finishopenidlogin.php:281 msgid "Registration not allowed." msgstr "Регистрацијата не е дозволена." #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. -#: finishopenidlogin.php:285 +#: finishopenidlogin.php:289 msgid "Not a valid invitation code." msgstr "Ова не е важечки код за покана." #. TRANS: OpenID plugin message. The entered new user name is blacklisted. -#: finishopenidlogin.php:299 +#: finishopenidlogin.php:303 msgid "Nickname not allowed." msgstr "Прекарот не е дозволен." #. TRANS: OpenID plugin message. The entered new user name is already used. -#: finishopenidlogin.php:305 +#: finishopenidlogin.php:309 msgid "Nickname already in use. Try another one." msgstr "Прекарот е зафатен. Одберете друг." #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. -#: finishopenidlogin.php:313 finishopenidlogin.php:400 +#: finishopenidlogin.php:317 finishopenidlogin.php:407 msgid "Stored OpenID not found." msgstr "Складираниот OpenID не е пронајден." #. TRANS: OpenID plugin server error. -#: finishopenidlogin.php:323 +#: finishopenidlogin.php:327 msgid "Creating new account for OpenID that already has a user." msgstr "Создавање на сметка за OpenID што веќе има корисник." #. TRANS: OpenID plugin message. -#: finishopenidlogin.php:388 +#: finishopenidlogin.php:395 msgid "Invalid username or password." msgstr "Неважечко корисничко име или лозинка." #. TRANS: OpenID plugin server error. The user or user profile could not be saved. -#: finishopenidlogin.php:408 +#: finishopenidlogin.php:415 msgid "Error connecting user to OpenID." msgstr "Грешка при поврзувањето на корисникот со OpenID." diff --git a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po index c83d6a5def..0c5ca2d9d9 100644 --- a/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/nl/LC_MESSAGES/OpenID.po @@ -10,16 +10,16 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:30+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:00:49+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-11-30 20:43:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-10 18:26:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-openid\n" @@ -491,43 +491,43 @@ msgstr "" #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. -#: finishopenidlogin.php:267 finishopenidlogin.php:277 +#: finishopenidlogin.php:271 finishopenidlogin.php:281 msgid "Registration not allowed." msgstr "Registreren is niet mogelijk." #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. -#: finishopenidlogin.php:285 +#: finishopenidlogin.php:289 msgid "Not a valid invitation code." msgstr "De uitnodigingscode is niet geldig." #. TRANS: OpenID plugin message. The entered new user name is blacklisted. -#: finishopenidlogin.php:299 +#: finishopenidlogin.php:303 msgid "Nickname not allowed." msgstr "Deze gebruikersnaam is niet toegestaan." #. TRANS: OpenID plugin message. The entered new user name is already used. -#: finishopenidlogin.php:305 +#: finishopenidlogin.php:309 msgid "Nickname already in use. Try another one." msgstr "Deze gebruikersnaam wordt al gebruikt. Kies een andere." #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. -#: finishopenidlogin.php:313 finishopenidlogin.php:400 +#: finishopenidlogin.php:317 finishopenidlogin.php:407 msgid "Stored OpenID not found." msgstr "Het opgeslagen OpenID is niet aangetroffen." #. TRANS: OpenID plugin server error. -#: finishopenidlogin.php:323 +#: finishopenidlogin.php:327 msgid "Creating new account for OpenID that already has a user." msgstr "Poging tot aanmaken van een OpenID-account dat al een gebruiker heeft." #. TRANS: OpenID plugin message. -#: finishopenidlogin.php:388 +#: finishopenidlogin.php:395 msgid "Invalid username or password." msgstr "Ongeldige gebruikersnaam of wachtwoord." #. TRANS: OpenID plugin server error. The user or user profile could not be saved. -#: finishopenidlogin.php:408 +#: finishopenidlogin.php:415 msgid "Error connecting user to OpenID." msgstr "Fout bij het koppelen met OpenID." diff --git a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po index a9df86fcea..bf92b41710 100644 --- a/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/tl/LC_MESSAGES/OpenID.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:30+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:00:49+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:43:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-10 18:26:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-openid\n" @@ -502,44 +502,44 @@ msgstr "" #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. -#: finishopenidlogin.php:267 finishopenidlogin.php:277 +#: finishopenidlogin.php:271 finishopenidlogin.php:281 msgid "Registration not allowed." msgstr "Hindi pinayagan ang pagpapatala." #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. -#: finishopenidlogin.php:285 +#: finishopenidlogin.php:289 msgid "Not a valid invitation code." msgstr "Hindi isang tanggap na kodigo ng paanyaya." #. TRANS: OpenID plugin message. The entered new user name is blacklisted. -#: finishopenidlogin.php:299 +#: finishopenidlogin.php:303 msgid "Nickname not allowed." msgstr "Hindi pinayagan ang palayaw." #. TRANS: OpenID plugin message. The entered new user name is already used. -#: finishopenidlogin.php:305 +#: finishopenidlogin.php:309 msgid "Nickname already in use. Try another one." msgstr "Ginagamit na ang palayaw. Sumubok ng iba." #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. -#: finishopenidlogin.php:313 finishopenidlogin.php:400 +#: finishopenidlogin.php:317 finishopenidlogin.php:407 msgid "Stored OpenID not found." msgstr "Hindi natagpuan ang nakalagak na OpenID." #. TRANS: OpenID plugin server error. -#: finishopenidlogin.php:323 +#: finishopenidlogin.php:327 msgid "Creating new account for OpenID that already has a user." msgstr "" "Nililikha ang bagong akawnt para sa OpenID na mayroon nang isang tagagamit." #. TRANS: OpenID plugin message. -#: finishopenidlogin.php:388 +#: finishopenidlogin.php:395 msgid "Invalid username or password." msgstr "Hindi tanggap na pangalan ng tagagamit o hudyat." #. TRANS: OpenID plugin server error. The user or user profile could not be saved. -#: finishopenidlogin.php:408 +#: finishopenidlogin.php:415 msgid "Error connecting user to OpenID." msgstr "May kamalian sa pag-ugnay ng tagagamit sa OpenID." diff --git a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po index 8eb976a4de..f7646149de 100644 --- a/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po +++ b/plugins/OpenID/locale/uk/LC_MESSAGES/OpenID.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OpenID\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:31+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:00:49+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:43:49+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-10 18:26:05+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-openid\n" @@ -492,43 +492,43 @@ msgstr "Автентифікацію за OpenID перервано: ви не #. TRANS: OpenID plugin message. No new user registration is allowed on the site. #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and none was provided. -#: finishopenidlogin.php:267 finishopenidlogin.php:277 +#: finishopenidlogin.php:271 finishopenidlogin.php:281 msgid "Registration not allowed." msgstr "Реєстрацію не дозволено." #. TRANS: OpenID plugin message. No new user registration is allowed on the site without an invitation code, and the one provided was not valid. -#: finishopenidlogin.php:285 +#: finishopenidlogin.php:289 msgid "Not a valid invitation code." msgstr "Це не дійсний код запрошення." #. TRANS: OpenID plugin message. The entered new user name is blacklisted. -#: finishopenidlogin.php:299 +#: finishopenidlogin.php:303 msgid "Nickname not allowed." msgstr "Нікнейм не допускається." #. TRANS: OpenID plugin message. The entered new user name is already used. -#: finishopenidlogin.php:305 +#: finishopenidlogin.php:309 msgid "Nickname already in use. Try another one." msgstr "Цей нікнейм вже використовується. Спробуйте інший." #. TRANS: OpenID plugin server error. A stored OpenID cannot be retrieved. #. TRANS: OpenID plugin server error. A stored OpenID cannot be found. -#: finishopenidlogin.php:313 finishopenidlogin.php:400 +#: finishopenidlogin.php:317 finishopenidlogin.php:407 msgid "Stored OpenID not found." msgstr "Збережений OpenID не знайдено." #. TRANS: OpenID plugin server error. -#: finishopenidlogin.php:323 +#: finishopenidlogin.php:327 msgid "Creating new account for OpenID that already has a user." msgstr "Створення нового акаунту для OpenID користувачем, який вже існує." #. TRANS: OpenID plugin message. -#: finishopenidlogin.php:388 +#: finishopenidlogin.php:395 msgid "Invalid username or password." msgstr "Невірне ім’я або пароль." #. TRANS: OpenID plugin server error. The user or user profile could not be saved. -#: finishopenidlogin.php:408 +#: finishopenidlogin.php:415 msgid "Error connecting user to OpenID." msgstr "Помилка при підключенні користувача до OpenID." diff --git a/plugins/RegisterThrottle/RegisterThrottlePlugin.php b/plugins/RegisterThrottle/RegisterThrottlePlugin.php index 0078d3c600..e3982427da 100644 --- a/plugins/RegisterThrottle/RegisterThrottlePlugin.php +++ b/plugins/RegisterThrottle/RegisterThrottlePlugin.php @@ -167,28 +167,24 @@ class RegisterThrottlePlugin extends Plugin } /** - * Called after someone registers. + * Called after someone registers, by any means. * * We record the successful registration and IP address. * - * @param Action $action Action that is being executed + * @param Profile $profile new user's profile + * @param User $user new user * * @return boolean hook value * */ - function onEndRegistrationTry($action) + function onEndUserRegister($profile, $user) { $ipaddress = $this->_getIpAddress(); if (empty($ipaddress)) { - throw new ServerException(_m('Cannot find IP address.')); - } - - $user = common_current_user(); - - if (empty($user)) { - throw new ServerException(_m('Cannot find user after successful registration.')); + // User registration can happen from command-line scripts etc. + return true; } $reg = new Registration_ip(); diff --git a/plugins/RegisterThrottle/locale/RegisterThrottle.pot b/plugins/RegisterThrottle/locale/RegisterThrottle.pot index 3cb4394b1e..f5bfd954fa 100644 --- a/plugins/RegisterThrottle/locale/RegisterThrottle.pot +++ b/plugins/RegisterThrottle/locale/RegisterThrottle.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-22 14:50+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,7 +16,7 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: RegisterThrottlePlugin.php:134 RegisterThrottlePlugin.php:185 +#: RegisterThrottlePlugin.php:134 msgid "Cannot find IP address." msgstr "" @@ -28,10 +28,6 @@ msgstr "" msgid "A banned user has registered from this address." msgstr "" -#: RegisterThrottlePlugin.php:191 -msgid "Cannot find user after successful registration." -msgstr "" - -#: RegisterThrottlePlugin.php:224 +#: RegisterThrottlePlugin.php:220 msgid "Throttles excessive registration from a single IP address." msgstr "" diff --git a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po index 75a4e57cf5..8dc9ff8b30 100644 --- a/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/de/LC_MESSAGES/RegisterThrottle.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:50+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:01:21+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:43:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-10 18:27:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-registerthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: RegisterThrottlePlugin.php:134 RegisterThrottlePlugin.php:185 +#: RegisterThrottlePlugin.php:134 msgid "Cannot find IP address." msgstr "Kann IP-Addresse nicht finden." @@ -34,10 +34,9 @@ msgstr "" msgid "A banned user has registered from this address." msgstr "Ein gesperrter Benutzer hat sich von dieser Adresse registriert." -#: RegisterThrottlePlugin.php:191 -msgid "Cannot find user after successful registration." -msgstr "Kann Benutzer nach erfolgreicher Registrierung nicht finden." - -#: RegisterThrottlePlugin.php:224 +#: RegisterThrottlePlugin.php:220 msgid "Throttles excessive registration from a single IP address." msgstr "Drosselt exzessive Registrierungen einer einzelnen IP-Adresse." + +#~ msgid "Cannot find user after successful registration." +#~ msgstr "Kann Benutzer nach erfolgreicher Registrierung nicht finden." diff --git a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po index b6992d1c35..6f5774f079 100644 --- a/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/fr/LC_MESSAGES/RegisterThrottle.po @@ -10,19 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:50+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:01:21+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:43:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-10 18:27:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-registerthrottle\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: RegisterThrottlePlugin.php:134 RegisterThrottlePlugin.php:185 +#: RegisterThrottlePlugin.php:134 msgid "Cannot find IP address." msgstr "Impossible de trouver l’adresse IP." @@ -36,10 +36,9 @@ msgstr "" msgid "A banned user has registered from this address." msgstr "Un utilisateur banni s’est inscrit depuis cette adresse." -#: RegisterThrottlePlugin.php:191 -msgid "Cannot find user after successful registration." -msgstr "Impossible de trouver l’utilisateur après un enregistrement réussi." - -#: RegisterThrottlePlugin.php:224 +#: RegisterThrottlePlugin.php:220 msgid "Throttles excessive registration from a single IP address." msgstr "Évite les inscriptions excessives depuis une même adresse IP." + +#~ msgid "Cannot find user after successful registration." +#~ msgstr "Impossible de trouver l’utilisateur après un enregistrement réussi." diff --git a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po index 2ca1bbf8ef..0720574e22 100644 --- a/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/ia/LC_MESSAGES/RegisterThrottle.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:50+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:01:21+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:43:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-10 18:27:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-registerthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: RegisterThrottlePlugin.php:134 RegisterThrottlePlugin.php:185 +#: RegisterThrottlePlugin.php:134 msgid "Cannot find IP address." msgstr "Non pote trovar adresse IP." @@ -33,10 +33,9 @@ msgstr "Troppo de registrationes. Face un pausa e reproba plus tarde." msgid "A banned user has registered from this address." msgstr "Un usator bannite se ha registrate ab iste adresse." -#: RegisterThrottlePlugin.php:191 -msgid "Cannot find user after successful registration." -msgstr "Non pote trovar usator post registration succedite." - -#: RegisterThrottlePlugin.php:224 +#: RegisterThrottlePlugin.php:220 msgid "Throttles excessive registration from a single IP address." msgstr "Inhibi le creation de contos excessive ab un sol adresse IP." + +#~ msgid "Cannot find user after successful registration." +#~ msgstr "Non pote trovar usator post registration succedite." diff --git a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po index 25f2400af2..7011380d38 100644 --- a/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/mk/LC_MESSAGES/RegisterThrottle.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:50+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:01:21+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:43:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-10 18:27:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-registerthrottle\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -#: RegisterThrottlePlugin.php:134 RegisterThrottlePlugin.php:185 +#: RegisterThrottlePlugin.php:134 msgid "Cannot find IP address." msgstr "Не можам да ја пронајдам IP-адресата." @@ -33,10 +33,9 @@ msgstr "Премногу регистрации. Направете пауза msgid "A banned user has registered from this address." msgstr "Од оваа адреса се регистрирал забранет корисник." -#: RegisterThrottlePlugin.php:191 -msgid "Cannot find user after successful registration." -msgstr "Не можам да го пронајдам корисникот по успешната регистрација." - -#: RegisterThrottlePlugin.php:224 +#: RegisterThrottlePlugin.php:220 msgid "Throttles excessive registration from a single IP address." msgstr "Истиснува прекумерни регистрации од една IP-адреса." + +#~ msgid "Cannot find user after successful registration." +#~ msgstr "Не можам да го пронајдам корисникот по успешната регистрација." diff --git a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po index 8a6c3d10d8..0f90a2420b 100644 --- a/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/nl/LC_MESSAGES/RegisterThrottle.po @@ -10,19 +10,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:50+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:01:21+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:43:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-10 18:27:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-registerthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: RegisterThrottlePlugin.php:134 RegisterThrottlePlugin.php:185 +#: RegisterThrottlePlugin.php:134 msgid "Cannot find IP address." msgstr "Het IP-adres kon niet gevonden worden." @@ -34,10 +34,9 @@ msgstr "Te veel registraties. Wacht even en probeer het later opnieuw." msgid "A banned user has registered from this address." msgstr "Er is een geblokkeerde gebruiker die vanaf dit adres is geregistreerd." -#: RegisterThrottlePlugin.php:191 -msgid "Cannot find user after successful registration." -msgstr "Het was niet mogelijk de gebruiker te vinden na registratie." - -#: RegisterThrottlePlugin.php:224 +#: RegisterThrottlePlugin.php:220 msgid "Throttles excessive registration from a single IP address." msgstr "Beperkt excessieve aantallen registraties vanaf één IP-adres." + +#~ msgid "Cannot find user after successful registration." +#~ msgstr "Het was niet mogelijk de gebruiker te vinden na registratie." diff --git a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po index 24128e8ba4..ae7c980e36 100644 --- a/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/tl/LC_MESSAGES/RegisterThrottle.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:50+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:01:21+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:43:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-10 18:27:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-registerthrottle\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: RegisterThrottlePlugin.php:134 RegisterThrottlePlugin.php:185 +#: RegisterThrottlePlugin.php:134 msgid "Cannot find IP address." msgstr "Hindi matagpuan ang tirahan ng IP." @@ -33,12 +33,12 @@ msgstr "Napakaraming mga pagpapatala. Magpahinga muna at subukan uli mamaya." msgid "A banned user has registered from this address." msgstr "" -#: RegisterThrottlePlugin.php:191 -msgid "Cannot find user after successful registration." -msgstr "Hindi matagpuan ang tagagamit pagkatapos ng matagumpay na pagpapatala." - -#: RegisterThrottlePlugin.php:224 +#: RegisterThrottlePlugin.php:220 msgid "Throttles excessive registration from a single IP address." msgstr "" "Naglilipat-lipat ng labis na pagpapatala mula sa isang nag-iisang tirahan ng " "IP." + +#~ msgid "Cannot find user after successful registration." +#~ msgstr "" +#~ "Hindi matagpuan ang tagagamit pagkatapos ng matagumpay na pagpapatala." diff --git a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po index 2abe652fe1..7d2920b0ea 100644 --- a/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po +++ b/plugins/RegisterThrottle/locale/uk/LC_MESSAGES/RegisterThrottle.po @@ -10,20 +10,20 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - RegisterThrottle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-12-16 15:08+0000\n" -"PO-Revision-Date: 2010-12-16 15:12:50+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:01:21+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:43:52+0000\n" -"X-Generator: MediaWiki 1.18alpha (r78478); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-10 18:27:21+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-registerthrottle\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" -#: RegisterThrottlePlugin.php:134 RegisterThrottlePlugin.php:185 +#: RegisterThrottlePlugin.php:134 msgid "Cannot find IP address." msgstr "Не вдається знайти IP-адресу." @@ -35,10 +35,9 @@ msgstr "Забагато реєстрацій. Випийте поки що ка msgid "A banned user has registered from this address." msgstr "Заблокований користувач був зареєстрований з цієї адреси." -#: RegisterThrottlePlugin.php:191 -msgid "Cannot find user after successful registration." -msgstr "Не вдається знайти користувача після успішної реєстрації." - -#: RegisterThrottlePlugin.php:224 +#: RegisterThrottlePlugin.php:220 msgid "Throttles excessive registration from a single IP address." msgstr "Цей додаток обмежує кількість реєстрацій з певної IP-адреси." + +#~ msgid "Cannot find user after successful registration." +#~ msgstr "Не вдається знайти користувача після успішної реєстрації." diff --git a/plugins/RequireValidatedEmail/RequireValidatedEmailPlugin.php b/plugins/RequireValidatedEmail/RequireValidatedEmailPlugin.php index 6c0ef37d51..980b7beb6e 100644 --- a/plugins/RequireValidatedEmail/RequireValidatedEmailPlugin.php +++ b/plugins/RequireValidatedEmail/RequireValidatedEmailPlugin.php @@ -235,4 +235,24 @@ class RequireValidatedEmailPlugin extends Plugin } return true; } + + /** + * Prevent unvalidated folks from creating spam groups. + * + * @param Profile $profile User profile we're checking + * @param string $right rights key + * @param boolean $result if overriding, set to true/false has right + * @return boolean hook result value + */ + function onUserRightsCheck(Profile $profile, $right, &$result) + { + if ($right == Right::CREATEGROUP) { + $user = User::staticGet('id', $profile->id); + if ($user && !$this->validated($user)) { + $result = false; + return false; + } + } + return true; + } } diff --git a/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po new file mode 100644 index 0000000000..d07d0aa7bb --- /dev/null +++ b/plugins/SQLProfile/locale/ia/LC_MESSAGES/SQLProfile.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - SQLProfile to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SQLProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-20 19:03+0000\n" +"PO-Revision-Date: 2011-01-20 19:08:00+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-01-14 23:56:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80631); 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-sqlprofile\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: SQLProfilePlugin.php:41 +msgid "Debug tool to watch for poorly indexed DB queries." +msgstr "Instrumento pro deteger le consultas mal indexate del base de datos." diff --git a/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po new file mode 100644 index 0000000000..55f4b91403 --- /dev/null +++ b/plugins/SQLProfile/locale/mk/LC_MESSAGES/SQLProfile.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - SQLProfile to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SQLProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-20 19:03+0000\n" +"PO-Revision-Date: 2011-01-20 19:08:00+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-01-14 23:56:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80631); 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-sqlprofile\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#: SQLProfilePlugin.php:41 +msgid "Debug tool to watch for poorly indexed DB queries." +msgstr "" +"Алатка за поправање грешки што пронаоѓа лошо индексирани барања до базата на " +"податоци." diff --git a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po index d1c1c8e5e1..01e689d3f6 100644 --- a/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po +++ b/plugins/SQLProfile/locale/nl/LC_MESSAGES/SQLProfile.po @@ -9,19 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - SQLProfile\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 23:32+0000\n" -"PO-Revision-Date: 2011-01-14 23:37:11+0000\n" +"POT-Creation-Date: 2011-01-20 19:03+0000\n" +"PO-Revision-Date: 2011-01-20 19:08:00+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-14 14:17:53+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80343); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-14 23:56:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80631); 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-sqlprofile\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: SQLProfilePlugin.php:41 -#, fuzzy msgid "Debug tool to watch for poorly indexed DB queries." msgstr "Debughulpmiddel om slecht geïndexeerde databasequery's te ontdekken." diff --git a/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po new file mode 100644 index 0000000000..47bfc8ae30 --- /dev/null +++ b/plugins/SQLProfile/locale/ru/LC_MESSAGES/SQLProfile.po @@ -0,0 +1,28 @@ +# Translation of StatusNet - SQLProfile to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SQLProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:01:33+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-01-20 20:16:03+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-sqlprofile\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" + +#: SQLProfilePlugin.php:41 +msgid "Debug tool to watch for poorly indexed DB queries." +msgstr "" +"Отладочный инструмент для наблюдения плохо индексированных запросов к БД." diff --git a/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po new file mode 100644 index 0000000000..5912676be1 --- /dev/null +++ b/plugins/SQLProfile/locale/uk/LC_MESSAGES/SQLProfile.po @@ -0,0 +1,29 @@ +# Translation of StatusNet - SQLProfile to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - SQLProfile\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2011-01-20 19:03+0000\n" +"PO-Revision-Date: 2011-01-20 19:08:00+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2011-01-14 23:56:59+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80631); 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-sqlprofile\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" + +#: SQLProfilePlugin.php:41 +msgid "Debug tool to watch for poorly indexed DB queries." +msgstr "" +"Інструмент правки для спостереження за погано індексованими запитами до бази " +"даних." diff --git a/plugins/SubMirror/SubMirrorPlugin.php b/plugins/SubMirror/SubMirrorPlugin.php index 578ef6607c..38a4c40d48 100644 --- a/plugins/SubMirror/SubMirrorPlugin.php +++ b/plugins/SubMirror/SubMirrorPlugin.php @@ -93,15 +93,16 @@ class SubMirrorPlugin extends Plugin } /** - * Menu item for settings + * Menu item for personal subscriptions/groups area * - * @param Action &$action Action being executed + * @param Widget $widget Widget being executed * * @return boolean hook return */ - function onEndAccountSettingsNav(&$action) + function onEndSubGroupNav($widget) { + $action = $widget->out; $action_name = $action->trimmed('action'); $action->menuItem(common_local_url('mirrorsettings'), @@ -163,4 +164,37 @@ class SubMirrorPlugin extends Plugin } return true; } + + /** + * Add a count of mirrored feeds into a user's profile sidebar stats. + * + * @param Profile $profile + * @param array $stats + * @return boolean hook return value + */ + function onProfileStats($profile, &$stats) + { + $cur = common_current_user(); + if (!empty($cur) && $cur->id == $profile->id) { + $mirror = new SubMirror(); + $mirror->subscriber = $profile->id; + $entry = array( + 'id' => 'mirrors', + 'label' => _m('Mirrored feeds'), + 'link' => common_local_url('mirrorsettings'), + 'value' => $mirror->count(), + ); + + $insertAt = count($stats); + foreach ($stats as $i => $row) { + if ($row['id'] == 'groups') { + // Slip us in after them. + $insertAt = $i + 1; + break; + } + } + array_splice($stats, $insertAt, 0, array($entry)); + } + return true; + } } diff --git a/plugins/SubMirror/actions/mirrorsettings.php b/plugins/SubMirror/actions/mirrorsettings.php index a828b26feb..20e1807b3d 100644 --- a/plugins/SubMirror/actions/mirrorsettings.php +++ b/plugins/SubMirror/actions/mirrorsettings.php @@ -102,4 +102,10 @@ class MirrorSettingsAction extends AccountSettingsAction function handlePost() { } + + function showLocalNav() + { + $nav = new SubGroupNav($this, common_current_user()); + $nav->show(); + } } diff --git a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po index 64e5fc4157..1774841cdf 100644 --- a/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po +++ b/plugins/TabFocus/locale/mk/LC_MESSAGES/TabFocus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TabFocus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:34:06+0000\n" +"POT-Creation-Date: 2011-01-22 14:49+0000\n" +"PO-Revision-Date: 2011-01-22 15:01:38+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:27:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-14 13:22:18+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-tabfocus\n" @@ -28,5 +28,5 @@ msgid "" "Twitter." msgstr "" "TabFocus го менува поведението на образецот за забелешки: со пристискање на " -"копчето Tab во местото за текст се означува копчето „Прати“, така " +"копчето Tab во местото за текст се означува копчето „Испрати“, така " "поситоветувајќи се со поведението на Twitter." diff --git a/plugins/TwitterBridge/TwitterBridgePlugin.php b/plugins/TwitterBridge/TwitterBridgePlugin.php index b2dce6f1c0..048daad98f 100644 --- a/plugins/TwitterBridge/TwitterBridgePlugin.php +++ b/plugins/TwitterBridge/TwitterBridgePlugin.php @@ -137,11 +137,11 @@ class TwitterBridgePlugin extends Plugin /* * Add a login tab for 'Sign in with Twitter' * - * @param Action &action the current action + * @param Action $action the current action * * @return void */ - function onEndLoginGroupNav(&$action) + function onEndLoginGroupNav($action) { $action_name = $action->trimmed('action'); @@ -160,11 +160,11 @@ class TwitterBridgePlugin extends Plugin /** * Add the Twitter Settings page to the Connect Settings menu * - * @param Action &$action The calling page + * @param Action $action The calling page * * @return boolean hook return */ - function onEndConnectSettingsNav(&$action) + function onEndConnectSettingsNav($action) { if (self::hasKeys()) { $action_name = $action->trimmed('action'); diff --git a/plugins/TwitterBridge/locale/TwitterBridge.pot b/plugins/TwitterBridge/locale/TwitterBridge.pot index e684baae0e..dc02c0154e 100644 --- a/plugins/TwitterBridge/locale/TwitterBridge.pot +++ b/plugins/TwitterBridge/locale/TwitterBridge.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-22 14:50+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -242,32 +242,32 @@ msgstr "" msgid "Connect" msgstr "" -#: twitterauthorization.php:423 twitterauthorization.php:432 +#: twitterauthorization.php:427 twitterauthorization.php:436 msgid "Registration not allowed." msgstr "" -#: twitterauthorization.php:439 +#: twitterauthorization.php:443 msgid "Not a valid invitation code." msgstr "" -#: twitterauthorization.php:452 +#: twitterauthorization.php:456 msgid "Nickname not allowed." msgstr "" -#: twitterauthorization.php:457 +#: twitterauthorization.php:461 msgid "Nickname already in use. Try another one." msgstr "" -#: twitterauthorization.php:472 +#: twitterauthorization.php:476 msgid "Error registering user." msgstr "" -#: twitterauthorization.php:483 twitterauthorization.php:521 -#: twitterauthorization.php:541 +#: twitterauthorization.php:487 twitterauthorization.php:527 +#: twitterauthorization.php:547 msgid "Error connecting user to Twitter." msgstr "" -#: twitterauthorization.php:503 +#: twitterauthorization.php:509 msgid "Invalid username or password." msgstr "" diff --git a/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po index 8fb31bea0c..49116b6544 100644 --- a/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/br/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:34:13+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:01:47+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:27:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-twitterbridge\n" @@ -247,32 +247,32 @@ msgstr "Ger-tremen" msgid "Connect" msgstr "Kevreañ" -#: twitterauthorization.php:423 twitterauthorization.php:432 +#: twitterauthorization.php:427 twitterauthorization.php:436 msgid "Registration not allowed." msgstr "N'eo ket aotreet krouiñ kontoù." -#: twitterauthorization.php:439 +#: twitterauthorization.php:443 msgid "Not a valid invitation code." msgstr "" -#: twitterauthorization.php:452 +#: twitterauthorization.php:456 msgid "Nickname not allowed." msgstr "Lesanv nann-aotreet." -#: twitterauthorization.php:457 +#: twitterauthorization.php:461 msgid "Nickname already in use. Try another one." msgstr "Implijet eo dija al lesanv-se. Klaskit unan all." -#: twitterauthorization.php:472 +#: twitterauthorization.php:476 msgid "Error registering user." msgstr "" -#: twitterauthorization.php:483 twitterauthorization.php:521 -#: twitterauthorization.php:541 +#: twitterauthorization.php:487 twitterauthorization.php:527 +#: twitterauthorization.php:547 msgid "Error connecting user to Twitter." msgstr "" -#: twitterauthorization.php:503 +#: twitterauthorization.php:509 msgid "Invalid username or password." msgstr "Anv implijer pe ger-tremen direizh." diff --git a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po index d7d7aff526..cb23b7a420 100644 --- a/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ca/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:34:14+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:01:47+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:27:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -275,32 +275,32 @@ msgstr "Contrasenya" msgid "Connect" msgstr "Connecta" -#: twitterauthorization.php:423 twitterauthorization.php:432 +#: twitterauthorization.php:427 twitterauthorization.php:436 msgid "Registration not allowed." msgstr "No es permet el registre." -#: twitterauthorization.php:439 +#: twitterauthorization.php:443 msgid "Not a valid invitation code." msgstr "No és un codi d'invitació vàlid." -#: twitterauthorization.php:452 +#: twitterauthorization.php:456 msgid "Nickname not allowed." msgstr "El sobrenom no és permès." -#: twitterauthorization.php:457 +#: twitterauthorization.php:461 msgid "Nickname already in use. Try another one." msgstr "El sobrenom ja és en ús. Proveu-ne un altre." -#: twitterauthorization.php:472 +#: twitterauthorization.php:476 msgid "Error registering user." msgstr "Error en registrar l'usuari." -#: twitterauthorization.php:483 twitterauthorization.php:521 -#: twitterauthorization.php:541 +#: twitterauthorization.php:487 twitterauthorization.php:527 +#: twitterauthorization.php:547 msgid "Error connecting user to Twitter." msgstr "Error en connectar l'usuari al Twitter." -#: twitterauthorization.php:503 +#: twitterauthorization.php:509 msgid "Invalid username or password." msgstr "Nom d'usuari o contrasenya no vàlida." diff --git a/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po index 1cf6c42123..2b07bbce82 100644 --- a/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fa/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:34:14+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:01:47+0000\n" "Language-Team: Persian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:27:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -247,32 +247,32 @@ msgstr "رمز عبور" msgid "Connect" msgstr "اتصال" -#: twitterauthorization.php:423 twitterauthorization.php:432 +#: twitterauthorization.php:427 twitterauthorization.php:436 msgid "Registration not allowed." msgstr "اجازهٔ ثبت‌نام داده نشده است." -#: twitterauthorization.php:439 +#: twitterauthorization.php:443 msgid "Not a valid invitation code." msgstr "کد دعوت نامعتبر است." -#: twitterauthorization.php:452 +#: twitterauthorization.php:456 msgid "Nickname not allowed." msgstr "نام مستعار مجاز نیست." -#: twitterauthorization.php:457 +#: twitterauthorization.php:461 msgid "Nickname already in use. Try another one." msgstr "این نام مستعار در حال حاضر مورد استفاده است. یکی دیگر را بیازمایید." -#: twitterauthorization.php:472 +#: twitterauthorization.php:476 msgid "Error registering user." msgstr "خطا در ثبت نام کاربر." -#: twitterauthorization.php:483 twitterauthorization.php:521 -#: twitterauthorization.php:541 +#: twitterauthorization.php:487 twitterauthorization.php:527 +#: twitterauthorization.php:547 msgid "Error connecting user to Twitter." msgstr "خطا در اتصال کاربر به توییتر." -#: twitterauthorization.php:503 +#: twitterauthorization.php:509 msgid "Invalid username or password." msgstr "نام کاربری یا رمز عبور اشتباه است." diff --git a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po index 0074adcaaa..53dbbcba3b 100644 --- a/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/fr/LC_MESSAGES/TwitterBridge.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:34:14+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:01:47+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:27:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-twitterbridge\n" @@ -279,32 +279,32 @@ msgstr "Mot de passe" msgid "Connect" msgstr "Connexion" -#: twitterauthorization.php:423 twitterauthorization.php:432 +#: twitterauthorization.php:427 twitterauthorization.php:436 msgid "Registration not allowed." msgstr "Inscription non autorisée." -#: twitterauthorization.php:439 +#: twitterauthorization.php:443 msgid "Not a valid invitation code." msgstr "Le code d’invitation n’est pas valide." -#: twitterauthorization.php:452 +#: twitterauthorization.php:456 msgid "Nickname not allowed." msgstr "Pseudonyme non autorisé." -#: twitterauthorization.php:457 +#: twitterauthorization.php:461 msgid "Nickname already in use. Try another one." msgstr "Pseudonyme déjà utilisé. Essayez-en un autre." -#: twitterauthorization.php:472 +#: twitterauthorization.php:476 msgid "Error registering user." msgstr "Erreur lors de l’inscription de l’utilisateur." -#: twitterauthorization.php:483 twitterauthorization.php:521 -#: twitterauthorization.php:541 +#: twitterauthorization.php:487 twitterauthorization.php:527 +#: twitterauthorization.php:547 msgid "Error connecting user to Twitter." msgstr "Erreur de connexion de l’utilisateur à Twitter." -#: twitterauthorization.php:503 +#: twitterauthorization.php:509 msgid "Invalid username or password." msgstr "Nom d’utilisateur ou mot de passe incorrect." diff --git a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po index 7208474565..c4f8cd4511 100644 --- a/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/ia/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:34:14+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:01:47+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:27:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-twitterbridge\n" @@ -270,32 +270,32 @@ msgstr "Contrasigno" msgid "Connect" msgstr "Connecter" -#: twitterauthorization.php:423 twitterauthorization.php:432 +#: twitterauthorization.php:427 twitterauthorization.php:436 msgid "Registration not allowed." msgstr "Creation de conto non permittite." -#: twitterauthorization.php:439 +#: twitterauthorization.php:443 msgid "Not a valid invitation code." msgstr "Le codice de invitation es invalide." -#: twitterauthorization.php:452 +#: twitterauthorization.php:456 msgid "Nickname not allowed." msgstr "Pseudonymo non permittite." -#: twitterauthorization.php:457 +#: twitterauthorization.php:461 msgid "Nickname already in use. Try another one." msgstr "Pseudonymo ja in uso. Proba un altere." -#: twitterauthorization.php:472 +#: twitterauthorization.php:476 msgid "Error registering user." msgstr "Error durante le registration del usator." -#: twitterauthorization.php:483 twitterauthorization.php:521 -#: twitterauthorization.php:541 +#: twitterauthorization.php:487 twitterauthorization.php:527 +#: twitterauthorization.php:547 msgid "Error connecting user to Twitter." msgstr "Error durante le connexion del usator a Twitter." -#: twitterauthorization.php:503 +#: twitterauthorization.php:509 msgid "Invalid username or password." msgstr "Nomine de usator o contrasigno invalide." diff --git a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po index 8962394f0e..eac1eba11e 100644 --- a/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/mk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:34:15+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:01:47+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:27:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-twitterbridge\n" @@ -272,32 +272,32 @@ msgstr "Лозинка" msgid "Connect" msgstr "Поврзи се" -#: twitterauthorization.php:423 twitterauthorization.php:432 +#: twitterauthorization.php:427 twitterauthorization.php:436 msgid "Registration not allowed." msgstr "Регистрацијата не е дозволена." -#: twitterauthorization.php:439 +#: twitterauthorization.php:443 msgid "Not a valid invitation code." msgstr "Ова не е важечки код за покана." -#: twitterauthorization.php:452 +#: twitterauthorization.php:456 msgid "Nickname not allowed." msgstr "Прекарот не е дозволен." -#: twitterauthorization.php:457 +#: twitterauthorization.php:461 msgid "Nickname already in use. Try another one." msgstr "Прекарот е зафатен. Одберете друг." -#: twitterauthorization.php:472 +#: twitterauthorization.php:476 msgid "Error registering user." msgstr "Грешка при регистрирање на корисникот." -#: twitterauthorization.php:483 twitterauthorization.php:521 -#: twitterauthorization.php:541 +#: twitterauthorization.php:487 twitterauthorization.php:527 +#: twitterauthorization.php:547 msgid "Error connecting user to Twitter." msgstr "Грешка при поврзувањето на корисникот со Twitter." -#: twitterauthorization.php:503 +#: twitterauthorization.php:509 msgid "Invalid username or password." msgstr "Неважечко корисничко име или лозинка." diff --git a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po index 6763193f09..ab4b92a4b6 100644 --- a/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/nl/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:34:15+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:01:47+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:27:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-twitterbridge\n" @@ -277,33 +277,33 @@ msgstr "Wachtwoord" msgid "Connect" msgstr "Koppelen" -#: twitterauthorization.php:423 twitterauthorization.php:432 +#: twitterauthorization.php:427 twitterauthorization.php:436 msgid "Registration not allowed." msgstr "Registratie is niet toegestaan." -#: twitterauthorization.php:439 +#: twitterauthorization.php:443 msgid "Not a valid invitation code." msgstr "De uitnodigingscode is ongeldig." -#: twitterauthorization.php:452 +#: twitterauthorization.php:456 msgid "Nickname not allowed." msgstr "Gebruikersnaam niet toegestaan." -#: twitterauthorization.php:457 +#: twitterauthorization.php:461 msgid "Nickname already in use. Try another one." msgstr "" "De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam." -#: twitterauthorization.php:472 +#: twitterauthorization.php:476 msgid "Error registering user." msgstr "Fout bij het registreren van de gebruiker." -#: twitterauthorization.php:483 twitterauthorization.php:521 -#: twitterauthorization.php:541 +#: twitterauthorization.php:487 twitterauthorization.php:527 +#: twitterauthorization.php:547 msgid "Error connecting user to Twitter." msgstr "Fout bij het verbinden van de gebruiker met Twitter." -#: twitterauthorization.php:503 +#: twitterauthorization.php:509 msgid "Invalid username or password." msgstr "Ongeldige gebruikersnaam of wachtwoord." diff --git a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po index 9bcd226ce5..28f190b3c3 100644 --- a/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/tr/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:34:15+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:01:47+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:27:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-plugin-twitterbridge\n" @@ -256,32 +256,32 @@ msgstr "Parola" msgid "Connect" msgstr "Bağlan" -#: twitterauthorization.php:423 twitterauthorization.php:432 +#: twitterauthorization.php:427 twitterauthorization.php:436 msgid "Registration not allowed." msgstr "Kayıt yapılmasına izin verilmiyor." -#: twitterauthorization.php:439 +#: twitterauthorization.php:443 msgid "Not a valid invitation code." msgstr "Geçerli bir davet kodu değil." -#: twitterauthorization.php:452 +#: twitterauthorization.php:456 msgid "Nickname not allowed." msgstr "Bu kullanıcı adına izin verilmiyor." -#: twitterauthorization.php:457 +#: twitterauthorization.php:461 msgid "Nickname already in use. Try another one." msgstr "Kullanıcı adı halihazırda kullanılıyor. Başka bir tane deneyin." -#: twitterauthorization.php:472 +#: twitterauthorization.php:476 msgid "Error registering user." msgstr "Kullanıcı kayıt hatası." -#: twitterauthorization.php:483 twitterauthorization.php:521 -#: twitterauthorization.php:541 +#: twitterauthorization.php:487 twitterauthorization.php:527 +#: twitterauthorization.php:547 msgid "Error connecting user to Twitter." msgstr "Twitter'a kullanıcı bağlama hatası." -#: twitterauthorization.php:503 +#: twitterauthorization.php:509 msgid "Invalid username or password." msgstr "Geçersiz kullanıcı adı veya parola." diff --git a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po index 1a26acc4cc..536ecb8429 100644 --- a/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/uk/LC_MESSAGES/TwitterBridge.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:34:15+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:01:47+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:27:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-twitterbridge\n" @@ -274,32 +274,32 @@ msgstr "Пароль" msgid "Connect" msgstr "Під’єднати" -#: twitterauthorization.php:423 twitterauthorization.php:432 +#: twitterauthorization.php:427 twitterauthorization.php:436 msgid "Registration not allowed." msgstr "Реєстрацію не дозволено." -#: twitterauthorization.php:439 +#: twitterauthorization.php:443 msgid "Not a valid invitation code." msgstr "Це не дійсний код запрошення." -#: twitterauthorization.php:452 +#: twitterauthorization.php:456 msgid "Nickname not allowed." msgstr "Нікнейм не допускається." -#: twitterauthorization.php:457 +#: twitterauthorization.php:461 msgid "Nickname already in use. Try another one." msgstr "Цей нікнейм вже використовується. Спробуйте інший." -#: twitterauthorization.php:472 +#: twitterauthorization.php:476 msgid "Error registering user." msgstr "Помилка при реєстрації користувача." -#: twitterauthorization.php:483 twitterauthorization.php:521 -#: twitterauthorization.php:541 +#: twitterauthorization.php:487 twitterauthorization.php:527 +#: twitterauthorization.php:547 msgid "Error connecting user to Twitter." msgstr "Помилка при підключенні користувача до Twitter." -#: twitterauthorization.php:503 +#: twitterauthorization.php:509 msgid "Invalid username or password." msgstr "Недійсне ім’я або пароль." diff --git a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po index ef027ff8d5..7b694b2eb6 100644 --- a/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po +++ b/plugins/TwitterBridge/locale/zh_CN/LC_MESSAGES/TwitterBridge.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - TwitterBridge\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-01-14 10:29+0000\n" -"PO-Revision-Date: 2011-01-14 10:34:15+0000\n" +"POT-Creation-Date: 2011-01-22 14:50+0000\n" +"PO-Revision-Date: 2011-01-22 15:01:47+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2011-01-10 18:27:23+0000\n" -"X-Generator: MediaWiki 1.18alpha (r80246); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2011-01-15 11:02:42+0000\n" +"X-Generator: MediaWiki 1.18alpha (r80746); 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-twitterbridge\n" @@ -264,32 +264,32 @@ msgstr "密码" msgid "Connect" msgstr "关联" -#: twitterauthorization.php:423 twitterauthorization.php:432 +#: twitterauthorization.php:427 twitterauthorization.php:436 msgid "Registration not allowed." msgstr "不允许注册。" -#: twitterauthorization.php:439 +#: twitterauthorization.php:443 msgid "Not a valid invitation code." msgstr "无效的邀请码。" -#: twitterauthorization.php:452 +#: twitterauthorization.php:456 msgid "Nickname not allowed." msgstr "昵称不被允许。" -#: twitterauthorization.php:457 +#: twitterauthorization.php:461 msgid "Nickname already in use. Try another one." msgstr "昵称已被使用,换一个吧。" -#: twitterauthorization.php:472 +#: twitterauthorization.php:476 msgid "Error registering user." msgstr "注册用户出错。" -#: twitterauthorization.php:483 twitterauthorization.php:521 -#: twitterauthorization.php:541 +#: twitterauthorization.php:487 twitterauthorization.php:527 +#: twitterauthorization.php:547 msgid "Error connecting user to Twitter." msgstr "关联用户到 Twitter 出错。" -#: twitterauthorization.php:503 +#: twitterauthorization.php:509 msgid "Invalid username or password." msgstr "用户名或密码不正确。" diff --git a/plugins/TwitterBridge/twitterauthorization.php b/plugins/TwitterBridge/twitterauthorization.php index bbe41bd438..972fa527d4 100644 --- a/plugins/TwitterBridge/twitterauthorization.php +++ b/plugins/TwitterBridge/twitterauthorization.php @@ -241,7 +241,7 @@ class TwitterauthorizationAction extends Action $this->twuid = $twitter_user->id; $this->tw_fields = array("screen_name" => $twitter_user->screen_name, - "name" => $twitter_user->name); + "fullname" => $twitter_user->name); $this->access_token = $atok; $this->tryLogin(); } @@ -373,7 +373,7 @@ class TwitterauthorizationAction extends Action $this->hidden('access_token_secret', $this->access_token->secret); $this->hidden('twuid', $this->twuid); $this->hidden('tw_fields_screen_name', $this->tw_fields['screen_name']); - $this->hidden('tw_fields_name', $this->tw_fields['name']); + $this->hidden('tw_fields_name', $this->tw_fields['fullname']); $this->elementStart('fieldset'); $this->hidden('token', common_session_token()); @@ -382,11 +382,24 @@ class TwitterauthorizationAction extends Action $this->element('p', null, _m('Create a new user with this nickname.')); $this->elementStart('ul', 'form_data'); + + // Hook point for captcha etc + Event::handle('StartRegistrationFormData', array($this)); + $this->elementStart('li'); $this->input('newname', _m('New nickname'), ($this->username) ? $this->username : '', _m('1-64 lowercase letters or numbers, no punctuation or spaces')); $this->elementEnd('li'); + $this->elementStart('li'); + $this->input('email', _('Email'), $this->getEmail(), + _('Used only for updates, announcements, '. + 'and password recovery')); + $this->elementEnd('li'); + + // Hook point for captcha etc + Event::handle('EndRegistrationFormData', array($this)); + $this->elementEnd('ul'); $this->submit('create', _m('Create')); $this->elementEnd('fieldset'); @@ -411,6 +424,32 @@ class TwitterauthorizationAction extends Action $this->elementEnd('form'); } + /** + * Get specified e-mail from the form, or the invite code. + * + * @return string + */ + function getEmail() + { + $email = $this->trimmed('email'); + if (!empty($email)) { + return $email; + } + + // Terrible hack for invites... + if (common_config('site', 'inviteonly')) { + $code = $_SESSION['invitecode']; + if ($code) { + $invite = Invitation::staticGet($code); + + if ($invite && $invite->address_type == 'email') { + return $invite->address; + } + } + } + return ''; + } + function message($msg) { $this->message_text = $msg; @@ -419,6 +458,10 @@ class TwitterauthorizationAction extends Action function createNewUser() { + if (!Event::handle('StartRegistrationTry', array($this))) { + return; + } + if (common_config('site', 'closed')) { $this->clientError(_m('Registration not allowed.')); return; @@ -458,7 +501,7 @@ class TwitterauthorizationAction extends Action return; } - $fullname = trim($this->tw_fields['name']); + $fullname = trim($this->tw_fields['fullname']); $args = array('nickname' => $nickname, 'fullname' => $fullname); @@ -466,6 +509,11 @@ class TwitterauthorizationAction extends Action $args['code'] = $invite->code; } + $email = $this->getEmail(); + if (!empty($email)) { + $args['email'] = $email; + } + $user = User::register($args); if (empty($user)) { @@ -490,6 +538,8 @@ class TwitterauthorizationAction extends Action common_debug('TwitterBridge Plugin - ' . "Registered new user $user->id from Twitter user $this->twuid"); + Event::handle('EndRegistrationTry', array($this)); + common_redirect(common_local_url('showstream', array('nickname' => $user->nickname)), 303); } @@ -596,8 +646,8 @@ class TwitterauthorizationAction extends Action function bestNewNickname() { - if (!empty($this->tw_fields['name'])) { - $nickname = $this->nicknamize($this->tw_fields['name']); + if (!empty($this->tw_fields['fullname'])) { + $nickname = $this->nicknamize($this->tw_fields['fullname']); if ($this->isNewNickname($nickname)) { return $nickname; } diff --git a/plugins/UserFlag/UserFlagPlugin.php b/plugins/UserFlag/UserFlagPlugin.php index fc7698841e..a375717ccd 100644 --- a/plugins/UserFlag/UserFlagPlugin.php +++ b/plugins/UserFlag/UserFlagPlugin.php @@ -121,12 +121,12 @@ class UserFlagPlugin extends Plugin /** * Add a 'flag' button to profile page * - * @param Action &$action The action being called + * @param Action $action The action being called * @param Profile $profile Profile being shown * * @return boolean hook result */ - function onEndProfilePageActionsElements(&$action, $profile) + function onEndProfilePageActionsElements($action, $profile) { $this->showFlagButton($action, $profile, array('action' => 'showstream', diff --git a/scripts/moveuser.php b/scripts/moveuser.php new file mode 100644 index 0000000000..17b3e0fb67 --- /dev/null +++ b/scripts/moveuser.php @@ -0,0 +1,73 @@ +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +$shortoptions = 'i:n:r:w:y'; +$longoptions = array('id=', 'nickname=', 'remote=', 'password='); + +$helptext = <<nickname}' to $remote. Are you sure? [y/N] "; + $response = fgets(STDIN); + if (strtolower(trim($response)) != 'y') { + print "Aborting.\n"; + exit(0); + } + } + + $qm = QueueManager::get(); + + $qm->enqueue(array($user, $remote, $password), 'acctmove'); + +} catch (Exception $e) { + print $e->getMessage()."\n"; + exit(1); +} diff --git a/tests/ActivityParseTests.php b/tests/ActivityParseTests.php index 378478d741..c2817a4602 100644 --- a/tests/ActivityParseTests.php +++ b/tests/ActivityParseTests.php @@ -382,6 +382,29 @@ class ActivityParseTests extends PHPUnit_Framework_TestCase } } + public function testExample10() + { + global $_example10; + $dom = new DOMDocument(); + $dom->loadXML($_example10); + + // example 10 is a PuSH item of a post on a group feed, as generated + // by 0.9.7 code after migration away from to + $feed = $dom->documentElement; + $entry = $dom->getElementsByTagName('entry')->item(0); + $expected = 'http://lazarus.local/mublog/user/557'; + + // Reading just the entry alone should pick up its own + // as the actor. + $act = new Activity($entry); + $this->assertEquals($act->actor->id, $expected); + + // Reading the entry in feed context used to be buggy, picking up + // the feed's which referred to the group. + // It should now be returning the expected author entry... + $act = new Activity($entry, $feed); + $this->assertEquals($act->actor->id, $expected); + } } $_example1 = << EXAMPLE9; + +// Sample PuSH entry from a group feed in 0.9.7 +// Old has been removed from entries in this version. +// A bug in the order of input processing meant that we were incorrectly +// reading the feed's instead of the entry's , +// causing the entry to get rejected as malformed (groups can't post on +// their own; we want to see the actual author's info here). +$_example10 = << + + StatusNet + http://lazarus.local/mublog/api/statusnet/groups/timeline/22.atom + grouptest316173 timeline + Updates from grouptest316173 on Blaguette! + http://lazarus.local/mublog/theme/default/default-avatar-profile.png + 2011-01-06T22:44:18+00:00 + + http://activitystrea.ms/schema/1.0/group + http://lazarus.local/mublog/group/22/id + grouptest316173 + + + + + grouptest316173 + grouptest316173 + + + http://activitystrea.ms/schema/1.0/group + http://lazarus.local/mublog/group/22/id + grouptest316173 + + + + + grouptest316173 + grouptest316173 + + + + + + + + + + http://activitystrea.ms/schema/1.0/note + http://lazarus.local/mublog/notice/1243 + Group post from local to !grouptest316173, should go out over push. + Group post from local to !<span class="vcard"><a href="http://lazarus.local/mublog/group/22/id" class="url"><span class="fn nickname">grouptest316173</span></a></span>, should go out over push. + + http://activitystrea.ms/schema/1.0/post + 2011-01-06T22:44:18+00:00 + 2011-01-06T22:44:18+00:00 + + http://activitystrea.ms/schema/1.0/person + http://lazarus.local/mublog/user/557 + Pubtest316173 Smith + + + + + pubtest316173 + Pubtest316173 Smith + Stub account for OStatus tests. + + homepage + http://example.org/pubtest316173 + true + + + + + + + + http://lazarus.local/mublog/api/statuses/user_timeline/557.atom + Pubtest316173 Smith + + + + http://lazarus.local/mublog/theme/default/default-avatar-profile.png + 2011-01-06T22:44:18+00:00 + + + + + + +EXAMPLE10;