Merge branch '0.9.x' into 1.0.x

Conflicts:
	lib/queuemanager.php
This commit is contained in:
Craig Andrews 2010-02-16 10:25:57 -05:00
commit 32084e33a2
177 changed files with 10326 additions and 6353 deletions

View File

@ -66,18 +66,21 @@ class ApiAccountVerifyCredentialsAction extends ApiAuthAction
{ {
parent::handle($args); parent::handle($args);
switch ($this->format) { if (!in_array($this->format, array('xml', 'json'))) {
case 'xml': $this->clientError(_('API method not found.'), $code = 404);
case 'json': return;
$args['id'] = $this->auth_user->id; }
$action_obj = new ApiUserShowAction();
if ($action_obj->prepare($args)) { $twitter_user = $this->twitterUserArray($this->auth_user->getProfile(), true);
$action_obj->handle($args);
} if ($this->format == 'xml') {
break; $this->initDocument('xml');
default: $this->showTwitterXmlUser($twitter_user);
header('Content-Type: text/html; charset=utf-8'); $this->endDocument('xml');
print 'Authorized'; } elseif ($this->format == 'json') {
$this->initDocument('json');
$this->showJsonObjects($twitter_user);
$this->endDocument('json');
} }
} }
@ -86,14 +89,14 @@ class ApiAccountVerifyCredentialsAction extends ApiAuthAction
* Is this action read only? * Is this action read only?
* *
* @param array $args other arguments * @param array $args other arguments
* *
* @return boolean true * @return boolean true
* *
**/ **/
function isReadOnly($args) function isReadOnly($args)
{ {
return true; return true;
} }
} }

View File

@ -52,13 +52,17 @@ require_once INSTALLDIR . '/lib/api.php';
class ApiStatusnetConfigAction extends ApiAction class ApiStatusnetConfigAction extends ApiAction
{ {
var $keys = array( var $keys = array(
'site' => array('name', 'server', 'theme', 'path', 'fancy', 'language', 'site' => array('name', 'server', 'theme', 'path', 'logo', 'fancy', 'language',
'email', 'broughtby', 'broughtbyurl', 'closed', 'email', 'broughtby', 'broughtbyurl', 'timezone', 'closed',
'inviteonly', 'private'), 'inviteonly', 'private', 'textlimit', 'ssl', 'sslserver', 'shorturllength'),
'license' => array('url', 'title', 'image'), 'license' => array('type', 'owner', 'url', 'title', 'image'),
'nickname' => array('featured'), 'nickname' => array('featured'),
'profile' => array('biolimit'),
'group' => array('desclimit'),
'notice' => array('contentlimit'),
'throttle' => array('enabled', 'count', 'timespan'), 'throttle' => array('enabled', 'count', 'timespan'),
'xmpp' => array('enabled', 'server', 'user') 'xmpp' => array('enabled', 'server', 'port', 'user'),
'integration' => array('source')
); );
/** /**

View File

@ -100,11 +100,11 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction
function showTimeline() function showTimeline()
{ {
$profile = $this->user->getProfile(); $profile = $this->user->getProfile();
$avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE); $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
$sitename = common_config('site', 'name'); $sitename = common_config('site', 'name');
$title = sprintf( $title = sprintf(
_('%1$s / Favorites from %2$s'), _('%1$s / Favorites from %2$s'),
$sitename, $sitename,
$this->user->nickname $this->user->nickname
@ -112,32 +112,69 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction
$taguribase = common_config('integration', 'taguri'); $taguribase = common_config('integration', 'taguri');
$id = "tag:$taguribase:Favorites:" . $this->user->id; $id = "tag:$taguribase:Favorites:" . $this->user->id;
$link = common_local_url(
'favorites', $subtitle = sprintf(
array('nickname' => $this->user->nickname)
);
$subtitle = sprintf(
_('%1$s updates favorited by %2$s / %2$s.'), _('%1$s updates favorited by %2$s / %2$s.'),
$sitename, $sitename,
$profile->getBestName(), $profile->getBestName(),
$this->user->nickname $this->user->nickname
); );
$logo = ($avatar) ? $avatar->displayUrl() : Avatar::defaultImage(AVATAR_PROFILE_SIZE); $logo = !empty($avatar)
? $avatar->displayUrl()
: Avatar::defaultImage(AVATAR_PROFILE_SIZE);
switch($this->format) { switch($this->format) {
case 'xml': case 'xml':
$this->showXmlTimeline($this->notices); $this->showXmlTimeline($this->notices);
break; break;
case 'rss': case 'rss':
$this->showRssTimeline($this->notices, $title, $link, $subtitle, null, $logo); $link = common_local_url(
'showfavorites',
array('nickname' => $this->user->nickname)
);
$this->showRssTimeline(
$this->notices,
$title,
$link,
$subtitle,
null,
$logo
);
break; break;
case 'atom': case 'atom':
$selfuri = common_root_url() .
ltrim($_SERVER['QUERY_STRING'], 'p='); header('Content-Type: application/atom+xml; charset=utf-8');
$this->showAtomTimeline(
$this->notices, $title, $id, $link, $subtitle, $atom = new AtomNoticeFeed();
null, $selfuri, $logo
$atom->setId($id);
$atom->setTitle($title);
$atom->setSubtitle($subtitle);
$atom->setLogo($logo);
$atom->setUpdated('now');
$atom->addLink(
common_local_url(
'showfavorites',
array('nickname' => $this->user->nickname)
)
); );
$id = $this->arg('id');
$aargs = array('format' => 'atom');
if (!empty($id)) {
$aargs['id'] = $id;
}
$atom->addLink(
$this->getSelfUri('ApiTimelineFavorites', $aargs),
array('rel' => 'self', 'type' => 'application/atom+xml')
);
$atom->addEntryFromNotices($this->notices);
$this->raw($atom->getString());
break; break;
case 'json': case 'json':
$this->showJsonTimeline($this->notices); $this->showJsonTimeline($this->notices);

View File

@ -114,39 +114,71 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction
$title = sprintf(_("%s and friends"), $this->user->nickname); $title = sprintf(_("%s and friends"), $this->user->nickname);
$taguribase = common_config('integration', 'taguri'); $taguribase = common_config('integration', 'taguri');
$id = "tag:$taguribase:FriendsTimeline:" . $this->user->id; $id = "tag:$taguribase:FriendsTimeline:" . $this->user->id;
$link = common_local_url(
'all', array('nickname' => $this->user->nickname) $subtitle = sprintf(
); _('Updates from %1$s and friends on %2$s!'),
$subtitle = sprintf( $this->user->nickname, $sitename
_('Updates from %1$s and friends on %2$s!'), );
$this->user->nickname, $sitename
); $logo = (!empty($avatar))
$logo = ($avatar) ? $avatar->displayUrl() : Avatar::defaultImage(AVATAR_PROFILE_SIZE); ? $avatar->displayUrl()
: Avatar::defaultImage(AVATAR_PROFILE_SIZE);
switch($this->format) { switch($this->format) {
case 'xml': case 'xml':
$this->showXmlTimeline($this->notices); $this->showXmlTimeline($this->notices);
break; break;
case 'rss': case 'rss':
$this->showRssTimeline($this->notices, $title, $link, $subtitle, null, $logo);
$link = common_local_url(
'all', array(
'nickname' => $this->user->nickname
)
);
$this->showRssTimeline(
$this->notices,
$title,
$link,
$subtitle,
null,
$logo
);
break; break;
case 'atom': case 'atom':
$target_id = $this->arg('id'); header('Content-Type: application/atom+xml; charset=utf-8');
if (isset($target_id)) { $atom = new AtomNoticeFeed();
$selfuri = common_root_url() .
'api/statuses/friends_timeline/' . $atom->setId($id);
$target_id . '.atom'; $atom->setTitle($title);
} else { $atom->setSubtitle($subtitle);
$selfuri = common_root_url() . $atom->setLogo($logo);
'api/statuses/friends_timeline.atom'; $atom->setUpdated('now');
$atom->addLink(
common_local_url(
'all',
array('nickname' => $this->user->nickname)
)
);
$id = $this->arg('id');
$aargs = array('format' => 'atom');
if (!empty($id)) {
$aargs['id'] = $id;
} }
$this->showAtomTimeline( $atom->addLink(
$this->notices, $title, $id, $link, $this->getSelfUri('ApiTimelineFriends', $aargs),
$subtitle, null, $selfuri, $logo array('rel' => 'self', 'type' => 'application/atom+xml')
); );
$atom->addEntryFromNotices($this->notices);
$this->raw($atom->getString());
break; break;
case 'json': case 'json':
$this->showJsonTimeline($this->notices); $this->showJsonTimeline($this->notices);

View File

@ -109,38 +109,70 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction
$title = sprintf(_("%s timeline"), $this->group->nickname); $title = sprintf(_("%s timeline"), $this->group->nickname);
$taguribase = common_config('integration', 'taguri'); $taguribase = common_config('integration', 'taguri');
$id = "tag:$taguribase:GroupTimeline:" . $this->group->id; $id = "tag:$taguribase:GroupTimeline:" . $this->group->id;
$link = common_local_url(
'showgroup',
array('nickname' => $this->group->nickname)
);
$subtitle = sprintf( $subtitle = sprintf(
_('Updates from %1$s on %2$s!'), _('Updates from %1$s on %2$s!'),
$this->group->nickname, $this->group->nickname,
$sitename $sitename
); );
$logo = ($avatar) ? $avatar : User_group::defaultLogo(AVATAR_PROFILE_SIZE);
$logo = ($avatar) ? $avatar : User_group::defaultLogo(AVATAR_PROFILE_SIZE);
switch($this->format) { switch($this->format) {
case 'xml': case 'xml':
$this->showXmlTimeline($this->notices); $this->showXmlTimeline($this->notices);
break; break;
case 'rss': case 'rss':
$this->showRssTimeline($this->notices, $title, $link, $subtitle, null, $logo); $this->showRssTimeline(
break;
case 'atom':
$selfuri = common_root_url() .
'api/statusnet/groups/timeline/' .
$this->group->nickname . '.atom';
$this->showAtomTimeline(
$this->notices, $this->notices,
$title, $title,
$id, $this->group->homeUrl(),
$link,
$subtitle, $subtitle,
null, null,
$selfuri,
$logo $logo
); );
break;
case 'atom':
header('Content-Type: application/atom+xml; charset=utf-8');
try {
$atom = new AtomNoticeFeed();
$atom->setId($id);
$atom->setTitle($title);
$atom->setSubtitle($subtitle);
$atom->setLogo($logo);
$atom->setUpdated('now');
$atom->addAuthorRaw($this->group->asAtomAuthor());
$atom->setActivitySubject($this->group->asActivitySubject());
$atom->addLink($this->group->homeUrl());
$id = $this->arg('id');
$aargs = array('format' => 'atom');
if (!empty($id)) {
$aargs['id'] = $id;
}
$atom->addLink(
$this->getSelfUri('ApiTimelineGroup', $aargs),
array('rel' => 'self', 'type' => 'application/atom+xml')
);
$atom->addEntryFromNotices($this->notices);
$this->raw($atom->getString());
} catch (Atom10FeedException $e) {
$this->serverError(
'Could not generate feed for group - ' . $e->getMessage()
);
return;
}
break; break;
case 'json': case 'json':
$this->showJsonTimeline($this->notices); $this->showJsonTimeline($this->notices);

View File

@ -115,39 +115,67 @@ class ApiTimelineHomeAction extends ApiBareAuthAction
$title = sprintf(_("%s and friends"), $this->user->nickname); $title = sprintf(_("%s and friends"), $this->user->nickname);
$taguribase = common_config('integration', 'taguri'); $taguribase = common_config('integration', 'taguri');
$id = "tag:$taguribase:HomeTimeline:" . $this->user->id; $id = "tag:$taguribase:HomeTimeline:" . $this->user->id;
$link = common_local_url(
'all', array('nickname' => $this->user->nickname)
);
$subtitle = sprintf( $subtitle = sprintf(
_('Updates from %1$s and friends on %2$s!'), _('Updates from %1$s and friends on %2$s!'),
$this->user->nickname, $sitename $this->user->nickname, $sitename
); );
$logo = ($avatar) ? $avatar->displayUrl() : Avatar::defaultImage(AVATAR_PROFILE_SIZE);
$logo = (!empty($avatar))
? $avatar->displayUrl()
: Avatar::defaultImage(AVATAR_PROFILE_SIZE);
switch($this->format) { switch($this->format) {
case 'xml': case 'xml':
$this->showXmlTimeline($this->notices); $this->showXmlTimeline($this->notices);
break; break;
case 'rss': case 'rss':
$this->showRssTimeline($this->notices, $title, $link, $subtitle, null, $logo); $link = common_local_url(
'all',
array('nickname' => $this->user->nickname)
);
$this->showRssTimeline(
$this->notices,
$title,
$link,
$subtitle,
null,
$logo
);
break; break;
case 'atom': case 'atom':
$target_id = $this->arg('id'); header('Content-Type: application/atom+xml; charset=utf-8');
if (isset($target_id)) { $atom = new AtomNoticeFeed();
$selfuri = common_root_url() .
'api/statuses/home_timeline/' . $atom->setId($id);
$target_id . '.atom'; $atom->setTitle($title);
} else { $atom->setSubtitle($subtitle);
$selfuri = common_root_url() . $atom->setLogo($logo);
'api/statuses/home_timeline.atom'; $atom->setUpdated('now');
$atom->addLink(
common_local_url(
'all',
array('nickname' => $this->user->nickname)
)
);
$id = $this->arg('id');
$aargs = array('format' => 'atom');
if (!empty($id)) {
$aargs['id'] = $id;
} }
$this->showAtomTimeline( $atom->addLink(
$this->notices, $title, $id, $link, $this->getSelfUri('ApiTimelineHome', $aargs),
$subtitle, null, $selfuri, $logo array('rel' => 'self', 'type' => 'application/atom+xml')
); );
$atom->addEntryFromNotices($this->notices);
$this->raw($atom->getString());
break; break;
case 'json': case 'json':
$this->showJsonTimeline($this->notices); $this->showJsonTimeline($this->notices);

View File

@ -137,12 +137,36 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction
$this->showRssTimeline($this->notices, $title, $link, $subtitle, null, $logo); $this->showRssTimeline($this->notices, $title, $link, $subtitle, null, $logo);
break; break;
case 'atom': case 'atom':
$selfuri = common_root_url() .
ltrim($_SERVER['QUERY_STRING'], 'p='); $atom = new AtomNoticeFeed();
$this->showAtomTimeline(
$this->notices, $title, $id, $link, $subtitle, $atom->setId($id);
null, $selfuri, $logo $atom->setTitle($title);
$atom->setSubtitle($subtitle);
$atom->setLogo($logo);
$atom->setUpdated('now');
$atom->addLink(
common_local_url(
'replies',
array('nickname' => $this->user->nickname)
)
); );
$id = $this->arg('id');
$aargs = array('format' => 'atom');
if (!empty($id)) {
$aargs['id'] = $id;
}
$atom->addLink(
$this->getSelfUri('ApiTimelineMentions', $aargs),
array('rel' => 'self', 'type' => 'application/atom+xml')
);
$atom->addEntryFromNotices($this->notices);
$this->raw($atom->getString());
break; break;
case 'json': case 'json':
$this->showJsonTimeline($this->notices); $this->showJsonTimeline($this->notices);

View File

@ -75,6 +75,10 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction
$this->notices = $this->getNotices(); $this->notices = $this->getNotices();
if ($this->since) {
throw new ServerException("since parameter is disabled for performance; use since_id", 403);
}
return true; return true;
} }
@ -118,11 +122,28 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction
$this->showRssTimeline($this->notices, $title, $link, $subtitle, null, $sitelogo); $this->showRssTimeline($this->notices, $title, $link, $subtitle, null, $sitelogo);
break; break;
case 'atom': case 'atom':
$selfuri = common_root_url() . 'api/statuses/public_timeline.atom';
$this->showAtomTimeline( $atom = new AtomNoticeFeed();
$this->notices, $title, $id, $link,
$subtitle, null, $selfuri, $sitelogo $atom->setId($id);
$atom->setTitle($title);
$atom->setSubtitle($subtitle);
$atom->setLogo($sitelogo);
$atom->setUpdated('now');
$atom->addLink(common_local_url('public'));
$atom->addLink(
$this->getSelfUri(
'ApiTimelinePublic', array('format' => 'atom')
),
array('rel' => 'self', 'type' => 'application/atom+xml')
); );
$atom->addEntryFromNotices($this->notices);
$this->raw($atom->getString());
break; break;
case 'json': case 'json':
$this->showJsonTimeline($this->notices); $this->showJsonTimeline($this->notices);
@ -145,7 +166,7 @@ class ApiTimelinePublicAction extends ApiPrivateAuthAction
$notice = Notice::publicStream( $notice = Notice::publicStream(
($this->page - 1) * $this->count, $this->count, $this->since_id, ($this->page - 1) * $this->count, $this->count, $this->since_id,
$this->max_id, $this->since $this->max_id
); );
while ($notice->fetch()) { while ($notice->fetch()) {

View File

@ -99,6 +99,8 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction
$strm = $this->auth_user->repeatsOfMe($offset, $limit, $this->since_id, $this->max_id); $strm = $this->auth_user->repeatsOfMe($offset, $limit, $this->since_id, $this->max_id);
common_debug(var_export($strm, true));
switch ($this->format) { switch ($this->format) {
case 'xml': case 'xml':
$this->showXmlTimeline($strm); $this->showXmlTimeline($strm);
@ -112,10 +114,38 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction
$title = sprintf(_("Repeats of %s"), $this->auth_user->nickname); $title = sprintf(_("Repeats of %s"), $this->auth_user->nickname);
$taguribase = common_config('integration', 'taguri'); $taguribase = common_config('integration', 'taguri');
$id = "tag:$taguribase:RepeatsOfMe:" . $this->auth_user->id; $id = "tag:$taguribase:RepeatsOfMe:" . $this->auth_user->id;
$link = common_local_url('showstream',
array('nickname' => $this->auth_user->nickname));
$this->showAtomTimeline($strm, $title, $id, $link); header('Content-Type: application/atom+xml; charset=utf-8');
$atom = new AtomNoticeFeed();
$atom->setId($id);
$atom->setTitle($title);
$atom->setSubtitle($subtitle);
$atom->setUpdated('now');
$atom->addLink(
common_local_url(
'showstream',
array('nickname' => $this->auth_user->nickname)
)
);
$id = $this->arg('id');
$aargs = array('format' => 'atom');
if (!empty($id)) {
$aargs['id'] = $id;
}
$atom->addLink(
$this->getSelfUri('ApiTimelineRetweetsOfMe', $aargs),
array('rel' => 'self', 'type' => 'application/atom+xml')
);
$atom->addEntryFromNotices($strm);
$this->raw($atom->getString());
break; break;
default: default:

View File

@ -100,10 +100,6 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction
$sitename = common_config('site', 'name'); $sitename = common_config('site', 'name');
$sitelogo = (common_config('site', 'logo')) ? common_config('site', 'logo') : Theme::path('logo.png'); $sitelogo = (common_config('site', 'logo')) ? common_config('site', 'logo') : Theme::path('logo.png');
$title = sprintf(_("Notices tagged with %s"), $this->tag); $title = sprintf(_("Notices tagged with %s"), $this->tag);
$link = common_local_url(
'tag',
array('tag' => $this->tag)
);
$subtitle = sprintf( $subtitle = sprintf(
_('Updates tagged with %1$s on %2$s!'), _('Updates tagged with %1$s on %2$s!'),
$this->tag, $this->tag,
@ -117,22 +113,51 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction
$this->showXmlTimeline($this->notices); $this->showXmlTimeline($this->notices);
break; break;
case 'rss': case 'rss':
$this->showRssTimeline($this->notices, $title, $link, $subtitle, null, $sitelogo); $link = common_local_url(
break; 'tag',
case 'atom': array('tag' => $this->tag)
$selfuri = common_root_url() . );
'api/statusnet/tags/timeline/' . $this->showRssTimeline(
$this->tag . '.atom';
$this->showAtomTimeline(
$this->notices, $this->notices,
$title, $title,
$id,
$link, $link,
$subtitle, $subtitle,
null, null,
$selfuri,
$sitelogo $sitelogo
); );
break;
case 'atom':
header('Content-Type: application/atom+xml; charset=utf-8');
$atom = new AtomNoticeFeed();
$atom->setId($id);
$atom->setTitle($title);
$atom->setSubtitle($subtitle);
$atom->setLogo($logo);
$atom->setUpdated('now');
$atom->addLink(
common_local_url(
'tag',
array('tag' => $this->tag)
)
);
$aargs = array('format' => 'atom');
if (!empty($this->tag)) {
$aargs['tag'] = $this->tag;
}
$atom->addLink(
$this->getSelfUri('ApiTimelineTag', $aargs),
array('rel' => 'self', 'type' => 'application/atom+xml')
);
$atom->addEntryFromNotices($this->notices);
$this->raw($atom->getString());
break; break;
case 'json': case 'json':
$this->showJsonTimeline($this->notices); $this->showJsonTimeline($this->notices);

View File

@ -145,18 +145,47 @@ class ApiTimelineUserAction extends ApiBareAuthAction
); );
break; break;
case 'atom': case 'atom':
if (isset($apidata['api_arg'])) {
$selfuri = common_root_url() . header('Content-Type: application/atom+xml; charset=utf-8');
'api/statuses/user_timeline/' .
$apidata['api_arg'] . '.atom'; $atom = new AtomNoticeFeed();
} else {
$selfuri = common_root_url() . $atom->setId($id);
'api/statuses/user_timeline.atom'; $atom->setTitle($title);
} $atom->setSubtitle($subtitle);
$this->showAtomTimeline( $atom->setLogo($logo);
$this->notices, $title, $id, $link, $atom->setUpdated('now');
$subtitle, $suplink, $selfuri, $logo
$atom->addLink(
common_local_url(
'showstream',
array('nickname' => $this->user->nickname)
)
); );
$id = $this->arg('id');
$aargs = array('format' => 'atom');
if (!empty($id)) {
$aargs['id'] = $id;
}
$atom->addLink(
$this->getSelfUri('ApiTimelineUser', $aargs),
array('rel' => 'self', 'type' => 'application/atom+xml')
);
$atom->addLink(
$suplink,
array(
'rel' => 'http://api.friendfeed.com/2008/03#sup',
'type' => 'application/json'
)
);
$atom->addEntryFromNotices($this->notices);
$this->raw($atom->getString());
break; break;
case 'json': case 'json':
$this->showJsonTimeline($this->notices); $this->showJsonTimeline($this->notices);

View File

@ -266,7 +266,7 @@ class EditApplicationAction extends OwnerDesignAction
/** /**
* Does the app name already exist? * Does the app name already exist?
* *
* Checks the DB to see someone has already registered and app * Checks the DB to see someone has already registered an app
* with the same name. * with the same name.
* *
* @param string $name app name to check * @param string $name app name to check
@ -277,7 +277,7 @@ class EditApplicationAction extends OwnerDesignAction
function nameExists($name) function nameExists($name)
{ {
$newapp = Oauth_application::staticGet('name', $name); $newapp = Oauth_application::staticGet('name', $name);
if (!$newapp) { if (empty($newapp)) {
return false; return false;
} else { } else {
return $newapp->id != $this->app->id; return $newapp->id != $this->app->id;

View File

@ -186,10 +186,13 @@ class FavoritedAction extends Action
function showContent() function showContent()
{ {
$weightexpr = common_sql_weight('fave.modified', common_config('popular', 'dropoff')); $weightexpr = common_sql_weight('fave.modified', common_config('popular', 'dropoff'));
$cutoff = sprintf("fave.modified > '%s'",
common_sql_date(time() - common_config('popular', 'cutoff')));
$qry = 'SELECT notice.*, '. $qry = 'SELECT notice.*, '.
$weightexpr . ' as weight ' . $weightexpr . ' as weight ' .
'FROM notice JOIN fave ON notice.id = fave.notice_id ' . 'FROM notice JOIN fave ON notice.id = fave.notice_id ' .
"WHERE $cutoff " .
'GROUP BY id,profile_id,uri,content,rendered,url,created,notice.modified,reply_to,is_local,source,notice.conversation ' . 'GROUP BY id,profile_id,uri,content,rendered,url,created,notice.modified,reply_to,is_local,source,notice.conversation ' .
'ORDER BY weight DESC'; 'ORDER BY weight DESC';

View File

@ -192,7 +192,9 @@ class GroupMemberListItem extends ProfileListItem
{ {
$user = common_current_user(); $user = common_current_user();
if (!empty($user) && $user->id != $this->profile->id && $user->isAdmin($this->group) && if (!empty($user) &&
$user->id != $this->profile->id &&
($user->isAdmin($this->group) || $user->hasRight(Right::MAKEGROUPADMIN)) &&
!$this->profile->isAdmin($this->group)) { !$this->profile->isAdmin($this->group)) {
$this->out->elementStart('li', 'entity_make_admin'); $this->out->elementStart('li', 'entity_make_admin');
$maf = new MakeAdminForm($this->out, $this->profile, $this->group, $maf = new MakeAdminForm($this->out, $this->profile, $this->group,

View File

@ -87,7 +87,8 @@ class MakeadminAction extends Action
return false; return false;
} }
$user = common_current_user(); $user = common_current_user();
if (!$user->isAdmin($this->group)) { if (!$user->isAdmin($this->group) &&
!$user->hasRight(Right::MAKEGROUPADMIN)) {
$this->clientError(_('Only an admin can make another user an admin.'), 401); $this->clientError(_('Only an admin can make another user an admin.'), 401);
return false; return false;
} }

View File

@ -279,7 +279,7 @@ class NewApplicationAction extends OwnerDesignAction
/** /**
* Does the app name already exist? * Does the app name already exist?
* *
* Checks the DB to see someone has already registered and app * Checks the DB to see someone has already registered an app
* with the same name. * with the same name.
* *
* @param string $name app name to check * @param string $name app name to check
@ -290,7 +290,7 @@ class NewApplicationAction extends OwnerDesignAction
function nameExists($name) function nameExists($name)
{ {
$app = Oauth_application::staticGet('name', $name); $app = Oauth_application::staticGet('name', $name);
return ($app !== false); return !empty($app);
} }
} }

View File

@ -106,7 +106,10 @@ class PublictagcloudAction extends Action
#Add the aggregated columns... #Add the aggregated columns...
$tags->selectAdd('max(notice_id) as last_notice_id'); $tags->selectAdd('max(notice_id) as last_notice_id');
$calc = common_sql_weight('created', common_config('tag', 'dropoff')); $calc = common_sql_weight('created', common_config('tag', 'dropoff'));
$cutoff = sprintf("notice_tag.created > '%s'",
common_sql_date(time() - common_config('tag', 'cutoff')));
$tags->selectAdd($calc . ' as weight'); $tags->selectAdd($calc . ' as weight');
$tags->addWhere($cutoff);
$tags->groupBy('tag'); $tags->groupBy('tag');
$tags->orderBy('weight DESC'); $tags->orderBy('weight DESC');

View File

@ -280,7 +280,7 @@ class RegisterAction extends Action
function nicknameExists($nickname) function nicknameExists($nickname)
{ {
$user = User::staticGet('nickname', $nickname); $user = User::staticGet('nickname', $nickname);
return ($user !== false); return is_object($user);
} }
/** /**
@ -300,7 +300,7 @@ class RegisterAction extends Action
return false; return false;
} }
$user = User::staticGet('email', $email); $user = User::staticGet('email', $email);
return ($user !== false); return is_object($user);
} }
// overrrided to add entry-title class // overrrided to add entry-title class

View File

@ -149,7 +149,6 @@ class ShowApplicationAction extends OwnerDesignAction
function showContent() function showContent()
{ {
$cur = common_current_user(); $cur = common_current_user();
$consumer = $this->application->getConsumer(); $consumer = $this->application->getConsumer();
@ -229,7 +228,13 @@ class ShowApplicationAction extends OwnerDesignAction
array('id' => $this->application->id)))); array('id' => $this->application->id))));
$this->elementStart('fieldset'); $this->elementStart('fieldset');
$this->hidden('token', common_session_token()); $this->hidden('token', common_session_token());
$this->submit('reset', _('Reset key & secret'));
$this->element('input', array('type' => 'submit',
'id' => 'reset',
'name' => 'reset',
'class' => 'submit',
'value' => _('Reset key & secret'),
'onClick' => 'return confirmReset()'));
$this->elementEnd('fieldset'); $this->elementEnd('fieldset');
$this->elementEnd('form'); $this->elementEnd('form');
$this->elementEnd('li'); $this->elementEnd('li');
@ -291,14 +296,53 @@ class ShowApplicationAction extends OwnerDesignAction
$this->elementEnd('p'); $this->elementEnd('p');
} }
/**
* Add a confirm script for Consumer key/secret reset
*
* @return void
*/
function showScripts()
{
parent::showScripts();
$msg = _('Are you sure you want to reset your consumer key and secret?');
$js = 'function confirmReset() { ';
$js .= ' var agree = confirm("' . $msg . '"); ';
$js .= ' return agree;';
$js .= '}';
$this->inlineScript($js);
}
/**
* Reset an application's Consumer key and secret
*
* XXX: Should this be moved to its own page with a confirm?
*
*/
function resetKey() function resetKey()
{ {
$this->application->query('BEGIN'); $this->application->query('BEGIN');
$oauser = new Oauth_application_user();
$oauser->application_id = $this->application->id;
$result = $oauser->delete();
if ($result === false) {
common_log_db_error($oauser, 'DELETE', __FILE__);
$this->success = false;
$this->msg = ('Unable to reset consumer key and secret.');
$this->showPage();
return;
}
$consumer = $this->application->getConsumer(); $consumer = $this->application->getConsumer();
$result = $consumer->delete(); $result = $consumer->delete();
if (!$result) { if ($result === false) {
common_log_db_error($consumer, 'DELETE', __FILE__); common_log_db_error($consumer, 'DELETE', __FILE__);
$this->success = false; $this->success = false;
$this->msg = ('Unable to reset consumer key and secret.'); $this->msg = ('Unable to reset consumer key and secret.');
@ -310,7 +354,7 @@ class ShowApplicationAction extends OwnerDesignAction
$result = $consumer->insert(); $result = $consumer->insert();
if (!$result) { if (empty($result)) {
common_log_db_error($consumer, 'INSERT', __FILE__); common_log_db_error($consumer, 'INSERT', __FILE__);
$this->application->query('ROLLBACK'); $this->application->query('ROLLBACK');
$this->success = false; $this->success = false;
@ -323,7 +367,7 @@ class ShowApplicationAction extends OwnerDesignAction
$this->application->consumer_key = $consumer->consumer_key; $this->application->consumer_key = $consumer->consumer_key;
$result = $this->application->update($orig); $result = $this->application->update($orig);
if (!$result) { if ($result === false) {
common_log_db_error($application, 'UPDATE', __FILE__); common_log_db_error($application, 'UPDATE', __FILE__);
$this->application->query('ROLLBACK'); $this->application->query('ROLLBACK');
$this->success = false; $this->success = false;

View File

@ -330,13 +330,13 @@ class ShowgroupAction extends GroupDesignAction
new Feed(Feed::RSS2, new Feed(Feed::RSS2,
common_local_url('ApiTimelineGroup', common_local_url('ApiTimelineGroup',
array('format' => 'rss', array('format' => 'rss',
'id' => $this->group->nickname)), 'id' => $this->group->id)),
sprintf(_('Notice feed for %s group (RSS 2.0)'), sprintf(_('Notice feed for %s group (RSS 2.0)'),
$this->group->nickname)), $this->group->nickname)),
new Feed(Feed::ATOM, new Feed(Feed::ATOM,
common_local_url('ApiTimelineGroup', common_local_url('ApiTimelineGroup',
array('format' => 'atom', array('format' => 'atom',
'id' => $this->group->nickname)), 'id' => $this->group->id)),
sprintf(_('Notice feed for %s group (Atom)'), sprintf(_('Notice feed for %s group (Atom)'),
$this->group->nickname)), $this->group->nickname)),
new Feed(Feed::FOAF, new Feed(Feed::FOAF,

View File

@ -131,14 +131,14 @@ class ShowstreamAction extends ProfileAction
new Feed(Feed::RSS2, new Feed(Feed::RSS2,
common_local_url('ApiTimelineUser', common_local_url('ApiTimelineUser',
array( array(
'id' => $this->user->nickname, 'id' => $this->user->id,
'format' => 'rss')), 'format' => 'rss')),
sprintf(_('Notice feed for %s (RSS 2.0)'), sprintf(_('Notice feed for %s (RSS 2.0)'),
$this->user->nickname)), $this->user->nickname)),
new Feed(Feed::ATOM, new Feed(Feed::ATOM,
common_local_url('ApiTimelineUser', common_local_url('ApiTimelineUser',
array( array(
'id' => $this->user->nickname, 'id' => $this->user->id,
'format' => 'atom')), 'format' => 'atom')),
sprintf(_('Notice feed for %s (Atom)'), sprintf(_('Notice feed for %s (Atom)'),
$this->user->nickname)), $this->user->nickname)),

View File

@ -127,10 +127,10 @@ class UserauthorizationAction extends Action
$location = $params->getLocation(); $location = $params->getLocation();
$avatar = $params->getAvatarURL(); $avatar = $params->getAvatarURL();
$this->elementStart('div', array('class' => 'profile'));
$this->elementStart('div', 'entity_profile vcard'); $this->elementStart('div', 'entity_profile vcard');
$this->elementStart('a', array('href' => $profile, $this->elementStart('dl', 'entity_depiction');
'class' => 'url')); $this->element('dt', null, _('Photo'));
$this->elementStart('dd');
if ($avatar) { if ($avatar) {
$this->element('img', array('src' => $avatar, $this->element('img', array('src' => $avatar,
'class' => 'photo avatar', 'class' => 'photo avatar',
@ -138,11 +138,19 @@ class UserauthorizationAction extends Action
'height' => AVATAR_PROFILE_SIZE, 'height' => AVATAR_PROFILE_SIZE,
'alt' => $nickname)); 'alt' => $nickname));
} }
$this->elementEnd('dd');
$this->elementEnd('dl');
$this->elementStart('dl', 'entity_nickname');
$this->element('dt', null, _('Nickname'));
$this->elementStart('dd');
$hasFN = ($fullname !== '') ? 'nickname' : 'fn nickname'; $hasFN = ($fullname !== '') ? 'nickname' : 'fn nickname';
$this->elementStart('span', $hasFN); $this->elementStart('a', array('href' => $profile,
'class' => 'url '.$hasFN));
$this->raw($nickname); $this->raw($nickname);
$this->elementEnd('span');
$this->elementEnd('a'); $this->elementEnd('a');
$this->elementEnd('dd');
$this->elementEnd('dl');
if (!is_null($fullname)) { if (!is_null($fullname)) {
$this->elementStart('dl', 'entity_fn'); $this->elementStart('dl', 'entity_fn');
@ -214,7 +222,6 @@ class UserauthorizationAction extends Action
$this->elementEnd('li'); $this->elementEnd('li');
$this->elementEnd('ul'); $this->elementEnd('ul');
$this->elementEnd('div'); $this->elementEnd('div');
$this->elementEnd('div');
} }
function sendAuthorization() function sendAuthorization()
@ -350,4 +357,4 @@ class UserauthorizationAction extends Action
} }
} }
} }
} }

View File

@ -32,6 +32,7 @@ require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
class Inbox extends Memcached_DataObject class Inbox extends Memcached_DataObject
{ {
const BOXCAR = 128; const BOXCAR = 128;
const MAX_NOTICES = 1024;
###START_AUTOCODE ###START_AUTOCODE
/* the code below is auto generated do not remove the above tag */ /* the code below is auto generated do not remove the above tag */
@ -81,7 +82,7 @@ class Inbox extends Memcached_DataObject
$ni->selectAdd(); $ni->selectAdd();
$ni->selectAdd('notice_id'); $ni->selectAdd('notice_id');
$ni->orderBy('notice_id DESC'); $ni->orderBy('notice_id DESC');
$ni->limit(0, 1024); $ni->limit(0, self::MAX_NOTICES);
if ($ni->find()) { if ($ni->find()) {
while($ni->fetch()) { while($ni->fetch()) {
@ -115,9 +116,11 @@ class Inbox extends Memcached_DataObject
$result = $inbox->query(sprintf('UPDATE inbox '. $result = $inbox->query(sprintf('UPDATE inbox '.
'set notice_ids = concat(cast(0x%08x as binary(4)), '. 'set notice_ids = concat(cast(0x%08x as binary(4)), '.
'substr(notice_ids, 1, 4092)) '. 'substr(notice_ids, 1, %d)) '.
'WHERE user_id = %d', 'WHERE user_id = %d',
$notice_id, $user_id)); $notice_id,
4 * (self::MAX_NOTICES - 1),
$user_id));
if ($result) { if ($result) {
self::blow('inbox:user_id:%d', $user_id); self::blow('inbox:user_id:%d', $user_id);
@ -173,4 +176,57 @@ class Inbox extends Memcached_DataObject
return $ids; return $ids;
} }
/**
* Wrapper for Inbox::stream() and Notice::getStreamByIds() returning
* additional items up to the limit if we were short due to deleted
* notices still being listed in the inbox.
*
* The fast path (when no items are deleted) should be just as fast; the
* offset parameter is applied *before* lookups for maximum efficiency.
*
* This means offset-based paging may show duplicates, but similar behavior
* already exists when new notices are posted between page views, so we
* think people will be ok with this until id-based paging is introduced
* to the user interface.
*
* @param int $user_id
* @param int $offset skip past the most recent N notices (after since_id checks)
* @param int $limit
* @param mixed $since_id return only notices after but not including this id
* @param mixed $max_id return only notices up to and including this id
* @param mixed $since obsolete/ignored
* @param mixed $own ignored?
* @return array of Notice objects
*
* @todo consider repacking the inbox when this happens?
*/
function streamNotices($user_id, $offset, $limit, $since_id, $max_id, $since, $own=false)
{
$ids = self::stream($user_id, $offset, self::MAX_NOTICES, $since_id, $max_id, $since, $own);
// Do a bulk lookup for the first $limit items
// Fast path when nothing's deleted.
$firstChunk = array_slice($ids, 0, $limit);
$notices = Notice::getStreamByIds($firstChunk);
$wanted = count($firstChunk); // raw entry count in the inbox up to our $limit
if ($notices->N >= $wanted) {
return $notices;
}
// There were deleted notices, we'll need to look for more.
assert($notices instanceof ArrayWrapper);
$items = $notices->_items;
$remainder = array_slice($ids, $limit);
while (count($items) < $wanted && count($remainder) > 0) {
$notice = Notice::staticGet(array_shift($remainder));
if ($notice) {
$items[] = $notice;
} else {
}
}
return new ArrayWrapper($items);
}
} }

View File

@ -363,7 +363,7 @@ class Memcached_DataObject extends DB_DataObject
$cached[] = clone($inst); $cached[] = clone($inst);
} }
$inst->free(); $inst->free();
$c->set($ckey, $cached, MEMCACHE_COMPRESSED, $expiry); $c->set($ckey, $cached, Cache::COMPRESSED, $expiry);
return new ArrayWrapper($cached); return new ArrayWrapper($cached);
} }

View File

@ -22,4 +22,19 @@ class Nonce extends Memcached_DataObject
/* the code above is auto generated do not remove the tag below */ /* the code above is auto generated do not remove the tag below */
###END_AUTOCODE ###END_AUTOCODE
/**
* Compatibility hack for PHP 5.3
*
* The statusnet.links.ini entry cannot be read because "," is no longer
* allowed in key names when read by parse_ini_file().
*
* @return array
* @access public
*/
function links()
{
return array('consumer_key,token' => 'token:consumer_key,token');
}
} }

View File

@ -783,7 +783,7 @@ class Notice extends Memcached_DataObject
$result = $gi->insert(); $result = $gi->insert();
if (!result) { if (!$result) {
common_log_db_error($gi, 'INSERT', __FILE__); common_log_db_error($gi, 'INSERT', __FILE__);
throw new ServerException(_('Problem saving group inbox.')); throw new ServerException(_('Problem saving group inbox.'));
} }
@ -917,7 +917,7 @@ class Notice extends Memcached_DataObject
/** /**
* Same calculation as saveGroups but without the saving * Same calculation as saveGroups but without the saving
* @fixme merge the functions * @fixme merge the functions
* @return array of Group objects * @return array of Group_inbox objects
*/ */
function getGroups() function getGroups()
{ {
@ -957,7 +957,10 @@ class Notice extends Memcached_DataObject
if ($namespace) { if ($namespace) {
$attrs = array('xmlns' => 'http://www.w3.org/2005/Atom', $attrs = array('xmlns' => 'http://www.w3.org/2005/Atom',
'xmlns:thr' => 'http://purl.org/syndication/thread/1.0'); 'xmlns:thr' => 'http://purl.org/syndication/thread/1.0',
'xmlns:georss' => 'http://www.georss.org/georss',
'xmlns:activity' => 'http://activitystrea.ms/spec/1.0/',
'xmlns:ostatus' => 'http://ostatus.org/schema/1.0');
} else { } else {
$attrs = array(); $attrs = array();
} }
@ -983,11 +986,6 @@ class Notice extends Memcached_DataObject
$xs->element('icon', null, $profile->avatarUrl(AVATAR_PROFILE_SIZE)); $xs->element('icon', null, $profile->avatarUrl(AVATAR_PROFILE_SIZE));
} }
$xs->elementStart('author');
$xs->element('name', null, $profile->nickname);
$xs->element('uri', null, $profile->profileurl);
$xs->elementEnd('author');
if ($source) { if ($source) {
$xs->elementEnd('source'); $xs->elementEnd('source');
} }
@ -995,6 +993,9 @@ class Notice extends Memcached_DataObject
$xs->element('title', null, $this->content); $xs->element('title', null, $this->content);
$xs->element('summary', null, $this->content); $xs->element('summary', null, $this->content);
$xs->raw($profile->asAtomAuthor());
$xs->raw($profile->asActivityActor());
$xs->element('link', array('rel' => 'alternate', $xs->element('link', array('rel' => 'alternate',
'href' => $this->bestUrl())); 'href' => $this->bestUrl()));
@ -1014,6 +1015,43 @@ class Notice extends Memcached_DataObject
} }
} }
if (!empty($this->conversation)
&& $this->conversation != $this->id) {
$xs->element(
'link', array(
'rel' => 'ostatus:conversation',
'href' => common_local_url(
'conversation',
array('id' => $this->conversation)
)
)
);
}
$reply_ids = $this->getReplies();
foreach ($reply_ids as $id) {
$profile = Profile::staticGet('id', $id);
if (!empty($profile)) {
$xs->element(
'link', array(
'rel' => 'ostatus:attention',
'href' => $profile->getAcctUri()
)
);
}
}
if (!empty($this->repeat_of)) {
$repeat = Notice::staticGet('id', $this->repeat_of);
if (!empty($repeat)) {
$xs->element(
'ostatus:forward',
array('ref' => $repeat->uri, 'href' => $repeat->bestUrl())
);
}
}
$xs->element('content', array('type' => 'html'), $this->rendered); $xs->element('content', array('type' => 'html'), $this->rendered);
$tag = new Notice_tag(); $tag = new Notice_tag();
@ -1041,9 +1079,7 @@ class Notice extends Memcached_DataObject
} }
if (!empty($this->lat) && !empty($this->lon)) { if (!empty($this->lat) && !empty($this->lon)) {
$xs->elementStart('geo', array('xmlns:georss' => 'http://www.georss.org/georss'));
$xs->element('georss:point', null, $this->lat . ' ' . $this->lon); $xs->element('georss:point', null, $this->lat . ' ' . $this->lon);
$xs->elementEnd('geo');
} }
$xs->elementEnd('entry'); $xs->elementEnd('entry');
@ -1176,6 +1212,10 @@ class Notice extends Memcached_DataObject
// Figure out who that is. // Figure out who that is.
$sender = Profile::staticGet('id', $profile_id); $sender = Profile::staticGet('id', $profile_id);
if (empty($sender)) {
return null;
}
$recipient = common_relative_profile($sender, $nickname, common_sql_now()); $recipient = common_relative_profile($sender, $nickname, common_sql_now());
if (empty($recipient)) { if (empty($recipient)) {
@ -1468,4 +1508,25 @@ class Notice extends Memcached_DataObject
$handler->handle($this); $handler->handle($this);
} }
} }
function insert()
{
$result = parent::insert();
if ($result) {
// Profile::hasRepeated() abuses pkeyGet(), so we
// have to clear manually
if (!empty($this->repeat_of)) {
$c = self::memcache();
if (!empty($c)) {
$ck = self::multicacheKey('Notice',
array('profile_id' => $this->profile_id,
'repeat_of' => $this->repeat_of));
$c->delete($ck);
}
}
}
return $result;
}
} }

View File

@ -716,6 +716,7 @@ class Profile extends Memcached_DataObject
switch ($right) switch ($right)
{ {
case Right::DELETEOTHERSNOTICE: case Right::DELETEOTHERSNOTICE:
case Right::MAKEGROUPADMIN:
case Right::SANDBOXUSER: case Right::SANDBOXUSER:
case Right::SILENCEUSER: case Right::SILENCEUSER:
case Right::DELETEUSER: case Right::DELETEUSER:
@ -753,4 +754,89 @@ class Profile extends Memcached_DataObject
return !empty($notice); return !empty($notice);
} }
/**
* Returns an XML string fragment with limited profile information
* as an Atom <author> element.
*
* Assumes that Atom has been previously set up as the base namespace.
*
* @return string
*/
function asAtomAuthor()
{
$xs = new XMLStringer(true);
$xs->elementStart('author');
$xs->element('name', null, $this->nickname);
$xs->element('uri', null, $this->profileurl);
$xs->elementEnd('author');
return $xs->getString();
}
/**
* Returns an XML string fragment with profile information as an
* Activity Streams <activity:actor> element.
*
* Assumes that 'activity' namespace has been previously defined.
*
* @return string
*/
function asActivityActor()
{
return $this->asActivityNoun('actor');
}
/**
* Returns an XML string fragment with profile information as an
* Activity Streams noun object with the given element type.
*
* Assumes that 'activity' namespace has been previously defined.
*
* @param string $element one of 'actor', 'subject', 'object', 'target'
* @return string
*/
function asActivityNoun($element)
{
$xs = new XMLStringer(true);
$xs->elementStart('activity:' . $element);
$xs->element(
'activity:object-type',
null,
'http://activitystrea.ms/schema/1.0/person'
);
$xs->element(
'id',
null,
common_local_url(
'userbyid',
array('id' => $this->id)
)
);
$xs->element('title', null, $this->getBestName());
$avatar = $this->getAvatar(AVATAR_PROFILE_SIZE);
$xs->element(
'link', array(
'type' => empty($avatar) ? 'image/png' : $avatar->mediatype,
'href' => empty($avatar)
? Avatar::defaultImage(AVATAR_PROFILE_SIZE)
: $avatar->displayUrl()
),
''
);
$xs->elementEnd('activity:' . $element);
return $xs->getString();
}
function getAcctUri()
{
return $this->nickname . '@' . common_config('site', 'server');
}
} }

View File

@ -497,28 +497,22 @@ class User extends Memcached_DataObject
function noticesWithFriends($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null) function noticesWithFriends($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null)
{ {
$ids = Inbox::stream($this->id, $offset, $limit, $since_id, $before_id, $since, false); return Inbox::streamNotices($this->id, $offset, $limit, $since_id, $before_id, $since, false);
return Notice::getStreamByIds($ids);
} }
function noticeInbox($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null) function noticeInbox($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null)
{ {
$ids = Inbox::stream($this->id, $offset, $limit, $since_id, $before_id, $since, true); return Inbox::streamNotices($this->id, $offset, $limit, $since_id, $before_id, $since, true);
return Notice::getStreamByIds($ids);
} }
function friendsTimeline($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null) function friendsTimeline($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null)
{ {
$ids = Inbox::stream($this->id, $offset, $limit, $since_id, $before_id, $since, false); return Inbox::streamNotices($this->id, $offset, $limit, $since_id, $before_id, $since, false);
return Notice::getStreamByIds($ids);
} }
function ownFriendsTimeline($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null) function ownFriendsTimeline($offset=0, $limit=NOTICES_PER_PAGE, $since_id=0, $before_id=0, $since=null)
{ {
$ids = Inbox::stream($this->id, $offset, $limit, $since_id, $before_id, $since, true); return Inbox::streamNotices($this->id, $offset, $limit, $since_id, $before_id, $since, true);
return Notice::getStreamByIds($ids);
} }
function blowFavesCache() function blowFavesCache()

View File

@ -49,12 +49,12 @@ class User_group extends Memcached_DataObject
array('id' => $this->id)); array('id' => $this->id));
} }
function getNotices($offset, $limit) function getNotices($offset, $limit, $since_id=null, $max_id=null)
{ {
$ids = Notice::stream(array($this, '_streamDirect'), $ids = Notice::stream(array($this, '_streamDirect'),
array(), array(),
'user_group:notice_ids:' . $this->id, 'user_group:notice_ids:' . $this->id,
$offset, $limit); $offset, $limit, $since_id, $max_id);
return Notice::getStreamByIds($ids); return Notice::getStreamByIds($ids);
} }
@ -355,6 +355,39 @@ class User_group extends Memcached_DataObject
return $xs->getString(); return $xs->getString();
} }
function asAtomAuthor()
{
$xs = new XMLStringer(true);
$xs->elementStart('author');
$xs->element('name', null, $this->nickname);
$xs->element('uri', null, $this->permalink());
$xs->elementEnd('author');
return $xs->getString();
}
function asActivitySubject()
{
$xs = new XMLStringer(true);
$xs->elementStart('activity:subject');
$xs->element('activity:object', null, 'http://activitystrea.ms/schema/1.0/group');
$xs->element('id', null, $this->permalink());
$xs->element('title', null, $this->getBestName());
$xs->element(
'link', array(
'rel' => 'avatar',
'href' => empty($this->homepage_logo)
? User_group::defaultLogo(AVATAR_PROFILE_SIZE)
: $this->homepage_logo
)
);
$xs->elementEnd('activity:subject');
return $xs->getString();
}
static function register($fields) { static function register($fields) {
// MAGICALLY put fields into current scope // MAGICALLY put fields into current scope

View File

@ -353,7 +353,7 @@ notice_id = K
id = 129 id = 129
owner = 129 owner = 129
consumer_key = 130 consumer_key = 130
name = 2 name = 130
description = 2 description = 2
icon = 130 icon = 130
source_url = 2 source_url = 2
@ -580,6 +580,7 @@ modified = 384
[user_group__keys] [user_group__keys]
id = N id = N
nickname = U
[user_openid] [user_openid]
canonical = 130 canonical = 130

View File

@ -19,8 +19,11 @@ profile_id = profile:id
[token] [token]
consumer_key = consumer:consumer_key consumer_key = consumer:consumer_key
[nonce] ; Compatibility hack for PHP 5.3
consumer_key,token = token:consumer_key,token ; This entry has been moved to the class definition, as commas are no longer
; considered valid in keys, causing parse_ini_file() to reject the whole file.
;[nonce]
;consumer_key,token = token:consumer_key,token
[confirm_address] [confirm_address]
user_id = user:id user_id = user:id

View File

@ -209,7 +209,7 @@ create table oauth_application (
id integer auto_increment primary key comment 'unique identifier', id integer auto_increment primary key comment 'unique identifier',
owner integer not null comment 'owner of the application' references profile (id), owner integer not null comment 'owner of the application' references profile (id),
consumer_key varchar(255) not null comment 'application consumer key' references consumer (consumer_key), consumer_key varchar(255) not null comment 'application consumer key' references consumer (consumer_key),
name varchar(255) unique key comment 'name of the application', name varchar(255) not null unique key comment 'name of the application',
description varchar(255) comment 'description of the application', description varchar(255) comment 'description of the application',
icon varchar(255) not null comment 'application icon', icon varchar(255) not null comment 'application icon',
source_url varchar(255) comment 'application homepage - used for source link', source_url varchar(255) comment 'application homepage - used for source link',

View File

@ -356,42 +356,44 @@ var SN = { // StatusNet
}, },
NoticeRepeat: function() { NoticeRepeat: function() {
$('.form_repeat').live('click', function() { $('.form_repeat').live('click', function(e) {
SN.U.FormXHR($(this)); e.preventDefault();
SN.U.NoticeRepeatConfirmation($(this)); SN.U.NoticeRepeatConfirmation($(this));
return false; return false;
}); });
}, },
NoticeRepeatConfirmation: function(form) { NoticeRepeatConfirmation: function(form) {
function NRC() { var submit_i = form.find('.submit');
form.closest('.notice-options').addClass('opaque');
form.addClass('dialogbox');
form.append('<button class="close">&#215;</button>'); var submit = submit_i.clone();
form.find('button.close').click(function(){ submit
$(this).remove(); .addClass('submit_dialogbox')
.removeClass('submit');
form.append(submit);
submit.bind('click', function() { SN.U.FormXHR(form); return false; });
form.closest('.notice-options').removeClass('opaque'); submit_i.hide();
form.removeClass('dialogbox');
form.find('.submit_dialogbox').remove();
form.find('.submit').show();
return false; form
}); .addClass('dialogbox')
}; .append('<button class="close">&#215;</button>')
.closest('.notice-options')
.addClass('opaque');
form.find('.submit').bind('click', function(e) { form.find('button.close').click(function(){
e.preventDefault(); $(this).remove();
var submit = form.find('.submit').clone(); form
submit.addClass('submit_dialogbox'); .removeClass('dialogbox')
submit.removeClass('submit'); .closest('.notice-options')
form.append(submit); .removeClass('opaque');
$(this).hide(); form.find('.submit_dialogbox').remove();
form.find('.submit').show();
NRC(); return false;
}); });
}, },

View File

@ -77,6 +77,7 @@ class ApiAction extends Action
function prepare($args) function prepare($args)
{ {
StatusNet::setApi(true); // reduce exception reports to aid in debugging
parent::prepare($args); parent::prepare($args);
$this->format = $this->arg('format'); $this->format = $this->arg('format');
@ -1103,7 +1104,7 @@ class ApiAction extends Action
} }
} }
function serverError($msg, $code = 500, $content_type = 'json') function serverError($msg, $code = 500, $content_type = 'xml')
{ {
$action = $this->trimmed('action'); $action = $this->trimmed('action');
@ -1321,4 +1322,22 @@ class ApiAction extends Action
} }
} }
function getSelfUri($action, $aargs)
{
parse_str($_SERVER['QUERY_STRING'], $params);
$pstring = '';
if (!empty($params)) {
unset($params['p']);
$pstring = http_build_query($params);
}
$uri = common_local_url($action, $aargs);
if (!empty($pstring)) {
$uri .= '?' . $pstring;
}
return $uri;
}
} }

View File

@ -55,6 +55,7 @@ class ApiAuthAction extends ApiAction
{ {
var $auth_user_nickname = null; var $auth_user_nickname = null;
var $auth_user_password = null; var $auth_user_password = null;
var $oauth_source = null;
/** /**
* Take arguments for running, looks for an OAuth request, * Take arguments for running, looks for an OAuth request,
@ -73,28 +74,23 @@ class ApiAuthAction extends ApiAction
// NOTE: $this->auth_user has to get set in prepare(), not handle(), // NOTE: $this->auth_user has to get set in prepare(), not handle(),
// because subclasses do stuff with it in their prepares. // because subclasses do stuff with it in their prepares.
if ($this->requiresAuth()) { $oauthReq = $this->getOAuthRequest();
$oauthReq = $this->getOAuthRequest(); if (!$oauthReq) {
if ($this->requiresAuth()) {
if (!$oauthReq) {
$this->checkBasicAuthUser(true); $this->checkBasicAuthUser(true);
} else { } else {
$this->checkOAuthRequest($oauthReq); // Check to see if a basic auth user is there even
// if one's not required
$this->checkBasicAuthUser(false);
} }
} else { } else {
$this->checkOAuthRequest($oauthReq);
// Check to see if a basic auth user is there even
// if one's not required
$this->checkBasicAuthUser(false);
} }
// Reject API calls with the wrong access level // Reject API calls with the wrong access level
if ($this->isReadOnly($args) == false) { if ($this->isReadOnly($args) == false) {
common_debug(get_class($this) . ' is not read-only!');
if ($this->access != self::READ_WRITE) { if ($this->access != self::READ_WRITE) {
$msg = _('API resource requires read-write access, ' . $msg = _('API resource requires read-write access, ' .
'but you only have read access.'); 'but you only have read access.');
@ -111,7 +107,6 @@ class ApiAuthAction extends ApiAction
* This is to avoid doign any unnecessary DB lookups. * This is to avoid doign any unnecessary DB lookups.
* *
* @return mixed the OAuthRequest or false * @return mixed the OAuthRequest or false
*
*/ */
function getOAuthRequest() function getOAuthRequest()
@ -140,7 +135,6 @@ class ApiAuthAction extends ApiAction
* @param OAuthRequest $request the OAuth Request * @param OAuthRequest $request the OAuth Request
* *
* @return nothing * @return nothing
*
*/ */
function checkOAuthRequest($request) function checkOAuthRequest($request)

106
lib/atom10entry.php Normal file
View File

@ -0,0 +1,106 @@
<?php
/**
* StatusNet, the distributed open-source microblogging tool
*
* Class for building / manipulating an Atom entry in memory
*
* PHP version 5
*
* LICENCE: This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @category Feed
* @package StatusNet
* @author Zach Copley <zach@status.net>
* @copyright 2010 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
if (!defined('STATUSNET')
{
exit(1);
}
class Atom10EntryException extends Exception
{
}
/**
* Class for manipulating an Atom entry in memory. Get the entry as an XML
* string with Atom10Entry::getString().
*
* @category Feed
* @package StatusNet
* @author Zach Copley <zach@status.net>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
class Atom10Entry extends XMLStringer
{
private $namespaces;
private $categories;
private $content;
private $contributors;
private $id;
private $links;
private $published;
private $rights;
private $source;
private $summary;
private $title;
function __construct($indent = true) {
parent::__construct($indent);
$this->namespaces = array();
}
function addNamespace($namespace, $uri)
{
$ns = array($namespace => $uri);
$this->namespaces = array_merge($this->namespaces, $ns);
}
function initEntry()
{
}
function endEntry()
{
}
/**
* Check that all required elements have been set, etc.
* Throws an Atom10EntryException if something's missing.
*
* @return void
*/
function validate
{
}
function getString()
{
$this->validate();
$this->initEntry();
$this->renderEntries();
$this->endEntry();
return $this->xw->outputMemory();
}
}

293
lib/atom10feed.php Normal file
View File

@ -0,0 +1,293 @@
<?php
/**
* StatusNet, the distributed open-source microblogging tool
*
* Class for building an Atom feed in memory
*
* PHP version 5
*
* LICENCE: This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @category Feed
* @package StatusNet
* @author Zach Copley <zach@status.net>
* @copyright 2010 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
if (!defined('STATUSNET'))
{
exit(1);
}
class Atom10FeedException extends Exception
{
}
/**
* Class for building an Atom feed in memory. Get the finished doc
* as a string with Atom10Feed::getString().
*
* @category Feed
* @package StatusNet
* @author Zach Copley <zach@status.net>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
class Atom10Feed extends XMLStringer
{
public $xw;
private $namespaces;
private $authors;
private $subject;
private $categories;
private $contributors;
private $generator;
private $icon;
private $links;
private $logo;
private $rights;
private $subtitle;
private $title;
private $published;
private $updated;
private $entries;
/**
* Constructor
*
* @param boolean $indent flag to turn indenting on or off
*
* @return void
*/
function __construct($indent = true) {
parent::__construct($indent);
$this->namespaces = array();
$this->authors = array();
$this->links = array();
$this->entries = array();
$this->addNamespace('xmlns', 'http://www.w3.org/2005/Atom');
}
/**
* Add another namespace to the feed
*
* @param string $namespace the namespace
* @param string $uri namspace uri
*
* @return void
*/
function addNamespace($namespace, $uri)
{
$ns = array($namespace => $uri);
$this->namespaces = array_merge($this->namespaces, $ns);
}
function addAuthor($name, $uri = null, $email = null)
{
$xs = new XMLStringer(true);
$xs->elementStart('author');
if (!empty($name)) {
$xs->element('name', null, $name);
} else {
throw new Atom10FeedException(
'author element must contain a name element.'
);
}
if (!is_null($uri)) {
$xs->element('uri', null, $uri);
}
if (!is_null(email)) {
$xs->element('email', null, $email);
}
$xs->elementEnd('author');
array_push($this->authors, $xs->getString());
}
/**
* Add an Author to the feed via raw XML string
*
* @param string $xmlAuthor An XML string representation author
*
* @return void
*/
function addAuthorRaw($xmlAuthor)
{
array_push($this->authors, $xmlAuthor);
}
function renderAuthors()
{
foreach ($this->authors as $author) {
$this->raw($author);
}
}
/**
* Add a activity feed subject via raw XML string
*
* @param string $xmlSubject An XML string representation of the subject
*
* @return void
*/
function setActivitySubject($xmlSubject)
{
$this->subject = $xmlSubject;
}
function getNamespaces()
{
return $this->namespaces;
}
function initFeed()
{
$this->xw->startDocument('1.0', 'UTF-8');
$commonAttrs = array('xml:lang' => 'en-US');
$commonAttrs = array_merge($commonAttrs, $this->namespaces);
$this->elementStart('feed', $commonAttrs);
$this->element('id', null, $this->id);
$this->element('title', null, $this->title);
$this->element('subtitle', null, $this->subtitle);
if (!empty($this->logo)) {
$this->element('logo', null, $this->logo);
}
$this->element('updated', null, $this->updated);
$this->renderLinks();
}
/**
* Check that all required elements have been set, etc.
* Throws an Atom10FeedException if something's missing.
*
* @return void
*/
function validate()
{
}
function renderLinks()
{
foreach ($this->links as $attrs)
{
$this->element('link', $attrs, null);
}
}
function addEntryRaw($xmlEntry)
{
array_push($this->entries, $xmlEntry);
}
function addEntry($entry)
{
array_push($this->entries, $entry->getString());
}
function renderEntries()
{
foreach ($this->entries as $entry) {
$this->raw($entry);
}
}
function endFeed()
{
$this->elementEnd('feed');
$this->xw->endDocument();
}
function getString()
{
$this->validate();
$this->initFeed();
$this->renderAuthors();
if (!empty($this->subject)) {
$this->raw($this->subject);
}
$this->renderEntries();
$this->endFeed();
return $this->xw->outputMemory();
}
function setId($id)
{
$this->id = $id;
}
function setTitle($title)
{
$this->title = $title;
}
function setSubtitle($subtitle)
{
$this->subtitle = $subtitle;
}
function setLogo($logo)
{
$this->logo = $logo;
}
function setUpdated($dt)
{
$this->updated = common_date_iso8601($dt);
}
function setPublished($dt)
{
$this->published = common_date_iso8601($dt);
}
/**
* Adds a link element into the Atom document
*
* Assumes you want rel="alternate" and type="text/html" unless
* you send in $otherAttrs.
*
* @param string $uri the uri the href needs to point to
* @param array $otherAttrs other attributes to stick in
*
* @return void
*/
function addLink($uri, $otherAttrs = null) {
$attrs = array('href' => $uri);
if (is_null($otherAttrs)) {
$attrs['rel'] = 'alternate';
$attrs['type'] = 'text/html';
} else {
$attrs = array_merge($attrs, $otherAttrs);
}
array_push($this->links, $attrs);
}
}

103
lib/atomnoticefeed.php Normal file
View File

@ -0,0 +1,103 @@
<?php
/**
* StatusNet, the distributed open-source microblogging tool
*
* Class for building and Atom feed from a collection of notices
*
* PHP version 5
*
* LICENCE: This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @category Feed
* @package StatusNet
* @author Zach Copley <zach@status.net>
* @copyright 2010 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
if (!defined('STATUSNET'))
{
exit(1);
}
/**
* Class for creating a feed that represents a collection of notices. Builds the
* feed in memory. Get the feed as a string with AtomNoticeFeed::getString().
*
* @category Feed
* @package StatusNet
* @author Zach Copley <zach@status.net>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
class AtomNoticeFeed extends Atom10Feed
{
function __construct($indent = true) {
parent::__construct($indent);
// Feeds containing notice info use these namespaces
$this->addNamespace(
'xmlns:thr',
'http://purl.org/syndication/thread/1.0'
);
$this->addNamespace(
'xmlns:georss',
'http://www.georss.org/georss'
);
$this->addNamespace(
'xmlns:activity',
'http://activitystrea.ms/spec/1.0/'
);
// XXX: What should the uri be?
$this->addNamespace(
'xmlns:ostatus',
'http://ostatus.org/schema/1.0'
);
}
/**
* Add more than one Notice to the feed
*
* @param mixed $notices an array of Notice objects or handle
*
*/
function addEntryFromNotices($notices)
{
if (is_array($notices)) {
foreach ($notices as $notice) {
$this->addEntryFromNotice($notice);
}
} else {
while ($notices->fetch()) {
$this->addEntryFromNotice($notices);
}
}
}
/**
* Add a single Notice to the feed
*
* @param Notice $notice a Notice to add
*/
function addEntryFromNotice($notice)
{
$this->addEntryRaw($notice->asAtomEntry());
}
}

View File

@ -47,6 +47,8 @@ class Cache
var $_items = array(); var $_items = array();
static $_inst = null; static $_inst = null;
const COMPRESSED = 1;
/** /**
* Singleton constructor * Singleton constructor
* *
@ -133,7 +135,7 @@ class Cache
* *
* @param string $key The key to use for lookups * @param string $key The key to use for lookups
* @param string $value The value to store * @param string $value The value to store
* @param integer $flag Flags to use, mostly ignored * @param integer $flag Flags to use, may include Cache::COMPRESSED
* @param integer $expiry Expiry value, mostly ignored * @param integer $expiry Expiry value, mostly ignored
* *
* @return boolean success flag * @return boolean success flag

View File

@ -88,6 +88,7 @@ $default =
'stomp_manual_failover' => true, // if multiple servers are listed, treat them as separate (enqueue on one randomly, listen on all) 'stomp_manual_failover' => true, // if multiple servers are listed, treat them as separate (enqueue on one randomly, listen on all)
'monitor' => null, // URL to monitor ping endpoint (work in progress) 'monitor' => null, // URL to monitor ping endpoint (work in progress)
'softlimit' => '90%', // total size or % of memory_limit at which to restart queue threads gracefully 'softlimit' => '90%', // total size or % of memory_limit at which to restart queue threads gracefully
'spawndelay' => 1, // Wait at least N seconds between (re)spawns of child processes to avoid slamming the queue server with subscription startup
'debug_memory' => false, // true to spit memory usage to log 'debug_memory' => false, // true to spit memory usage to log
'inboxes' => true, // true to do inbox distribution & output queueing from in background via 'distrib' queue 'inboxes' => true, // true to do inbox distribution & output queueing from in background via 'distrib' queue
), ),
@ -144,9 +145,11 @@ $default =
'invite' => 'invite' =>
array('enabled' => true), array('enabled' => true),
'tag' => 'tag' =>
array('dropoff' => 864000.0), array('dropoff' => 864000.0, # controls weighting based on age
'cutoff' => 86400 * 90), # only look at notices posted in last 90 days
'popular' => 'popular' =>
array('dropoff' => 864000.0), array('dropoff' => 864000.0, # controls weighting based on age
'cutoff' => 86400 * 90), # only look at notices favorited in last 90 days
'daemon' => 'daemon' =>
array('piddir' => '/var/run', array('piddir' => '/var/run',
'user' => false, 'user' => false,

View File

@ -56,6 +56,7 @@ class ErrorAction extends Action
$this->code = $code; $this->code = $code;
$this->message = $message; $this->message = $message;
$this->minimal = StatusNet::isApi();
// XXX: hack alert: usually we aren't going to // XXX: hack alert: usually we aren't going to
// call this page directly, but because it's // call this page directly, but because it's
@ -102,7 +103,14 @@ class ErrorAction extends Action
function showPage() function showPage()
{ {
parent::showPage(); if ($this->minimal) {
// Even more minimal -- we're in a machine API
// and don't want to flood the output.
$this->extraHeaders();
$this->showContent();
} else {
parent::showPage();
}
// We don't want to have any more output after this // We don't want to have any more output after this
exit(); exit();

View File

@ -59,6 +59,7 @@ class GroupTagCloudSection extends TagCloudSection
function getTags() function getTags()
{ {
$weightexpr = common_sql_weight('notice_tag.created', common_config('tag', 'dropoff')); $weightexpr = common_sql_weight('notice_tag.created', common_config('tag', 'dropoff'));
// @fixme should we use the cutoff too? Doesn't help with indexing per-group.
$names = $this->group->getAliases(); $names = $this->group->getAliases();

View File

@ -81,12 +81,13 @@ class HTTPResponse extends HTTP_Request2_Response
} }
/** /**
* Check if the response is OK, generally a 200 status code. * Check if the response is OK, generally a 200 or other 2xx status code.
* @return bool * @return bool
*/ */
function isOk() function isOk()
{ {
return ($this->getStatus() == 200); $status = $this->getStatus();
return ($status >= 200 && $status < 300);
} }
} }

View File

@ -213,6 +213,7 @@ class MysqlSchema extends Schema
$sql .= "); "; $sql .= "); ";
common_log(LOG_INFO, $sql);
$res = $this->conn->query($sql); $res = $this->conn->query($sql);
if (PEAR::isError($res)) { if (PEAR::isError($res)) {

View File

@ -90,20 +90,47 @@ class OAuthClient
/** /**
* Gets a request token from the given url * Gets a request token from the given url
* *
* @param string $url OAuth endpoint for grabbing request tokens * @param string $url OAuth endpoint for grabbing request tokens
* @param string $callback authorized request token callback
* *
* @return OAuthToken $token the request token * @return OAuthToken $token the request token
*/ */
function getRequestToken($url) function getRequestToken($url, $callback = null)
{ {
$response = $this->oAuthGet($url); $params = null;
if (!is_null($callback)) {
$params['oauth_callback'] = $callback;
}
$response = $this->oAuthGet($url, $params);
$arr = array(); $arr = array();
parse_str($response, $arr); parse_str($response, $arr);
if (isset($arr['oauth_token']) && isset($arr['oauth_token_secret'])) {
$token = new OAuthToken($arr['oauth_token'], @$arr['oauth_token_secret']); $token = $arr['oauth_token'];
$secret = $arr['oauth_token_secret'];
$confirm = $arr['oauth_callback_confirmed'];
if (isset($token) && isset($secret)) {
$token = new OAuthToken($token, $secret);
if (isset($confirm)) {
if ($confirm == 'true') {
common_debug('Twitter bridge - callback confirmed.');
return $token;
} else {
throw new OAuthClientException(
'Callback was not confirmed by Twitter.'
);
}
}
return $token; return $token;
} else { } else {
throw new OAuthClientException(); throw new OAuthClientException(
'Could not get a request token from Twitter.'
);
} }
} }
@ -113,49 +140,64 @@ class OAuthClient
* *
* @param string $url endpoint for authorizing request tokens * @param string $url endpoint for authorizing request tokens
* @param OAuthToken $request_token the request token to be authorized * @param OAuthToken $request_token the request token to be authorized
* @param string $oauth_callback optional callback url
* *
* @return string $authorize_url the url to redirect to * @return string $authorize_url the url to redirect to
*/ */
function getAuthorizeLink($url, $request_token, $oauth_callback = null) function getAuthorizeLink($url, $request_token)
{ {
$authorize_url = $url . '?oauth_token=' . $authorize_url = $url . '?oauth_token=' .
$request_token->key; $request_token->key;
if (isset($oauth_callback)) {
$authorize_url .= '&oauth_callback=' . urlencode($oauth_callback);
}
return $authorize_url; return $authorize_url;
} }
/** /**
* Fetches an access token * Fetches an access token
* *
* @param string $url OAuth endpoint for exchanging authorized request tokens * @param string $url OAuth endpoint for exchanging authorized request tokens
* for access tokens * for access tokens
* @param string $verifier 1.0a verifier
* *
* @return OAuthToken $token the access token * @return OAuthToken $token the access token
*/ */
function getAccessToken($url) function getAccessToken($url, $verifier = null)
{ {
$response = $this->oAuthPost($url); $params = array();
parse_str($response);
$token = new OAuthToken($oauth_token, $oauth_token_secret); if (!is_null($verifier)) {
return $token; $params['oauth_verifier'] = $verifier;
}
$response = $this->oAuthPost($url, $params);
$arr = array();
parse_str($response, $arr);
$token = $arr['oauth_token'];
$secret = $arr['oauth_token_secret'];
if (isset($token) && isset($secret)) {
$token = new OAuthToken($token, $secret);
return $token;
} else {
throw new OAuthClientException(
'Could not get a access token from Twitter.'
);
}
} }
/** /**
* Use HTTP GET to make a signed OAuth request * Use HTTP GET to make a signed OAuth requesta
* *
* @param string $url OAuth endpoint * @param string $url OAuth request token endpoint
* @param array $params additional parameters
* *
* @return mixed the request * @return mixed the request
*/ */
function oAuthGet($url) function oAuthGet($url, $params = null)
{ {
$request = OAuthRequest::from_consumer_and_token($this->consumer, $request = OAuthRequest::from_consumer_and_token($this->consumer,
$this->token, 'GET', $url, null); $this->token, 'GET', $url, $params);
$request->sign_request($this->sha1_method, $request->sign_request($this->sha1_method,
$this->consumer, $this->token); $this->consumer, $this->token);

View File

@ -65,7 +65,7 @@ class StatusNetOAuthDataStore extends OAuthDataStore
{ {
$n = new Nonce(); $n = new Nonce();
$n->consumer_key = $consumer->key; $n->consumer_key = $consumer->key;
$n->ts = $timestamp; $n->ts = common_sql_date($timestamp);
$n->nonce = $nonce; $n->nonce = $nonce;
if ($n->find(true)) { if ($n->find(true)) {
return true; return true;
@ -362,7 +362,6 @@ class StatusNetOAuthDataStore extends OAuthDataStore
array('is_local' => Notice::REMOTE_OMB, array('is_local' => Notice::REMOTE_OMB,
'uri' => $omb_notice->getIdentifierURI())); 'uri' => $omb_notice->getIdentifierURI()));
} }
/** /**

View File

@ -59,6 +59,7 @@ class PersonalTagCloudSection extends TagCloudSection
function getTags() function getTags()
{ {
$weightexpr = common_sql_weight('notice_tag.created', common_config('tag', 'dropoff')); $weightexpr = common_sql_weight('notice_tag.created', common_config('tag', 'dropoff'));
// @fixme should we use the cutoff too? Doesn't help with indexing per-user.
$qry = 'SELECT notice_tag.tag, '. $qry = 'SELECT notice_tag.tag, '.
$weightexpr . ' as weight ' . $weightexpr . ' as weight ' .

View File

@ -59,12 +59,15 @@ class PopularNoticeSection extends NoticeSection
} }
} }
$weightexpr = common_sql_weight('fave.modified', common_config('popular', 'dropoff')); $weightexpr = common_sql_weight('fave.modified', common_config('popular', 'dropoff'));
$cutoff = sprintf("fave.modified > '%s'",
common_sql_date(time() - common_config('popular', 'cutoff')));
$qry = "SELECT notice.*, $weightexpr as weight "; $qry = "SELECT notice.*, $weightexpr as weight ";
if(isset($tag)) { if(isset($tag)) {
$qry .= 'FROM notice_tag, notice JOIN fave ON notice.id = fave.notice_id ' . $qry .= 'FROM notice_tag, notice JOIN fave ON notice.id = fave.notice_id ' .
"WHERE notice.id = notice_tag.notice_id and '$tag' = notice_tag.tag"; "WHERE $cutoff and notice.id = notice_tag.notice_id and '$tag' = notice_tag.tag";
} else { } else {
$qry .= 'FROM notice JOIN fave ON notice.id = fave.notice_id'; $qry .= 'FROM notice JOIN fave ON notice.id = fave.notice_id ' .
"WHERE $cutoff";
} }
$qry .= ' GROUP BY notice.id,notice.profile_id,notice.content,notice.uri,' . $qry .= ' GROUP BY notice.id,notice.profile_id,notice.content,notice.uri,' .
'notice.rendered,notice.url,notice.created,notice.modified,' . 'notice.rendered,notice.url,notice.created,notice.modified,' .

View File

@ -157,17 +157,17 @@ abstract class QueueManager extends IoManager
/** /**
* Encode an object for queued storage. * Encode an object for queued storage.
* *
* @param mixed $object * @param mixed $item
* @return string * @return string
*/ */
protected function encode($object) protected function encode($item)
{ {
return serialize($object); return serialize($object);
} }
/** /**
* Decode an object from queued storage. * Decode an object from queued storage.
* Accepts back-compat notice reference entries and strings for now. * Accepts notice reference entries and serialized items.
* *
* @param string * @param string
* @return mixed * @return mixed

View File

@ -57,5 +57,6 @@ class Right
const EMAILONREPLY = 'emailonreply'; const EMAILONREPLY = 'emailonreply';
const EMAILONSUBSCRIBE = 'emailonsubscribe'; const EMAILONSUBSCRIBE = 'emailonsubscribe';
const EMAILONFAVE = 'emailonfave'; const EMAILONFAVE = 'emailonfave';
const MAKEGROUPADMIN = 'makegroupadmin';
} }

View File

@ -83,6 +83,7 @@ abstract class SpawningDaemon extends Daemon
$this->log(LOG_INFO, "Spawned thread $i as pid $pid"); $this->log(LOG_INFO, "Spawned thread $i as pid $pid");
$children[$i] = $pid; $children[$i] = $pid;
} }
sleep(common_config('queue', 'spawndelay'));
} }
$this->log(LOG_INFO, "Waiting for children to complete."); $this->log(LOG_INFO, "Waiting for children to complete.");
@ -111,6 +112,7 @@ abstract class SpawningDaemon extends Daemon
$this->log(LOG_INFO, "Respawned thread $i as pid $pid"); $this->log(LOG_INFO, "Respawned thread $i as pid $pid");
$children[$i] = $pid; $children[$i] = $pid;
} }
sleep(common_config('queue', 'spawndelay'));
} else { } else {
$this->log(LOG_INFO, "Thread $i pid $pid exited with status $exitCode; closing out thread."); $this->log(LOG_INFO, "Thread $i pid $pid exited with status $exitCode; closing out thread.");
} }

View File

@ -30,6 +30,7 @@ global $config, $_server, $_path;
class StatusNet class StatusNet
{ {
protected static $have_config; protected static $have_config;
protected static $is_api;
/** /**
* Configure and instantiate a plugin into the current configuration. * Configure and instantiate a plugin into the current configuration.
@ -147,6 +148,16 @@ class StatusNet
return self::$have_config; return self::$have_config;
} }
public function isApi()
{
return self::$is_api;
}
public function setApi($mode)
{
self::$is_api = $mode;
}
/** /**
* Build default configuration array * Build default configuration array
* @return array * @return array

View File

@ -107,9 +107,10 @@ class StompQueueManager extends QueueManager
$message .= ':' . $param; $message .= ':' . $param;
} }
$this->_connect(); $this->_connect();
$result = $this->_send($this->control, $con = $this->cons[$this->defaultIdx];
$message, $result = $con->send($this->control,
array ('created' => common_sql_now())); $message,
array ('created' => common_sql_now()));
if ($result) { if ($result) {
$this->_log(LOG_INFO, "Sent control ping to queue daemons: $message"); $this->_log(LOG_INFO, "Sent control ping to queue daemons: $message");
return true; return true;
@ -368,17 +369,10 @@ class StompQueueManager extends QueueManager
foreach ($this->cons as $i => $con) { foreach ($this->cons as $i => $con) {
if ($con) { if ($con) {
$this->rollback($i); $this->rollback($i);
$con->unsubscribe($this->control); $con->disconnect();
$this->cons[$i] = null;
} }
} }
if ($this->sites) {
foreach ($this->sites as $server) {
StatusNet::init($server);
$this->doUnsubscribe();
}
} else {
$this->doUnsubscribe();
}
return true; return true;
} }
@ -555,26 +549,14 @@ class StompQueueManager extends QueueManager
} }
$host = $this->cons[$idx]->getServer(); $host = $this->cons[$idx]->getServer();
if (is_numeric($frame->body)) { $item = $this->decode($frame->body);
$id = intval($frame->body); if (empty($item)) {
$info = "notice $id posted at {$frame->headers['created']} in queue $queue from $host"; $this->_log(LOG_ERR, "Skipping empty or deleted item in queue $queue from $host");
return true;
$notice = Notice::staticGet('id', $id);
if (empty($notice)) {
$this->_log(LOG_WARNING, "Skipping missing $info");
$this->ack($idx, $frame);
$this->commit($idx);
$this->begin($idx);
$this->stats('badnotice', $queue);
return false;
}
$item = $notice;
} else {
// @fixme should we serialize, or json, or what here?
$info = "string posted at {$frame->headers['created']} in queue $queue from $host";
$item = $frame->body;
} }
$info = $this->logrep($item) . " posted at " .
$frame->headers['created'] . " in queue $queue from $host";
$this->_log(LOG_DEBUG, "Dequeued $info");
$handler = $this->getHandler($queue); $handler = $this->getHandler($queue);
if (!$handler) { if (!$handler) {

View File

@ -367,7 +367,8 @@ function common_current_user()
if ($_cur === false) { if ($_cur === false) {
if (isset($_REQUEST[session_name()]) || (isset($_SESSION['userid']) && $_SESSION['userid'])) { if (isset($_COOKIE[session_name()]) || isset($_GET[session_name()])
|| (isset($_SESSION['userid']) && $_SESSION['userid'])) {
common_ensure_session(); common_ensure_session();
$id = isset($_SESSION['userid']) ? $_SESSION['userid'] : false; $id = isset($_SESSION['userid']) ? $_SESSION['userid'] : false;
if ($id) { if ($id) {
@ -658,6 +659,9 @@ function common_valid_profile_tag($str)
function common_at_link($sender_id, $nickname) function common_at_link($sender_id, $nickname)
{ {
$sender = Profile::staticGet($sender_id); $sender = Profile::staticGet($sender_id);
if (!$sender) {
return $nickname;
}
$recipient = common_relative_profile($sender, common_canonical_nickname($nickname)); $recipient = common_relative_profile($sender, common_canonical_nickname($nickname));
if ($recipient) { if ($recipient) {
$user = User::staticGet('id', $recipient->id); $user = User::staticGet('id', $recipient->id);
@ -687,7 +691,7 @@ function common_group_link($sender_id, $nickname)
{ {
$sender = Profile::staticGet($sender_id); $sender = Profile::staticGet($sender_id);
$group = User_group::getForNickname($nickname); $group = User_group::getForNickname($nickname);
if ($group && $sender->isMember($group)) { if ($sender && $group && $sender->isMember($group)) {
$attrs = array('href' => $group->permalink(), $attrs = array('href' => $group->permalink(),
'class' => 'url'); 'class' => 'url');
if (!empty($group->fullname)) { if (!empty($group->fullname)) {

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-14 20:05+0000\n"
"PO-Revision-Date: 2010-02-02 19:20:02+0000\n" "PO-Revision-Date: 2010-02-14 20:05:58+0000\n"
"Language-Team: Arabic\n" "Language-Team: Arabic\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62476); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ar\n" "X-Language-Code: ar\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -26,14 +26,12 @@ msgid "Access"
msgstr "نفاذ" msgstr "نفاذ"
#: actions/accessadminpanel.php:65 #: actions/accessadminpanel.php:65
#, fuzzy
msgid "Site access settings" msgid "Site access settings"
msgstr "اذف إعدادت الموقع" msgstr "إعدادات الوصول إلى الموقع"
#: actions/accessadminpanel.php:158 #: actions/accessadminpanel.php:158
#, fuzzy
msgid "Registration" msgid "Registration"
msgstr "سجّل" msgstr "تسجيل"
#: actions/accessadminpanel.php:161 #: actions/accessadminpanel.php:161
msgid "Private" msgid "Private"
@ -72,9 +70,8 @@ msgid "Save"
msgstr "أرسل" msgstr "أرسل"
#: actions/accessadminpanel.php:189 #: actions/accessadminpanel.php:189
#, fuzzy
msgid "Save access settings" msgid "Save access settings"
msgstr "اذف إعدادت الموقع" msgstr "حفظ إعدادت الوصول"
#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/all.php:63 actions/public.php:97 actions/replies.php:92
#: actions/showfavorites.php:137 actions/tag.php:51 #: actions/showfavorites.php:137 actions/tag.php:51
@ -165,8 +162,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "أنت والأصدقاء" msgstr "أنت والأصدقاء"
#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #: actions/allrss.php:119 actions/apitimelinefriends.php:119
#: actions/apitimelinehome.php:122 #: actions/apitimelinehome.php:120
#, php-format #, php-format
msgid "Updates from %1$s and friends on %2$s!" msgid "Updates from %1$s and friends on %2$s!"
msgstr "" msgstr ""
@ -176,22 +173,23 @@ msgstr ""
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:182 actions/apitimelinehome.php:184
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:194 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "لم يتم العثور على وسيلة API." msgstr "لم يتم العثور على وسيلة API."
@ -279,7 +277,7 @@ msgstr "رسائل مباشرة من %s"
#: actions/apidirectmessage.php:93 #: actions/apidirectmessage.php:93
#, php-format #, php-format
msgid "All the direct messages sent from %s" msgid "All the direct messages sent from %s"
msgstr "" msgstr "جميع الرسائل المرسلة من %s"
#: actions/apidirectmessage.php:101 #: actions/apidirectmessage.php:101
#, php-format #, php-format
@ -352,7 +350,7 @@ msgstr ""
#: actions/apifriendshipsshow.php:134 #: actions/apifriendshipsshow.php:134
msgid "Could not determine source user." msgid "Could not determine source user."
msgstr "" msgstr "تعذّر تحديد المستخدم المصدر."
#: actions/apifriendshipsshow.php:142 #: actions/apifriendshipsshow.php:142
msgid "Could not find target user." msgid "Could not find target user."
@ -368,7 +366,7 @@ msgstr ""
#: actions/newgroup.php:130 actions/profilesettings.php:238 #: actions/newgroup.php:130 actions/profilesettings.php:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "" msgstr "الاسم المستعار مستخدم بالفعل. جرّب اسمًا آخرًا."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:218 #: actions/newgroup.php:133 actions/profilesettings.php:218
@ -405,7 +403,7 @@ msgstr ""
#: actions/newgroup.php:159 #: actions/newgroup.php:159
#, php-format #, php-format
msgid "Too many aliases! Maximum %d." msgid "Too many aliases! Maximum %d."
msgstr "" msgstr "كنيات كيرة! العدد الأقصى هو %d."
#: actions/apigroupcreate.php:264 actions/editgroup.php:224 #: actions/apigroupcreate.php:264 actions/editgroup.php:224
#: actions/newgroup.php:168 #: actions/newgroup.php:168
@ -445,7 +443,7 @@ msgstr "لم يمكن ضم المستخدم %1$s إلى المجموعة %2$s."
#: actions/apigroupleave.php:114 #: actions/apigroupleave.php:114
msgid "You are not a member of this group." msgid "You are not a member of this group."
msgstr "" msgstr "لست عضوًا في هذه المجموعة"
#: actions/apigroupleave.php:124 actions/leavegroup.php:119 #: actions/apigroupleave.php:124 actions/leavegroup.php:119
#, php-format #, php-format
@ -551,7 +549,8 @@ msgstr "الحساب"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "الاسم المستعار" msgstr "الاسم المستعار"
@ -626,7 +625,7 @@ msgstr "نسق غير مدعوم."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "" msgstr ""
#: actions/apitimelinefavorites.php:120 #: actions/apitimelinefavorites.php:117
#, php-format #, php-format
msgid "%1$s updates favorited by %2$s / %2$s." msgid "%1$s updates favorited by %2$s / %2$s."
msgstr "" msgstr ""
@ -637,7 +636,7 @@ msgstr ""
msgid "%s timeline" msgid "%s timeline"
msgstr "مسار %s الزمني" msgstr "مسار %s الزمني"
#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 #: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126
#: actions/userrss.php:92 #: actions/userrss.php:92
#, php-format #, php-format
msgid "Updates from %1$s on %2$s!" msgid "Updates from %1$s on %2$s!"
@ -653,12 +652,12 @@ msgstr ""
msgid "%1$s updates that reply to updates from %2$s / %3$s." msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "" msgstr ""
#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #: actions/apitimelinepublic.php:111 actions/publicrss.php:103
#, php-format #, php-format
msgid "%s public timeline" msgid "%s public timeline"
msgstr "مسار %s الزمني العام" msgstr "مسار %s الزمني العام"
#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #: actions/apitimelinepublic.php:115 actions/publicrss.php:105
#, php-format #, php-format
msgid "%s updates from everyone!" msgid "%s updates from everyone!"
msgstr "" msgstr ""
@ -668,7 +667,7 @@ msgstr ""
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "كرر إلى %s" msgstr "كرر إلى %s"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, php-format #, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "تكرارات %s" msgstr "تكرارات %s"
@ -678,7 +677,7 @@ msgstr "تكرارات %s"
msgid "Notices tagged with %s" msgid "Notices tagged with %s"
msgstr "الإشعارات الموسومة ب%s" msgstr "الإشعارات الموسومة ب%s"
#: actions/apitimelinetag.php:108 actions/tagrss.php:64 #: actions/apitimelinetag.php:104 actions/tagrss.php:64
#, php-format #, php-format
msgid "Updates tagged with %1$s on %2$s!" msgid "Updates tagged with %1$s on %2$s!"
msgstr "" msgstr ""
@ -738,7 +737,7 @@ msgstr "الأصلي"
msgid "Preview" msgid "Preview"
msgstr "عاين" msgstr "عاين"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "احذف" msgstr "احذف"
@ -802,7 +801,7 @@ msgstr "لا تمنع هذا المستخدم"
msgid "Yes" msgid "Yes"
msgstr "نعم" msgstr "نعم"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "امنع هذا المستخدم" msgstr "امنع هذا المستخدم"
@ -1215,7 +1214,7 @@ msgstr ""
msgid "Could not update group." msgid "Could not update group."
msgstr "تعذر تحديث المجموعة." msgstr "تعذر تحديث المجموعة."
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:423
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "تعذّر إنشاء الكنى." msgstr "تعذّر إنشاء الكنى."
@ -1406,7 +1405,7 @@ msgstr "هذا الإشعار مفضلة مسبقًا!"
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "ألغِ تفضيل المفضلة" msgstr "ألغِ تفضيل المفضلة"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "إشعارات مشهورة" msgstr "إشعارات مشهورة"
@ -1548,7 +1547,7 @@ msgstr ""
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "المستخدم ليس عضوًا في المجموعة." msgstr "المستخدم ليس عضوًا في المجموعة."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
msgid "Block user from group" msgid "Block user from group"
msgstr "امنع المستخدم من المجموعة" msgstr "امنع المستخدم من المجموعة"
@ -1643,19 +1642,19 @@ msgstr "قائمة بمستخدمي هذه المجموعة."
msgid "Admin" msgid "Admin"
msgstr "إداري" msgstr "إداري"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "امنع" msgstr "امنع"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "اجعل هذا المستخدم إداريًا" msgstr "اجعل هذا المستخدم إداريًا"
@ -2003,21 +2002,21 @@ msgid ""
"(%%action.register%%) a new account." "(%%action.register%%) a new account."
msgstr "" msgstr ""
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "" msgstr ""
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, php-format #, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "" msgstr ""
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, php-format #, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "لم يمكن الحصول على تسجيل العضوية ل%1$s في المجموعة %2$s." msgstr "لم يمكن الحصول على تسجيل العضوية ل%1$s في المجموعة %2$s."
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, php-format #, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "لم يمكن جعل %1$s إداريا للمجموعة %2$s." msgstr "لم يمكن جعل %1$s إداريا للمجموعة %2$s."
@ -2212,8 +2211,8 @@ msgstr "نوع المحتوى "
msgid "Only " msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "ليس نسق بيانات مدعوم." msgstr "ليس نسق بيانات مدعوم."
@ -2542,7 +2541,7 @@ msgstr "إعدادات الملف الشخصي"
#: actions/profilesettings.php:71 #: actions/profilesettings.php:71
msgid "" msgid ""
"You can update your personal profile info here so people know more about you." "You can update your personal profile info here so people know more about you."
msgstr "" msgstr "بإمكانك تحديث بيانات ملفك الشخصي ليعرف عنك الناس أكثر."
#: actions/profilesettings.php:99 #: actions/profilesettings.php:99
msgid "Profile information" msgid "Profile information"
@ -2565,12 +2564,12 @@ msgstr "الصفحة الرئيسية"
#: actions/profilesettings.php:117 actions/register.php:455 #: actions/profilesettings.php:117 actions/register.php:455
msgid "URL of your homepage, blog, or profile on another site" msgid "URL of your homepage, blog, or profile on another site"
msgstr "" msgstr "مسار صفحتك الرئيسية أو مدونتك أو ملفك الشخصي على موقع آخر"
#: actions/profilesettings.php:122 actions/register.php:461 #: actions/profilesettings.php:122 actions/register.php:461
#, php-format #, php-format
msgid "Describe yourself and your interests in %d chars" msgid "Describe yourself and your interests in %d chars"
msgstr "" msgstr "تكلم عن نفسك واهتمامتك في %d حرف"
#: actions/profilesettings.php:125 actions/register.php:464 #: actions/profilesettings.php:125 actions/register.php:464
msgid "Describe yourself and your interests" msgid "Describe yourself and your interests"
@ -2582,14 +2581,14 @@ msgstr "السيرة"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "الموقع" msgstr "الموقع"
#: actions/profilesettings.php:134 actions/register.php:473 #: actions/profilesettings.php:134 actions/register.php:473
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "" msgstr "مكان تواجدك، على سبيل المثال \"المدينة، الولاية (أو المنطقة)، الدولة\""
#: actions/profilesettings.php:138 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices" msgid "Share my current location when posting notices"
@ -2605,6 +2604,7 @@ msgstr "الوسوم"
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
"سِم نفسك (حروف وأرقام و \"-\" و \".\" و \"_\")، افصلها بفاصلة (',') أو مسافة."
#: actions/profilesettings.php:151 actions/siteadminpanel.php:280 #: actions/profilesettings.php:151 actions/siteadminpanel.php:280
msgid "Language" msgid "Language"
@ -2625,7 +2625,7 @@ msgstr "ما المنطقة الزمنية التي تتواجد فيها عاد
#: actions/profilesettings.php:167 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr "اشترك تلقائيًا بأي شخص يشترك بي (يفضل أن يستخدم لغير البشر)"
#: actions/profilesettings.php:228 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, php-format #, php-format
@ -2760,7 +2760,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "سحابة الوسوم" msgstr "سحابة الوسوم"
@ -3163,76 +3163,81 @@ msgstr "اذف إعدادت الموقع"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "يجب أن تكون مسجل الدخول لرؤية تطبيق." msgstr "يجب أن تكون مسجل الدخول لرؤية تطبيق."
#: actions/showapplication.php:158 #: actions/showapplication.php:157
msgid "Application profile" msgid "Application profile"
msgstr "" msgstr ""
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "أيقونة" msgstr "أيقونة"
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
msgid "Name" msgid "Name"
msgstr "الاسم" msgstr "الاسم"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
msgid "Organization" msgid "Organization"
msgstr "المنظمة" msgstr "المنظمة"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "الوصف" msgstr "الوصف"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "إحصاءات" msgstr "إحصاءات"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "اسمح بالمسار" msgstr "اسمح بالمسار"
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3301,12 +3306,12 @@ msgid "Group profile"
msgstr "ملف المجموعة الشخصي" msgstr "ملف المجموعة الشخصي"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "مسار" msgstr "مسار"
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "ملاحظة" msgstr "ملاحظة"
@ -3845,7 +3850,8 @@ msgstr ""
msgid "User profile" msgid "User profile"
msgstr "ملف المستخدم الشخصي" msgstr "ملف المستخدم الشخصي"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "صورة" msgstr "صورة"
@ -3900,7 +3906,7 @@ msgstr ""
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "" msgstr ""
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -3984,84 +3990,84 @@ msgid ""
"click “Reject”." "click “Reject”."
msgstr "" msgstr ""
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "الرخصة" msgstr "الرخصة"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "اقبل" msgstr "اقبل"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "اشترك بهذا المستخدم" msgstr "اشترك بهذا المستخدم"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "ارفض" msgstr "ارفض"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "ارفض هذا الاشتراك" msgstr "ارفض هذا الاشتراك"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "لا طلب استيثاق!" msgstr "لا طلب استيثاق!"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "" msgstr ""
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
"with the sites instructions for details on how to authorize the " "with the sites instructions for details on how to authorize the "
"subscription. Your subscription token is:" "subscription. Your subscription token is:"
msgstr "" msgstr ""
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "رُفض الاشتراك" msgstr "رُفض الاشتراك"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
"with the sites instructions for details on how to fully reject the " "with the sites instructions for details on how to fully reject the "
"subscription." "subscription."
msgstr "" msgstr ""
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, php-format #, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "" msgstr ""
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, php-format #, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "" msgstr ""
@ -4238,7 +4244,7 @@ msgstr "مشكلة أثناء حفظ الإشعار."
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "" msgstr ""
#: classes/Notice.php:1231 #: classes/Notice.php:1271
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "آر تي @%1$s %2$s" msgstr "آر تي @%1$s %2$s"
@ -4248,11 +4254,11 @@ msgstr "آر تي @%1$s %2$s"
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "أهلا بكم في %1$s يا @%2$s!" msgstr "أهلا بكم في %1$s يا @%2$s!"
#: classes/User_group.php:380 #: classes/User_group.php:413
msgid "Could not create group." msgid "Could not create group."
msgstr "تعذّر إنشاء المجموعة." msgstr "تعذّر إنشاء المجموعة."
#: classes/User_group.php:409 #: classes/User_group.php:442
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "تعذّر ضبط عضوية المجموعة." msgstr "تعذّر ضبط عضوية المجموعة."
@ -4520,11 +4526,11 @@ msgstr "ضبط المسارات"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "ضبط التصميم" msgstr "ضبط التصميم"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5516,11 +5522,11 @@ msgstr "خطأ أثناء إدراج الملف الشخصي البعيد"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "ضاعف الإشعار" msgstr "ضاعف الإشعار"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "" msgstr ""
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "تعذّر إدراج اشتراك جديد." msgstr "تعذّر إدراج اشتراك جديد."
@ -5794,47 +5800,47 @@ msgstr "رسالة"
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:867 #: lib/util.php:871
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "قبل لحظات قليلة" msgstr "قبل لحظات قليلة"
#: lib/util.php:869 #: lib/util.php:873
msgid "about a minute ago" msgid "about a minute ago"
msgstr "قبل دقيقة تقريبًا" msgstr "قبل دقيقة تقريبًا"
#: lib/util.php:871 #: lib/util.php:875
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "" msgstr ""
#: lib/util.php:873 #: lib/util.php:877
msgid "about an hour ago" msgid "about an hour ago"
msgstr "قبل ساعة تقريبًا" msgstr "قبل ساعة تقريبًا"
#: lib/util.php:875 #: lib/util.php:879
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "" msgstr ""
#: lib/util.php:877 #: lib/util.php:881
msgid "about a day ago" msgid "about a day ago"
msgstr "قبل يوم تقريبا" msgstr "قبل يوم تقريبا"
#: lib/util.php:879 #: lib/util.php:883
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "" msgstr ""
#: lib/util.php:881 #: lib/util.php:885
msgid "about a month ago" msgid "about a month ago"
msgstr "قبل شهر تقريبًا" msgstr "قبل شهر تقريبًا"
#: lib/util.php:883 #: lib/util.php:887
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "" msgstr ""
#: lib/util.php:885 #: lib/util.php:889
msgid "about a year ago" msgid "about a year ago"
msgstr "قبل سنة تقريبًا" msgstr "قبل سنة تقريبًا"

File diff suppressed because it is too large Load Diff

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:20:09+0000\n" "PO-Revision-Date: 2010-02-11 08:14:17+0000\n"
"Language-Team: Bulgarian\n" "Language-Team: Bulgarian\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: bg\n" "X-Language-Code: bg\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -30,7 +30,6 @@ msgid "Site access settings"
msgstr "Запазване настройките на сайта" msgstr "Запазване настройките на сайта"
#: actions/accessadminpanel.php:158 #: actions/accessadminpanel.php:158
#, fuzzy
msgid "Registration" msgid "Registration"
msgstr "Регистриране" msgstr "Регистриране"
@ -107,9 +106,9 @@ msgid "No such user."
msgstr "Няма такъв потребител" msgstr "Няма такъв потребител"
#: actions/all.php:84 #: actions/all.php:84
#, fuzzy, php-format #, php-format
msgid "%1$s and friends, page %2$d" msgid "%1$s and friends, page %2$d"
msgstr "Блокирани за %s, страница %d" msgstr "%1$s и приятели, страница %2$d"
#: actions/all.php:86 actions/all.php:167 actions/allrss.php:115 #: actions/all.php:86 actions/all.php:167 actions/allrss.php:115
#: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115 #: actions/apitimelinefriends.php:114 actions/apitimelinehome.php:115
@ -175,22 +174,23 @@ msgstr "Бележки от %1$s и приятели в %2$s."
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "Не е открит методът в API." msgstr "Не е открит методът в API."
@ -424,9 +424,9 @@ msgstr "Неправилен псевдоним: \"%s\""
#: actions/apigroupcreate.php:273 actions/editgroup.php:228 #: actions/apigroupcreate.php:273 actions/editgroup.php:228
#: actions/newgroup.php:172 #: actions/newgroup.php:172
#, fuzzy, php-format #, php-format
msgid "Alias \"%s\" already in use. Try another one." msgid "Alias \"%s\" already in use. Try another one."
msgstr "Опитайте друг псевдоним, този вече е зает." msgstr "Псевдонимът \"%s\" вече е зает. Опитайте друг."
#: actions/apigroupcreate.php:286 actions/editgroup.php:234 #: actions/apigroupcreate.php:286 actions/editgroup.php:234
#: actions/newgroup.php:178 #: actions/newgroup.php:178
@ -561,7 +561,8 @@ msgstr "Сметка"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Псевдоним" msgstr "Псевдоним"
@ -751,7 +752,7 @@ msgstr "Оригинал"
msgid "Preview" msgid "Preview"
msgstr "Преглед" msgstr "Преглед"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "Изтриване" msgstr "Изтриване"
@ -815,7 +816,7 @@ msgstr "Да не се блокира този потребител"
msgid "Yes" msgid "Yes"
msgstr "Да" msgstr "Да"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "Блокиране на потребителя" msgstr "Блокиране на потребителя"
@ -900,9 +901,8 @@ msgid "Couldn't delete email confirmation."
msgstr "Грешка при изтриване потвърждението по е-поща." msgstr "Грешка при изтриване потвърждението по е-поща."
#: actions/confirmaddress.php:144 #: actions/confirmaddress.php:144
#, fuzzy
msgid "Confirm address" msgid "Confirm address"
msgstr "Потвърждаване на адреса" msgstr "Потвърждаване на адрес"
#: actions/confirmaddress.php:159 #: actions/confirmaddress.php:159
#, php-format #, php-format
@ -1449,7 +1449,7 @@ msgstr "Тази бележка вече е отбелязана като люб
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "Нелюбимо" msgstr "Нелюбимо"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "Популярни бележки" msgstr "Популярни бележки"
@ -1596,7 +1596,7 @@ msgstr "Потребителят вече е блокиран за групат
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Потребителят не членува в групата." msgstr "Потребителят не членува в групата."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
#, fuzzy #, fuzzy
msgid "Block user from group" msgid "Block user from group"
msgstr "Блокиране на потребителя" msgstr "Блокиране на потребителя"
@ -1699,20 +1699,20 @@ msgstr "Списък с потребителите в тази група."
msgid "Admin" msgid "Admin"
msgstr "Настройки" msgstr "Настройки"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Блокиране" msgstr "Блокиране"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
#, fuzzy #, fuzzy
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "За да редактирате групата, трябва да сте й администратор." msgstr "За да редактирате групата, трябва да сте й администратор."
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "" msgstr ""
@ -2055,9 +2055,9 @@ msgid "You are not a member of that group."
msgstr "Не членувате в тази група." msgstr "Не членувате в тази група."
#: actions/leavegroup.php:127 #: actions/leavegroup.php:127
#, fuzzy, php-format #, php-format
msgid "%1$s left group %2$s" msgid "%1$s left group %2$s"
msgstr "%s напусна групата %s" msgstr "%1$s напусна групата %2$s"
#: actions/login.php:80 actions/otp.php:62 actions/register.php:137 #: actions/login.php:80 actions/otp.php:62 actions/register.php:137
msgid "Already logged in." msgid "Already logged in."
@ -2110,21 +2110,21 @@ msgstr ""
"Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) " "Влезте с име и парола. Нямате такива? [Регистрирайте](%%action.register%%) "
"нова сметка или опитайте с [OpenID](%%action.openidlogin%%). " "нова сметка или опитайте с [OpenID](%%action.openidlogin%%). "
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "" msgstr ""
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "Потребителят вече е блокиран за групата." msgstr "Потребителят вече е блокиран за групата."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "Грешка при проследяване — потребителят не е намерен." msgstr "Грешка при проследяване — потребителят не е намерен."
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "За да редактирате групата, трябва да сте й администратор." msgstr "За да редактирате групата, трябва да сте й администратор."
@ -2327,8 +2327,8 @@ msgstr "вид съдържание "
msgid "Only " msgid "Only "
msgstr "Само " msgstr "Само "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Неподдържан формат на данните" msgstr "Неподдържан формат на данните"
@ -2341,7 +2341,6 @@ msgid "Notice Search"
msgstr "Търсене на бележки" msgstr "Търсене на бележки"
#: actions/othersettings.php:60 #: actions/othersettings.php:60
#, fuzzy
msgid "Other settings" msgid "Other settings"
msgstr "Други настройки" msgstr "Други настройки"
@ -2617,7 +2616,6 @@ msgid "When to use SSL"
msgstr "Кога да се използва SSL" msgstr "Кога да се използва SSL"
#: actions/pathsadminpanel.php:335 #: actions/pathsadminpanel.php:335
#, fuzzy
msgid "SSL server" msgid "SSL server"
msgstr "SSL-сървър" msgstr "SSL-сървър"
@ -2708,7 +2706,7 @@ msgstr "За мен"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Местоположение" msgstr "Местоположение"
@ -2884,7 +2882,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -3093,7 +3091,7 @@ msgid ""
msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон." msgstr " освен тези лични данни: парола, е-поща, месинджър, телефон."
#: actions/register.php:538 #: actions/register.php:538
#, fuzzy, php-format #, php-format
msgid "" msgid ""
"Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may " "Congratulations, %1$s! And welcome to %%%%site.name%%%%. From here, you may "
"want to...\n" "want to...\n"
@ -3110,9 +3108,9 @@ msgid ""
"\n" "\n"
"Thanks for signing up and we hope you enjoy using this service." "Thanks for signing up and we hope you enjoy using this service."
msgstr "" msgstr ""
"Поздравления, %s! И добре дошли в %%%%site.name%%%%! от тук можете да...\n" "Поздравления, %1$s! И добре дошли в %%%%site.name%%%%! от тук можете да...\n"
"\n" "\n"
"* Отидете в [профила си](%s) и да публикувате първата си бележка.\n" "* Отидете в [профила си](%2$s) и да публикувате първата си бележка.\n"
"* Добавите [адрес в Jabber/GTalk](%%%%action.imsettings%%%%), за да " "* Добавите [адрес в Jabber/GTalk](%%%%action.imsettings%%%%), за да "
"изпращате бележки от програмата си за моментни съобщения.\n" "изпращате бележки от програмата си за моментни съобщения.\n"
"* [Търсите хора](%%%%action.peoplesearch%%%%), които познавате или с които " "* [Търсите хора](%%%%action.peoplesearch%%%%), които познавате или с които "
@ -3319,84 +3317,87 @@ msgstr "Запазване настройките на сайта"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "За напуснете група, трябва да сте влезли." msgstr "За напуснете група, трябва да сте влезли."
#: actions/showapplication.php:158 #: actions/showapplication.php:157
#, fuzzy #, fuzzy
msgid "Application profile" msgid "Application profile"
msgstr "Бележката няма профил" msgstr "Бележката няма профил"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "" msgstr "Икона"
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
#, fuzzy
msgid "Name" msgid "Name"
msgstr "Псевдоним" msgstr "Име"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
#, fuzzy
msgid "Organization" msgid "Organization"
msgstr "Страниране" msgstr "Организация"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "Описание" msgstr "Описание"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "Статистики" msgstr "Статистики"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
#, fuzzy #, fuzzy
msgid "Authorize URL" msgid "Authorize URL"
msgstr "Автор" msgstr "Автор"
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Наистина ли искате да изтриете тази бележка?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
msgstr "Любими бележки на %s" msgstr "Любими бележки на %1$s, страница %2$d"
#: actions/showfavorites.php:132 #: actions/showfavorites.php:132
msgid "Could not retrieve favorite notices." msgid "Could not retrieve favorite notices."
@ -3457,18 +3458,18 @@ msgid "Group profile"
msgstr "Профил на групата" msgstr "Профил на групата"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "" msgstr "URL"
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "Бележка" msgstr "Бележка"
#: actions/showgroup.php:284 lib/groupeditform.php:184 #: actions/showgroup.php:284 lib/groupeditform.php:184
msgid "Aliases" msgid "Aliases"
msgstr "" msgstr "Псевдоними"
#: actions/showgroup.php:293 #: actions/showgroup.php:293
msgid "Group actions" msgid "Group actions"
@ -3654,9 +3655,9 @@ msgid "You must have a valid contact email address."
msgstr "Адресът на е-поща за контакт е задължителен" msgstr "Адресът на е-поща за контакт е задължителен"
#: actions/siteadminpanel.php:158 #: actions/siteadminpanel.php:158
#, fuzzy, php-format #, php-format
msgid "Unknown language \"%s\"." msgid "Unknown language \"%s\"."
msgstr "Непознат език \"%s\"" msgstr "Непознат език \"%s\"."
#: actions/siteadminpanel.php:165 #: actions/siteadminpanel.php:165
msgid "Invalid snapshot report URL." msgid "Invalid snapshot report URL."
@ -4017,7 +4018,8 @@ msgstr "Етикети"
msgid "User profile" msgid "User profile"
msgstr "Потребителски профил" msgstr "Потребителски профил"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "Снимка" msgstr "Снимка"
@ -4076,7 +4078,7 @@ msgstr "Сървърът не е върнал адрес на профила."
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "Отписване" msgstr "Отписване"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4167,37 +4169,37 @@ msgstr ""
"Проверете тези детайли и се уверете, че искате да се абонирате за бележките " "Проверете тези детайли и се уверете, че искате да се абонирате за бележките "
"на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)." "на този потребител. Ако не искате абонамента, натиснете \"Cancel\" (Отказ)."
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "Лиценз" msgstr "Лиценз"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Приемане" msgstr "Приемане"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Абониране за този потребител" msgstr "Абониране за този потребител"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "Охвърляне" msgstr "Охвърляне"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
#, fuzzy #, fuzzy
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "Абонаменти на %s" msgstr "Абонаменти на %s"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "Няма заявка за одобрение." msgstr "Няма заявка за одобрение."
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "Абонаментът е одобрен" msgstr "Абонаментът е одобрен"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
@ -4207,11 +4209,11 @@ msgstr ""
"Абонаментът е одобрен, но не е зададен callback URL. За да завършите " "Абонаментът е одобрен, но не е зададен callback URL. За да завършите "
"одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:" "одобряването, проверете инструкциите на сайта. Вашият token за абонамент е:"
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "Абонаментът е отказан" msgstr "Абонаментът е отказан"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
@ -4221,37 +4223,37 @@ msgstr ""
"Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно " "Абонаментът е отказан, но не е зададен callback URL. За да откажете напълно "
"абонамента, проверете инструкциите на сайта." "абонамента, проверете инструкциите на сайта."
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, fuzzy, php-format #, fuzzy, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "Грешка при четене адреса на аватара '%s'" msgstr "Грешка при четене адреса на аватара '%s'"
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, fuzzy, php-format #, fuzzy, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "Грешен вид изображение за '%s'" msgstr "Грешен вид изображение за '%s'"
@ -4292,9 +4294,9 @@ msgid "Try [searching for groups](%%action.groupsearch%%) and joining them."
msgstr "" msgstr ""
#: actions/version.php:73 #: actions/version.php:73
#, fuzzy, php-format #, php-format
msgid "StatusNet %s" msgid "StatusNet %s"
msgstr "Статистики" msgstr "StatusNet %s"
#: actions/version.php:153 #: actions/version.php:153
#, php-format #, php-format
@ -4332,17 +4334,15 @@ msgstr ""
#: actions/version.php:189 #: actions/version.php:189
msgid "Plugins" msgid "Plugins"
msgstr "" msgstr "Приставки"
#: actions/version.php:196 lib/action.php:747 #: actions/version.php:196 lib/action.php:747
#, fuzzy
msgid "Version" msgid "Version"
msgstr "Сесии" msgstr "Версия"
#: actions/version.php:197 #: actions/version.php:197
#, fuzzy
msgid "Author(s)" msgid "Author(s)"
msgstr "Автор" msgstr "Автор(и)"
#: classes/File.php:144 #: classes/File.php:144
#, php-format #, php-format
@ -4442,7 +4442,7 @@ msgstr "Проблем при записване на бележката."
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Грешка в базата от данни — отговор при вмъкването: %s" msgstr "Грешка в базата от данни — отговор при вмъкването: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -4734,11 +4734,11 @@ msgstr "Настройка на пътищата"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "Настройка на оформлението" msgstr "Настройка на оформлението"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5410,11 +5410,9 @@ msgstr ""
"Може да смените адреса и настройките за уведомяване по е-поща на %8$s\n" "Може да смените адреса и настройките за уведомяване по е-поща на %8$s\n"
#: lib/mail.php:258 #: lib/mail.php:258
#, fuzzy, php-format #, php-format
msgid "Bio: %s" msgid "Bio: %s"
msgstr "" msgstr "Биография: %s"
"Биография: %s\n"
"\n"
#: lib/mail.php:286 #: lib/mail.php:286
#, php-format #, php-format
@ -5741,12 +5739,12 @@ msgstr "Грешка при вмъкване на отдалечен профи
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Изтриване на бележката" msgstr "Изтриване на бележката"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
#, fuzzy #, fuzzy
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "Потребителят е забранил да се абонирате за него." msgstr "Потребителят е забранил да се абонирате за него."
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Грешка при добавяне на нов абонамент." msgstr "Грешка при добавяне на нов абонамент."
@ -6031,47 +6029,47 @@ msgstr "Съобщение"
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "преди няколко секунди" msgstr "преди няколко секунди"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "преди около минута" msgstr "преди около минута"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "преди около %d минути" msgstr "преди около %d минути"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "преди около час" msgstr "преди около час"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "преди около %d часа" msgstr "преди около %d часа"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "преди около ден" msgstr "преди около ден"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "преди около %d дни" msgstr "преди около %d дни"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "преди около месец" msgstr "преди около месец"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "преди около %d месеца" msgstr "преди около %d месеца"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "преди около година" msgstr "преди около година"

View File

@ -1,5 +1,6 @@
# Translation of StatusNet to Catalan # Translation of StatusNet to Catalan
# #
# Author@translatewiki.net: Aleator
# Author@translatewiki.net: McDutchie # Author@translatewiki.net: McDutchie
# Author@translatewiki.net: Toniher # Author@translatewiki.net: Toniher
# -- # --
@ -9,12 +10,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:20:13+0000\n" "PO-Revision-Date: 2010-02-11 08:14:20+0000\n"
"Language-Team: Catalan\n" "Language-Team: Catalan\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ca\n" "X-Language-Code: ca\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -179,22 +180,23 @@ msgstr "Actualitzacions de %1$s i amics a %2$s!"
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "No s'ha trobat el mètode API!" msgstr "No s'ha trobat el mètode API!"
@ -573,7 +575,8 @@ msgstr "Compte"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Sobrenom" msgstr "Sobrenom"
@ -765,7 +768,7 @@ msgstr "Original"
msgid "Preview" msgid "Preview"
msgstr "Vista prèvia" msgstr "Vista prèvia"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "Suprimeix" msgstr "Suprimeix"
@ -831,7 +834,7 @@ msgstr "No bloquis l'usuari"
msgid "Yes" msgid "Yes"
msgstr "Sí" msgstr "Sí"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "Bloquejar aquest usuari" msgstr "Bloquejar aquest usuari"
@ -1466,7 +1469,7 @@ msgstr "Aquesta nota ja és favorita."
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "Desfavoritar favorit" msgstr "Desfavoritar favorit"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "Notificacions populars" msgstr "Notificacions populars"
@ -1611,7 +1614,7 @@ msgstr "Un usuari t'ha bloquejat."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "L'usuari no és membre del grup." msgstr "L'usuari no és membre del grup."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
msgid "Block user from group" msgid "Block user from group"
msgstr "Bloca l'usuari del grup" msgstr "Bloca l'usuari del grup"
@ -1712,19 +1715,19 @@ msgstr "La llista dels usuaris d'aquest grup."
msgid "Admin" msgid "Admin"
msgstr "Admin" msgstr "Admin"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Bloca" msgstr "Bloca"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Fes l'usuari un administrador del grup" msgstr "Fes l'usuari un administrador del grup"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "Fes-lo administrador" msgstr "Fes-lo administrador"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Fes l'usuari administrador" msgstr "Fes l'usuari administrador"
@ -2129,21 +2132,21 @@ msgstr ""
"tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova " "tens un nom d'usuari? [Crea](%%action.register%%) un nou compte o prova "
"[OpenID] (%%action.openidlogin%%)." "[OpenID] (%%action.openidlogin%%)."
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "Només un administrador poc fer a un altre usuari administrador." msgstr "Només un administrador poc fer a un altre usuari administrador."
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "%s ja és un administrador del grup «%s»." msgstr "%s ja és un administrador del grup «%s»."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "No s'ha pogut eliminar l'usuari %s del grup %s" msgstr "No s'ha pogut eliminar l'usuari %s del grup %s"
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "No es pot fer %s un administrador del grup %s" msgstr "No es pot fer %s un administrador del grup %s"
@ -2347,8 +2350,8 @@ msgstr "tipus de contingut "
msgid "Only " msgid "Only "
msgstr "Només " msgstr "Només "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Format de data no suportat." msgstr "Format de data no suportat."
@ -2734,7 +2737,7 @@ msgstr "Biografia"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Ubicació" msgstr "Ubicació"
@ -2916,7 +2919,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Núvol d'etiquetes" msgstr "Núvol d'etiquetes"
@ -3363,79 +3366,84 @@ msgstr "Desa els paràmetres del lloc"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "Has d'haver entrat per a poder marxar d'un grup." msgstr "Has d'haver entrat per a poder marxar d'un grup."
#: actions/showapplication.php:158 #: actions/showapplication.php:157
#, fuzzy #, fuzzy
msgid "Application profile" msgid "Application profile"
msgstr "Avís sense perfil" msgstr "Avís sense perfil"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
msgid "Name" msgid "Name"
msgstr "Nom" msgstr "Nom"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
#, fuzzy #, fuzzy
msgid "Organization" msgid "Organization"
msgstr "Paginació" msgstr "Paginació"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "Descripció" msgstr "Descripció"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "Estadístiques" msgstr "Estadístiques"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
#, fuzzy #, fuzzy
msgid "Authorize URL" msgid "Authorize URL"
msgstr "Autoria" msgstr "Autoria"
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "N'estàs segur que vols eliminar aquesta notificació?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3500,12 +3508,12 @@ msgid "Group profile"
msgstr "Perfil del grup" msgstr "Perfil del grup"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "URL" msgstr "URL"
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "Avisos" msgstr "Avisos"
@ -4070,7 +4078,8 @@ msgstr "Etiqueta %s"
msgid "User profile" msgid "User profile"
msgstr "Perfil de l'usuari" msgstr "Perfil de l'usuari"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "Foto" msgstr "Foto"
@ -4132,7 +4141,7 @@ msgstr "No id en el perfil sol·licitat."
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "No subscrit" msgstr "No subscrit"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4220,36 +4229,36 @@ msgstr ""
"subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als " "subscriure't als avisos d'aquest usuari. Si no has demanat subscriure't als "
"avisos de ningú, clica \"Cancel·lar\"." "avisos de ningú, clica \"Cancel·lar\"."
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "Llicència" msgstr "Llicència"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Accepta" msgstr "Accepta"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Subscriure's a aquest usuari" msgstr "Subscriure's a aquest usuari"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "Rebutja" msgstr "Rebutja"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "Rebutja la subscripció" msgstr "Rebutja la subscripció"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "Cap petició d'autorització!" msgstr "Cap petició d'autorització!"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "Subscripció autoritzada" msgstr "Subscripció autoritzada"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
@ -4260,11 +4269,11 @@ msgstr ""
"Llegeix de nou les instruccions per a saber com autoritzar la subscripció. " "Llegeix de nou les instruccions per a saber com autoritzar la subscripció. "
"El teu identificador de subscripció és:" "El teu identificador de subscripció és:"
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "Subscripció rebutjada" msgstr "Subscripció rebutjada"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
@ -4274,37 +4283,37 @@ msgstr ""
"S'ha rebutjat la subscripció, però no s'ha enviat un URL de retorn. Llegeix " "S'ha rebutjat la subscripció, però no s'ha enviat un URL de retorn. Llegeix "
"de nou les instruccions per a saber com rebutjar la subscripció completament." "de nou les instruccions per a saber com rebutjar la subscripció completament."
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, fuzzy, php-format #, fuzzy, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "No es pot llegir l'URL de l'avatar '%s'" msgstr "No es pot llegir l'URL de l'avatar '%s'"
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, fuzzy, php-format #, fuzzy, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "Tipus d'imatge incorrecte per a '%s'" msgstr "Tipus d'imatge incorrecte per a '%s'"
@ -4494,7 +4503,7 @@ msgstr "Problema en guardar l'avís."
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Error de BD en inserir resposta: %s" msgstr "Error de BD en inserir resposta: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -4782,11 +4791,11 @@ msgstr "Configuració dels camins"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "Configuració del disseny" msgstr "Configuració del disseny"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5111,8 +5120,8 @@ msgstr "No sou membre de cap grup."
#: lib/command.php:714 #: lib/command.php:714
msgid "You are a member of this group:" msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:" msgid_plural "You are a member of these groups:"
msgstr[0] "No sou un membre del grup." msgstr[0] "Sou un membre d'aquest grup:"
msgstr[1] "No sou un membre del grup." msgstr[1] "Sou un membre d'aquests grups:"
#: lib/command.php:728 #: lib/command.php:728
msgid "" msgid ""
@ -5790,11 +5799,11 @@ msgstr "Error en inserir perfil remot"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Eliminar nota." msgstr "Eliminar nota."
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "Se us ha banejat la subscripció." msgstr "Se us ha banejat la subscripció."
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "No s'ha pogut inserir una nova subscripció." msgstr "No s'ha pogut inserir una nova subscripció."
@ -6076,47 +6085,47 @@ msgstr "Missatge"
msgid "Moderate" msgid "Moderate"
msgstr "Modera" msgstr "Modera"
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "fa pocs segons" msgstr "fa pocs segons"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "fa un minut" msgstr "fa un minut"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "fa %d minuts" msgstr "fa %d minuts"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "fa una hora" msgstr "fa una hora"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "fa %d hores" msgstr "fa %d hores"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "fa un dia" msgstr "fa un dia"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "fa %d dies" msgstr "fa %d dies"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "fa un mes" msgstr "fa un mes"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "fa %d mesos" msgstr "fa %d mesos"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "fa un any" msgstr "fa un any"

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:20:16+0000\n" "PO-Revision-Date: 2010-02-11 08:14:23+0000\n"
"Language-Team: Czech\n" "Language-Team: Czech\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: cs\n" "X-Language-Code: cs\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -180,22 +180,23 @@ msgstr ""
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "Potvrzující kód nebyl nalezen" msgstr "Potvrzující kód nebyl nalezen"
@ -570,7 +571,8 @@ msgstr "O nás"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Přezdívka" msgstr "Přezdívka"
@ -765,7 +767,7 @@ msgstr ""
msgid "Preview" msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "Odstranit" msgstr "Odstranit"
@ -832,7 +834,7 @@ msgstr "Žádný takový uživatel."
msgid "Yes" msgid "Yes"
msgstr "Ano" msgstr "Ano"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "Zablokovat tohoto uživatele" msgstr "Zablokovat tohoto uživatele"
@ -1462,7 +1464,7 @@ msgstr ""
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "" msgstr ""
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
#, fuzzy #, fuzzy
msgid "Popular notices" msgid "Popular notices"
@ -1617,7 +1619,7 @@ msgstr "Uživatel nemá profil."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Neodeslal jste nám profil" msgstr "Neodeslal jste nám profil"
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
#, fuzzy #, fuzzy
msgid "Block user from group" msgid "Block user from group"
msgstr "Žádný takový uživatel." msgstr "Žádný takový uživatel."
@ -1721,19 +1723,19 @@ msgstr ""
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "" msgstr ""
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "" msgstr ""
@ -2104,21 +2106,21 @@ msgstr ""
"[Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%" "[Registrovat](%%action.register%%) nový účet, nebo vyzkoušejte [OpenID](%%"
"action.openidlogin%%)." "action.openidlogin%%)."
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "" msgstr ""
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "Uživatel nemá profil." msgstr "Uživatel nemá profil."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "Nelze vytvořit OpenID z: %s" msgstr "Nelze vytvořit OpenID z: %s"
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "Uživatel nemá profil." msgstr "Uživatel nemá profil."
@ -2317,8 +2319,8 @@ msgstr "Připojit"
msgid "Only " msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -2711,7 +2713,7 @@ msgstr "O mě"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Umístění" msgstr "Umístění"
@ -2889,7 +2891,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -3312,80 +3314,84 @@ msgstr "Nastavení"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "" msgstr ""
#: actions/showapplication.php:158 #: actions/showapplication.php:157
#, fuzzy #, fuzzy
msgid "Application profile" msgid "Application profile"
msgstr "Sdělení nemá profil" msgstr "Sdělení nemá profil"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
#, fuzzy #, fuzzy
msgid "Name" msgid "Name"
msgstr "Přezdívka" msgstr "Přezdívka"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
#, fuzzy #, fuzzy
msgid "Organization" msgid "Organization"
msgstr "Umístění" msgstr "Umístění"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
#, fuzzy #, fuzzy
msgid "Description" msgid "Description"
msgstr "Odběry" msgstr "Odběry"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "Statistiky" msgstr "Statistiky"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "" msgstr ""
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3451,12 +3457,12 @@ msgid "Group profile"
msgstr "Žádné takové oznámení." msgstr "Žádné takové oznámení."
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "" msgstr ""
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "Poznámka" msgstr "Poznámka"
@ -4014,7 +4020,8 @@ msgstr ""
msgid "User profile" msgid "User profile"
msgstr "Uživatel nemá profil." msgstr "Uživatel nemá profil."
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "" msgstr ""
@ -4076,7 +4083,7 @@ msgstr "Nebylo vráceno žádné URL profilu od servu."
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "Odhlásit" msgstr "Odhlásit"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4167,38 +4174,38 @@ msgstr ""
"sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, " "sdělení tohoto uživatele. Pokud ne, ask to subscribe to somone's notices, "
"klikněte na \"Zrušit\"" "klikněte na \"Zrušit\""
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "Licence" msgstr "Licence"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Přijmout" msgstr "Přijmout"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
#, fuzzy #, fuzzy
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Odběr autorizován" msgstr "Odběr autorizován"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "Odmítnout" msgstr "Odmítnout"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
#, fuzzy #, fuzzy
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "Všechny odběry" msgstr "Všechny odběry"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "Žádné potvrení!" msgstr "Žádné potvrení!"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "Odběr autorizován" msgstr "Odběr autorizován"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
@ -4209,11 +4216,11 @@ msgstr ""
"nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru " "nápovědě jak správně postupovat při potvrzování odběru. Váš řetězec odběru "
"je:" "je:"
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "Odběr odmítnut" msgstr "Odběr odmítnut"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
@ -4223,37 +4230,37 @@ msgstr ""
"Odebírání bylo zamítnuto, ale neprošla žádná callback adresa. Zkontrolujte v " "Odebírání bylo zamítnuto, ale neprošla žádná callback adresa. Zkontrolujte v "
"nápovědě jak správně postupovat při zamítání odběru" "nápovědě jak správně postupovat při zamítání odběru"
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, fuzzy, php-format #, fuzzy, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "Nelze přečíst adresu obrázku '%s'" msgstr "Nelze přečíst adresu obrázku '%s'"
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, fuzzy, php-format #, fuzzy, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "Neplatný typ obrázku pro '%s'" msgstr "Neplatný typ obrázku pro '%s'"
@ -4437,7 +4444,7 @@ msgstr "Problém při ukládání sdělení"
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Chyba v DB při vkládání odpovědi: %s" msgstr "Chyba v DB při vkládání odpovědi: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -4735,11 +4742,11 @@ msgstr "Potvrzení emailové adresy"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "Potvrzení emailové adresy" msgstr "Potvrzení emailové adresy"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5756,11 +5763,11 @@ msgstr "Chyba při vkládaní vzdáleného profilu"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Nové sdělení" msgstr "Nové sdělení"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "" msgstr ""
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Nelze vložit odebírání" msgstr "Nelze vložit odebírání"
@ -6049,47 +6056,47 @@ msgstr "Zpráva"
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "před pár sekundami" msgstr "před pár sekundami"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "asi před minutou" msgstr "asi před minutou"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "asi před %d minutami" msgstr "asi před %d minutami"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "asi před hodinou" msgstr "asi před hodinou"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "asi před %d hodinami" msgstr "asi před %d hodinami"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "asi přede dnem" msgstr "asi přede dnem"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "před %d dny" msgstr "před %d dny"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "asi před měsícem" msgstr "asi před měsícem"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "asi před %d mesíci" msgstr "asi před %d mesíci"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "asi před rokem" msgstr "asi před rokem"

View File

@ -3,6 +3,7 @@
# Author@translatewiki.net: Bavatar # Author@translatewiki.net: Bavatar
# Author@translatewiki.net: Lutzgh # Author@translatewiki.net: Lutzgh
# Author@translatewiki.net: March # Author@translatewiki.net: March
# Author@translatewiki.net: McDutchie
# Author@translatewiki.net: Pill # Author@translatewiki.net: Pill
# Author@translatewiki.net: Umherirrender # Author@translatewiki.net: Umherirrender
# -- # --
@ -12,12 +13,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:20:19+0000\n" "PO-Revision-Date: 2010-02-11 08:14:26+0000\n"
"Language-Team: German\n" "Language-Team: German\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n" "X-Language-Code: de\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -191,22 +192,23 @@ msgstr "Aktualisierungen von %1$s und Freunden auf %2$s!"
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "API-Methode nicht gefunden." msgstr "API-Methode nicht gefunden."
@ -572,7 +574,8 @@ msgstr "Konto"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Nutzername" msgstr "Nutzername"
@ -764,7 +767,7 @@ msgstr "Original"
msgid "Preview" msgid "Preview"
msgstr "Vorschau" msgstr "Vorschau"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "Löschen" msgstr "Löschen"
@ -829,7 +832,7 @@ msgstr "Diesen Benutzer freigeben"
msgid "Yes" msgid "Yes"
msgstr "Ja" msgstr "Ja"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "Diesen Benutzer blockieren" msgstr "Diesen Benutzer blockieren"
@ -1462,7 +1465,7 @@ msgstr "Diese Nachricht ist bereits ein Favorit!"
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "Aus Favoriten entfernen" msgstr "Aus Favoriten entfernen"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "Beliebte Nachrichten" msgstr "Beliebte Nachrichten"
@ -1604,7 +1607,7 @@ msgstr "Dieser Nutzer ist bereits von der Gruppe gesperrt"
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Nutzer ist kein Mitglied dieser Gruppe." msgstr "Nutzer ist kein Mitglied dieser Gruppe."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
msgid "Block user from group" msgid "Block user from group"
msgstr "Benutzerzugang zu der Gruppe blockieren" msgstr "Benutzerzugang zu der Gruppe blockieren"
@ -1703,19 +1706,19 @@ msgstr "Liste der Benutzer in dieser Gruppe."
msgid "Admin" msgid "Admin"
msgstr "Admin" msgstr "Admin"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Blockieren" msgstr "Blockieren"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Benutzer zu einem Admin dieser Gruppe ernennen" msgstr "Benutzer zu einem Admin dieser Gruppe ernennen"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "Zum Admin ernennen" msgstr "Zum Admin ernennen"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Diesen Benutzer zu einem Admin ernennen" msgstr "Diesen Benutzer zu einem Admin ernennen"
@ -2125,21 +2128,21 @@ msgstr ""
"Melde dich mit Nutzernamen und Passwort an. Du hast noch keinen Nutzernamen? " "Melde dich mit Nutzernamen und Passwort an. Du hast noch keinen Nutzernamen? "
"[Registriere](%%action.register%%) ein neues Konto." "[Registriere](%%action.register%%) ein neues Konto."
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "Nur Administratoren können andere Nutzer zu Administratoren ernennen." msgstr "Nur Administratoren können andere Nutzer zu Administratoren ernennen."
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "%s ist bereits ein Administrator der Gruppe „%s“." msgstr "%s ist bereits ein Administrator der Gruppe „%s“."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen" msgstr "Konnte Benutzer %s aus der Gruppe %s nicht entfernen"
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "Konnte %s nicht zum Administrator der Gruppe %s machen" msgstr "Konnte %s nicht zum Administrator der Gruppe %s machen"
@ -2344,8 +2347,8 @@ msgstr "Content-Typ "
msgid "Only " msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Kein unterstütztes Datenformat." msgstr "Kein unterstütztes Datenformat."
@ -2358,7 +2361,6 @@ msgid "Notice Search"
msgstr "Nachrichtensuche" msgstr "Nachrichtensuche"
#: actions/othersettings.php:60 #: actions/othersettings.php:60
#, fuzzy
msgid "Other settings" msgid "Other settings"
msgstr "Andere Einstellungen" msgstr "Andere Einstellungen"
@ -2391,9 +2393,8 @@ msgid "URL shortening service is too long (max 50 chars)."
msgstr "URL-Auto-Kürzungs-Dienst ist zu lang (max. 50 Zeichen)." msgstr "URL-Auto-Kürzungs-Dienst ist zu lang (max. 50 Zeichen)."
#: actions/otp.php:69 #: actions/otp.php:69
#, fuzzy
msgid "No user ID specified." msgid "No user ID specified."
msgstr "Keine Gruppe angegeben" msgstr "Keine Benutzer ID angegeben"
#: actions/otp.php:83 #: actions/otp.php:83
#, fuzzy #, fuzzy
@ -2416,9 +2417,9 @@ msgid "Login token expired."
msgstr "An Seite anmelden" msgstr "An Seite anmelden"
#: actions/outbox.php:58 #: actions/outbox.php:58
#, fuzzy, php-format #, php-format
msgid "Outbox for %1$s - page %2$d" msgid "Outbox for %1$s - page %2$d"
msgstr "Postausgang von %s" msgstr "Postausgang für %1$s - Seite %2$d"
#: actions/outbox.php:61 #: actions/outbox.php:61
#, php-format #, php-format
@ -2529,9 +2530,8 @@ msgid "Site"
msgstr "Seite" msgstr "Seite"
#: actions/pathsadminpanel.php:238 #: actions/pathsadminpanel.php:238
#, fuzzy
msgid "Server" msgid "Server"
msgstr "Wiederherstellung" msgstr "Server"
#: actions/pathsadminpanel.php:238 #: actions/pathsadminpanel.php:238
msgid "Site's server hostname." msgid "Site's server hostname."
@ -2614,9 +2614,8 @@ msgid "SSL"
msgstr "SSL" msgstr "SSL"
#: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294 #: actions/pathsadminpanel.php:323 actions/siteadminpanel.php:294
#, fuzzy
msgid "Never" msgid "Never"
msgstr "Wiederherstellung" msgstr "Nie"
#: actions/pathsadminpanel.php:324 #: actions/pathsadminpanel.php:324
msgid "Sometimes" msgid "Sometimes"
@ -2635,7 +2634,6 @@ msgid "When to use SSL"
msgstr "Wann soll SSL verwendet werden" msgstr "Wann soll SSL verwendet werden"
#: actions/pathsadminpanel.php:335 #: actions/pathsadminpanel.php:335
#, fuzzy
msgid "SSL server" msgid "SSL server"
msgstr "SSL-Server" msgstr "SSL-Server"
@ -2732,7 +2730,7 @@ msgstr "Biografie"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Aufenthaltsort" msgstr "Aufenthaltsort"
@ -2912,7 +2910,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Tag-Wolke" msgstr "Tag-Wolke"
@ -2960,7 +2958,7 @@ msgstr ""
#: actions/recoverpassword.php:191 #: actions/recoverpassword.php:191
msgid "Nickname or email address" msgid "Nickname or email address"
msgstr "" msgstr "Spitzname oder e-mail Adresse"
#: actions/recoverpassword.php:193 #: actions/recoverpassword.php:193
msgid "Your nickname on this server, or your registered email address." msgid "Your nickname on this server, or your registered email address."
@ -3224,20 +3222,16 @@ msgid "Couldnt get a request token."
msgstr "Konnte keinen Anfrage-Token bekommen." msgstr "Konnte keinen Anfrage-Token bekommen."
#: actions/repeat.php:57 #: actions/repeat.php:57
#, fuzzy
msgid "Only logged-in users can repeat notices." msgid "Only logged-in users can repeat notices."
msgstr "Nur der Benutzer selbst kann seinen Posteingang lesen." msgstr "Nur angemeldete Nutzer können Nachrichten wiederholen."
#: actions/repeat.php:64 actions/repeat.php:71 #: actions/repeat.php:64 actions/repeat.php:71
#, fuzzy
msgid "No notice specified." msgid "No notice specified."
msgstr "Kein Profil angegeben." msgstr "Keine Nachricht angegeen."
#: actions/repeat.php:76 #: actions/repeat.php:76
#, fuzzy
msgid "You can't repeat your own notice." msgid "You can't repeat your own notice."
msgstr "" msgstr "Du kannst deine eigene Nachricht nicht wiederholen."
"Du kannst dich nicht registrieren, wenn du die Lizenz nicht akzeptierst."
#: actions/repeat.php:90 #: actions/repeat.php:90
#, fuzzy #, fuzzy
@ -3261,9 +3255,9 @@ msgid "Replies to %s"
msgstr "Antworten an %s" msgstr "Antworten an %s"
#: actions/replies.php:127 #: actions/replies.php:127
#, fuzzy, php-format #, php-format
msgid "Replies to %1$s, page %2$d" msgid "Replies to %1$s, page %2$d"
msgstr "Antworten an %1$s auf %2$s!" msgstr "Antworten an %1$s, Seite %2$d"
#: actions/replies.php:144 #: actions/replies.php:144
#, php-format #, php-format
@ -3312,9 +3306,8 @@ msgid "Replies to %1$s on %2$s!"
msgstr "Antworten an %1$s auf %2$s!" msgstr "Antworten an %1$s auf %2$s!"
#: actions/rsd.php:146 actions/version.php:157 #: actions/rsd.php:146 actions/version.php:157
#, fuzzy
msgid "StatusNet" msgid "StatusNet"
msgstr "Status gelöscht." msgstr "StatusNet"
#: actions/sandbox.php:65 actions/unsandbox.php:65 #: actions/sandbox.php:65 actions/unsandbox.php:65
#, fuzzy #, fuzzy
@ -3362,80 +3355,85 @@ msgstr "Site-Einstellungen speichern"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "Du musst angemeldet sein, um aus einer Gruppe auszutreten." msgstr "Du musst angemeldet sein, um aus einer Gruppe auszutreten."
#: actions/showapplication.php:158 #: actions/showapplication.php:157
#, fuzzy #, fuzzy
msgid "Application profile" msgid "Application profile"
msgstr "Nachricht hat kein Profil" msgstr "Nachricht hat kein Profil"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
#, fuzzy #, fuzzy
msgid "Name" msgid "Name"
msgstr "Nutzername" msgstr "Nutzername"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
#, fuzzy #, fuzzy
msgid "Organization" msgid "Organization"
msgstr "Seitenerstellung" msgstr "Seitenerstellung"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "Beschreibung" msgstr "Beschreibung"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "Statistiken" msgstr "Statistiken"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
#, fuzzy #, fuzzy
msgid "Authorize URL" msgid "Authorize URL"
msgstr "Autor" msgstr "Autor"
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Bist du sicher, dass du diese Nachricht löschen möchtest?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3500,12 +3498,12 @@ msgid "Group profile"
msgstr "Gruppenprofil" msgstr "Gruppenprofil"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "URL" msgstr "URL"
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "Nachricht" msgstr "Nachricht"
@ -4078,7 +4076,8 @@ msgstr "Tag %s"
msgid "User profile" msgid "User profile"
msgstr "Benutzerprofil" msgstr "Benutzerprofil"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "Foto" msgstr "Foto"
@ -4141,7 +4140,7 @@ msgstr "Keine Profil-ID in der Anfrage."
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "Abbestellt" msgstr "Abbestellt"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, fuzzy, php-format #, fuzzy, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4236,38 +4235,38 @@ msgstr ""
"dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf " "dieses Nutzers abonnieren möchtest. Wenn du das nicht wolltest, klicke auf "
"„Abbrechen“." "„Abbrechen“."
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "Lizenz" msgstr "Lizenz"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Akzeptieren" msgstr "Akzeptieren"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
#, fuzzy #, fuzzy
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Abonniere diesen Benutzer" msgstr "Abonniere diesen Benutzer"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "Ablehnen" msgstr "Ablehnen"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
#, fuzzy #, fuzzy
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "%s Abonnements" msgstr "%s Abonnements"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "Keine Bestätigungsanfrage!" msgstr "Keine Bestätigungsanfrage!"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "Abonnement autorisiert" msgstr "Abonnement autorisiert"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
@ -4278,11 +4277,11 @@ msgstr ""
"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " "zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements "
"bestätigt werden. Dein Abonnement-Token ist:" "bestätigt werden. Dein Abonnement-Token ist:"
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "Abonnement abgelehnt" msgstr "Abonnement abgelehnt"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
@ -4293,37 +4292,37 @@ msgstr ""
"zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements " "zurückgegeben. Lies nochmal die Anweisungen der Site, wie Abonnements "
"vollständig abgelehnt werden. Dein Abonnement-Token ist:" "vollständig abgelehnt werden. Dein Abonnement-Token ist:"
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, php-format #, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "Konnte Avatar-URL nicht öffnen „%s“" msgstr "Konnte Avatar-URL nicht öffnen „%s“"
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, php-format #, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "Falscher Bildtyp für „%s“" msgstr "Falscher Bildtyp für „%s“"
@ -4512,7 +4511,7 @@ msgstr "Problem bei Speichern der Nachricht."
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Datenbankfehler beim Einfügen der Antwort: %s" msgstr "Datenbankfehler beim Einfügen der Antwort: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -4804,11 +4803,11 @@ msgstr "SMS-Konfiguration"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "SMS-Konfiguration" msgstr "SMS-Konfiguration"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5129,8 +5128,8 @@ msgstr "Du bist in keiner Gruppe Mitglied."
#: lib/command.php:714 #: lib/command.php:714
msgid "You are a member of this group:" msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:" msgid_plural "You are a member of these groups:"
msgstr[0] "Du bist kein Mitglied dieser Gruppe." msgstr[0] "Du bist Mitglied dieser Gruppe:"
msgstr[1] "Du bist kein Mitglied dieser Gruppe." msgstr[1] "Du bist Mitglied dieser Gruppen:"
#: lib/command.php:728 #: lib/command.php:728
msgid "" msgid ""
@ -5870,12 +5869,12 @@ msgstr "Fehler beim Einfügen des entfernten Profils"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Notiz löschen" msgstr "Notiz löschen"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
#, fuzzy #, fuzzy
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "Dieser Benutzer erlaubt dir nicht ihn zu abonnieren." msgstr "Dieser Benutzer erlaubt dir nicht ihn zu abonnieren."
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Konnte neues Abonnement nicht eintragen." msgstr "Konnte neues Abonnement nicht eintragen."
@ -6162,47 +6161,47 @@ msgstr "Nachricht"
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "vor wenigen Sekunden" msgstr "vor wenigen Sekunden"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "vor einer Minute" msgstr "vor einer Minute"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "vor %d Minuten" msgstr "vor %d Minuten"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "vor einer Stunde" msgstr "vor einer Stunde"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "vor %d Stunden" msgstr "vor %d Stunden"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "vor einem Tag" msgstr "vor einem Tag"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "vor %d Tagen" msgstr "vor %d Tagen"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "vor einem Monat" msgstr "vor einem Monat"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "vor %d Monaten" msgstr "vor %d Monaten"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "vor einem Jahr" msgstr "vor einem Jahr"

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:20:22+0000\n" "PO-Revision-Date: 2010-02-11 08:14:30+0000\n"
"Language-Team: Greek\n" "Language-Team: Greek\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: el\n" "X-Language-Code: el\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -175,22 +175,23 @@ msgstr ""
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!" msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!"
@ -559,7 +560,8 @@ msgstr "Λογαριασμός"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Ψευδώνυμο" msgstr "Ψευδώνυμο"
@ -748,7 +750,7 @@ msgstr ""
msgid "Preview" msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "Διαγραφή" msgstr "Διαγραφή"
@ -815,7 +817,7 @@ msgstr "Αδυναμία διαγραφής αυτού του μηνύματος
msgid "Yes" msgid "Yes"
msgstr "Ναι" msgstr "Ναι"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "" msgstr ""
@ -1445,7 +1447,7 @@ msgstr ""
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "" msgstr ""
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "" msgstr ""
@ -1592,7 +1594,7 @@ msgstr ""
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "" msgstr ""
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
msgid "Block user from group" msgid "Block user from group"
msgstr "" msgstr ""
@ -1690,20 +1692,20 @@ msgstr ""
msgid "Admin" msgid "Admin"
msgstr "Διαχειριστής" msgstr "Διαχειριστής"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "" msgstr ""
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
#, fuzzy #, fuzzy
msgid "Make Admin" msgid "Make Admin"
msgstr "Διαχειριστής" msgstr "Διαχειριστής"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "" msgstr ""
@ -2065,21 +2067,21 @@ msgstr ""
"ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή " "ακόμα; Κάντε [εγγραφή](%%action.register%%) για ένα νέο λογαριασμό ή "
"δοκιμάστε το [OpenID](%%action.openidlogin%%). " "δοκιμάστε το [OpenID](%%action.openidlogin%%). "
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "" msgstr ""
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, php-format #, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "" msgstr ""
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "Αδύνατη η αποθήκευση του προφίλ." msgstr "Αδύνατη η αποθήκευση του προφίλ."
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "Αδύνατη η αποθήκευση του προφίλ." msgstr "Αδύνατη η αποθήκευση του προφίλ."
@ -2275,8 +2277,8 @@ msgstr "Σύνδεση"
msgid "Only " msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -2660,7 +2662,7 @@ msgstr "Βιογραφικό"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Τοποθεσία" msgstr "Τοποθεσία"
@ -2838,7 +2840,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -3270,78 +3272,83 @@ msgstr "Ρυθμίσεις OpenID"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "" msgstr ""
#: actions/showapplication.php:158 #: actions/showapplication.php:157
msgid "Application profile" msgid "Application profile"
msgstr "" msgstr ""
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
#, fuzzy #, fuzzy
msgid "Name" msgid "Name"
msgstr "Ψευδώνυμο" msgstr "Ψευδώνυμο"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
#, fuzzy #, fuzzy
msgid "Organization" msgid "Organization"
msgstr "Προσκλήσεις" msgstr "Προσκλήσεις"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "Περιγραφή" msgstr "Περιγραφή"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "" msgstr ""
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "" msgstr ""
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυτό το μήνυμα;"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3407,12 +3414,12 @@ msgid "Group profile"
msgstr "Αδύνατη η αποθήκευση του προφίλ." msgstr "Αδύνατη η αποθήκευση του προφίλ."
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "" msgstr ""
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "" msgstr ""
@ -3961,7 +3968,8 @@ msgstr ""
msgid "User profile" msgid "User profile"
msgstr "Προφίλ χρήστη" msgstr "Προφίλ χρήστη"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "" msgstr ""
@ -4018,7 +4026,7 @@ msgstr ""
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "" msgstr ""
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4106,85 +4114,85 @@ msgid ""
"click “Reject”." "click “Reject”."
msgstr "" msgstr ""
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "" msgstr ""
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Αποδοχή" msgstr "Αποδοχή"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Γίνε συνδρομητής αυτού του χρήστη" msgstr "Γίνε συνδρομητής αυτού του χρήστη"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "" msgstr ""
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
#, fuzzy #, fuzzy
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "" msgstr ""
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "" msgstr ""
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
"with the sites instructions for details on how to authorize the " "with the sites instructions for details on how to authorize the "
"subscription. Your subscription token is:" "subscription. Your subscription token is:"
msgstr "" msgstr ""
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "" msgstr ""
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
"with the sites instructions for details on how to fully reject the " "with the sites instructions for details on how to fully reject the "
"subscription." "subscription."
msgstr "" msgstr ""
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, php-format #, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "" msgstr ""
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, php-format #, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "" msgstr ""
@ -4364,7 +4372,7 @@ msgstr ""
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Σφάλμα βάσης δεδομένων κατά την εισαγωγή απάντησης: %s" msgstr "Σφάλμα βάσης δεδομένων κατά την εισαγωγή απάντησης: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -4649,11 +4657,11 @@ msgstr "Επιβεβαίωση διεύθυνσης email"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "Επιβεβαίωση διεύθυνσης email" msgstr "Επιβεβαίωση διεύθυνσης email"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5639,11 +5647,11 @@ msgstr ""
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Διαγραφή μηνύματος" msgstr "Διαγραφή μηνύματος"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "" msgstr ""
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Απέτυχε η εισαγωγή νέας συνδρομής." msgstr "Απέτυχε η εισαγωγή νέας συνδρομής."
@ -5925,47 +5933,47 @@ msgstr "Μήνυμα"
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "" msgstr ""
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "" msgstr ""
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "" msgstr ""
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "" msgstr ""
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "" msgstr ""
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "" msgstr ""
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "" msgstr ""
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "" msgstr ""
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "" msgstr ""
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "" msgstr ""

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -10,8 +10,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:20:36+0000\n" "PO-Revision-Date: 2010-02-11 08:14:41+0000\n"
"Last-Translator: Ahmad Sufi Mahmudi\n" "Last-Translator: Ahmad Sufi Mahmudi\n"
"Language-Team: Persian\n" "Language-Team: Persian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -20,7 +20,7 @@ msgstr ""
"X-Language-Code: fa\n" "X-Language-Code: fa\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
#: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326 #: actions/accessadminpanel.php:54 lib/adminpanelaction.php:326
@ -184,22 +184,23 @@ msgstr "به روز رسانی از %1$ و دوستان در %2$"
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "رابط مورد نظر پیدا نشد." msgstr "رابط مورد نظر پیدا نشد."
@ -562,7 +563,8 @@ msgstr "حساب کاربری"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "نام کاربری" msgstr "نام کاربری"
@ -752,7 +754,7 @@ msgstr "اصلی"
msgid "Preview" msgid "Preview"
msgstr "پیش‌نمایش" msgstr "پیش‌نمایش"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "حذف" msgstr "حذف"
@ -820,7 +822,7 @@ msgstr "کاربر را مسدود نکن"
msgid "Yes" msgid "Yes"
msgstr "بله" msgstr "بله"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "کاربر را مسدود کن" msgstr "کاربر را مسدود کن"
@ -1449,7 +1451,7 @@ msgstr "این پیام هم اکنون دوست داشتنی شده است."
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "دوست ندارم" msgstr "دوست ندارم"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "آگهی‌های محبوب" msgstr "آگهی‌های محبوب"
@ -1595,7 +1597,7 @@ msgstr "هم اکنون دسترسی کاربر به گروه مسدود شده
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "کاربر عضو گروه نیست." msgstr "کاربر عضو گروه نیست."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
msgid "Block user from group" msgid "Block user from group"
msgstr "دسترسی کاربر به گروه را مسدود کن" msgstr "دسترسی کاربر به گروه را مسدود کن"
@ -1691,19 +1693,19 @@ msgstr "یک فهرست از کاربران در این گروه"
msgid "Admin" msgid "Admin"
msgstr "مدیر" msgstr "مدیر"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "بازداشتن" msgstr "بازداشتن"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "کاربر یک مدیر گروه شود" msgstr "کاربر یک مدیر گروه شود"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "مدیر شود" msgstr "مدیر شود"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "این کاربر یک مدیر شود" msgstr "این کاربر یک مدیر شود"
@ -2078,21 +2080,21 @@ msgstr ""
"با نام‌کاربری و گذزواژه‌ی خود وارد شوید. نام‌کاربری ندارید؟ یک نام‌کاربری [ثبت ]" "با نام‌کاربری و گذزواژه‌ی خود وارد شوید. نام‌کاربری ندارید؟ یک نام‌کاربری [ثبت ]"
"(%%action.register%%) کنید." "(%%action.register%%) کنید."
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "فقط یک مدیر می‌تواند کاربر دیگری را مدیر کند." msgstr "فقط یک مدیر می‌تواند کاربر دیگری را مدیر کند."
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "%s از قبل مدیر گروه %s بود." msgstr "%s از قبل مدیر گروه %s بود."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "نمی‌توان اطلاعات عضویت %s را در گروه %s به دست آورد." msgstr "نمی‌توان اطلاعات عضویت %s را در گروه %s به دست آورد."
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "نمی‌توان %s را مدیر گروه %s کرد." msgstr "نمی‌توان %s را مدیر گروه %s کرد."
@ -2299,8 +2301,8 @@ msgstr "نوع محتوا "
msgid "Only " msgid "Only "
msgstr " فقط" msgstr " فقط"
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "یک قالب دادهٔ پشتیبانی‌شده نیست." msgstr "یک قالب دادهٔ پشتیبانی‌شده نیست."
@ -2681,7 +2683,7 @@ msgstr "شرح‌حال"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "موقعیت" msgstr "موقعیت"
@ -2853,7 +2855,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -3268,80 +3270,85 @@ msgstr ""
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "برای ترک یک گروه، شما باید وارد شده باشید." msgstr "برای ترک یک گروه، شما باید وارد شده باشید."
#: actions/showapplication.php:158 #: actions/showapplication.php:157
#, fuzzy #, fuzzy
msgid "Application profile" msgid "Application profile"
msgstr "ابن خبر ذخیره ای ندارد ." msgstr "ابن خبر ذخیره ای ندارد ."
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
#, fuzzy #, fuzzy
msgid "Name" msgid "Name"
msgstr "نام کاربری" msgstr "نام کاربری"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
#, fuzzy #, fuzzy
msgid "Organization" msgid "Organization"
msgstr "صفحه بندى" msgstr "صفحه بندى"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "آمار" msgstr "آمار"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
#, fuzzy #, fuzzy
msgid "Authorize URL" msgid "Authorize URL"
msgstr "مؤلف" msgstr "مؤلف"
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "آیا اطمینان دارید که می‌خواهید این پیام را پاک کنید؟"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3406,12 +3413,12 @@ msgid "Group profile"
msgstr "" msgstr ""
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "" msgstr ""
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "" msgstr ""
@ -3961,7 +3968,8 @@ msgstr ""
msgid "User profile" msgid "User profile"
msgstr "پروفایل کاربر" msgstr "پروفایل کاربر"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "" msgstr ""
@ -4016,7 +4024,7 @@ msgstr ""
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "" msgstr ""
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4100,84 +4108,84 @@ msgid ""
"click “Reject”." "click “Reject”."
msgstr "" msgstr ""
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "لیسانس" msgstr "لیسانس"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "پذیرفتن" msgstr "پذیرفتن"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "تصویب این کاریر" msgstr "تصویب این کاریر"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "رد کردن" msgstr "رد کردن"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "" msgstr ""
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "" msgstr ""
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "" msgstr ""
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
"with the sites instructions for details on how to authorize the " "with the sites instructions for details on how to authorize the "
"subscription. Your subscription token is:" "subscription. Your subscription token is:"
msgstr "" msgstr ""
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "" msgstr ""
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
"with the sites instructions for details on how to fully reject the " "with the sites instructions for details on how to fully reject the "
"subscription." "subscription."
msgstr "" msgstr ""
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, php-format #, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "" msgstr ""
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, php-format #, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "" msgstr ""
@ -4361,7 +4369,7 @@ msgstr "مشکل در ذخیره کردن آگهی."
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "" msgstr ""
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -4639,11 +4647,11 @@ msgstr ""
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "پیکره بندی اصلی سایت" msgstr "پیکره بندی اصلی سایت"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5630,11 +5638,11 @@ msgstr ""
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "" msgstr ""
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "" msgstr ""
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "" msgstr ""
@ -5909,47 +5917,47 @@ msgstr "پیام"
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "چند ثانیه پیش" msgstr "چند ثانیه پیش"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "حدود یک دقیقه پیش" msgstr "حدود یک دقیقه پیش"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "حدود %d دقیقه پیش" msgstr "حدود %d دقیقه پیش"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "حدود یک ساعت پیش" msgstr "حدود یک ساعت پیش"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "حدود %d ساعت پیش" msgstr "حدود %d ساعت پیش"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "حدود یک روز پیش" msgstr "حدود یک روز پیش"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "حدود %d روز پیش" msgstr "حدود %d روز پیش"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "حدود یک ماه پیش" msgstr "حدود یک ماه پیش"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "حدود %d ماه پیش" msgstr "حدود %d ماه پیش"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "حدود یک سال پیش" msgstr "حدود یک سال پیش"

View File

@ -10,12 +10,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:20:32+0000\n" "PO-Revision-Date: 2010-02-11 08:14:39+0000\n"
"Language-Team: Finnish\n" "Language-Team: Finnish\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fi\n" "X-Language-Code: fi\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -186,22 +186,23 @@ msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!"
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "API-metodia ei löytynyt!" msgstr "API-metodia ei löytynyt!"
@ -578,7 +579,8 @@ msgstr "Käyttäjätili"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Tunnus" msgstr "Tunnus"
@ -770,7 +772,7 @@ msgstr "Alkuperäinen"
msgid "Preview" msgid "Preview"
msgstr "Esikatselu" msgstr "Esikatselu"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "Poista" msgstr "Poista"
@ -835,7 +837,7 @@ msgstr "Älä estä tätä käyttäjää"
msgid "Yes" msgid "Yes"
msgstr "Kyllä" msgstr "Kyllä"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "Estä tämä käyttäjä" msgstr "Estä tämä käyttäjä"
@ -1476,7 +1478,7 @@ msgstr "Tämä päivitys on jo suosikki!"
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "Poista suosikeista" msgstr "Poista suosikeista"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "Suosituimmat päivitykset" msgstr "Suosituimmat päivitykset"
@ -1626,7 +1628,7 @@ msgstr "Käyttäjä on asettanut eston sinulle."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Käyttäjä ei kuulu tähän ryhmään." msgstr "Käyttäjä ei kuulu tähän ryhmään."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
msgid "Block user from group" msgid "Block user from group"
msgstr "Estä käyttäjä ryhmästä" msgstr "Estä käyttäjä ryhmästä"
@ -1724,19 +1726,19 @@ msgstr "Lista ryhmän käyttäjistä."
msgid "Admin" msgid "Admin"
msgstr "Ylläpito" msgstr "Ylläpito"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Estä" msgstr "Estä"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Tee tästä käyttäjästä ylläpitäjä" msgstr "Tee tästä käyttäjästä ylläpitäjä"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "Tee ylläpitäjäksi" msgstr "Tee ylläpitäjäksi"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Tee tästä käyttäjästä ylläpitäjä" msgstr "Tee tästä käyttäjästä ylläpitäjä"
@ -2142,21 +2144,21 @@ msgstr ""
"käyttäjätunnusta? [Rekisteröi](%%action.register%%) käyttäjätunnus tai " "käyttäjätunnusta? [Rekisteröi](%%action.register%%) käyttäjätunnus tai "
"kokeile [OpenID](%%action.openidlogin%%)-tunnuksella sisään kirjautumista. " "kokeile [OpenID](%%action.openidlogin%%)-tunnuksella sisään kirjautumista. "
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "Vain ylläpitäjä voi tehdä toisesta käyttäjästä ylläpitäjän." msgstr "Vain ylläpitäjä voi tehdä toisesta käyttäjästä ylläpitäjän."
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "%s on jo ryhmän \"%s\" ylläpitäjä." msgstr "%s on jo ryhmän \"%s\" ylläpitäjä."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "Ei saatu käyttäjän %s jäsenyystietoja ryhmästä %s" msgstr "Ei saatu käyttäjän %s jäsenyystietoja ryhmästä %s"
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "Ei voitu tehdä käyttäjästä %s ylläpitäjää ryhmään %s" msgstr "Ei voitu tehdä käyttäjästä %s ylläpitäjää ryhmään %s"
@ -2363,8 +2365,8 @@ msgstr "Yhdistä"
msgid "Only " msgid "Only "
msgstr "Vain " msgstr "Vain "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Tuo ei ole tuettu tietomuoto." msgstr "Tuo ei ole tuettu tietomuoto."
@ -2760,7 +2762,7 @@ msgstr "Tietoja"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Kotipaikka" msgstr "Kotipaikka"
@ -2941,7 +2943,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Tagipilvi" msgstr "Tagipilvi"
@ -3395,79 +3397,84 @@ msgstr "Profiilikuva-asetukset"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä." msgstr "Sinun pitää olla kirjautunut sisään, jotta voit erota ryhmästä."
#: actions/showapplication.php:158 #: actions/showapplication.php:157
#, fuzzy #, fuzzy
msgid "Application profile" msgid "Application profile"
msgstr "Päivitykselle ei ole profiilia" msgstr "Päivitykselle ei ole profiilia"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
#, fuzzy #, fuzzy
msgid "Name" msgid "Name"
msgstr "Tunnus" msgstr "Tunnus"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
#, fuzzy #, fuzzy
msgid "Organization" msgid "Organization"
msgstr "Sivutus" msgstr "Sivutus"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "Kuvaus" msgstr "Kuvaus"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "Tilastot" msgstr "Tilastot"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "" msgstr ""
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Oletko varma että haluat poistaa tämän päivityksen?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3532,12 +3539,12 @@ msgid "Group profile"
msgstr "Ryhmän profiili" msgstr "Ryhmän profiili"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "URL" msgstr "URL"
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "Huomaa" msgstr "Huomaa"
@ -4102,7 +4109,8 @@ msgstr "Tagi %s"
msgid "User profile" msgid "User profile"
msgstr "Käyttäjän profiili" msgstr "Käyttäjän profiili"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "Kuva" msgstr "Kuva"
@ -4166,7 +4174,7 @@ msgstr "Ei profiili id:tä kyselyssä."
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "Tilaus lopetettu" msgstr "Tilaus lopetettu"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4261,37 +4269,37 @@ msgstr ""
"päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, " "päivitykset. Jos et valinnut haluavasi tilata jonkin käyttäjän päivityksiä, "
"paina \"Peruuta\"." "paina \"Peruuta\"."
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "Lisenssi" msgstr "Lisenssi"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Hyväksy" msgstr "Hyväksy"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Tilaa tämä käyttäjä" msgstr "Tilaa tämä käyttäjä"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "Hylkää" msgstr "Hylkää"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
#, fuzzy #, fuzzy
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "Käyttäjän %s tilaukset" msgstr "Käyttäjän %s tilaukset"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "Ei valtuutuspyyntöä!" msgstr "Ei valtuutuspyyntöä!"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "Tilaus sallittu" msgstr "Tilaus sallittu"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
@ -4302,11 +4310,11 @@ msgstr ""
"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. " "saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hyväksytään. "
"Tilauskoodisi on:" "Tilauskoodisi on:"
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "Tilaus hylätty" msgstr "Tilaus hylätty"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
@ -4316,37 +4324,37 @@ msgstr ""
"Päivityksen tilaus on hylätty, mutta callback-osoitetta palveluun ei ole " "Päivityksen tilaus on hylätty, mutta callback-osoitetta palveluun ei ole "
"saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hylätään kokonaan." "saatu. Tarkista sivuston ohjeet miten päivityksen tilaus hylätään kokonaan."
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, fuzzy, php-format #, fuzzy, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "Kuvan URL-osoitetta '%s' ei voi avata." msgstr "Kuvan URL-osoitetta '%s' ei voi avata."
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, fuzzy, php-format #, fuzzy, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "Kuvan '%s' tyyppi on väärä" msgstr "Kuvan '%s' tyyppi on väärä"
@ -4534,7 +4542,7 @@ msgstr "Ongelma päivityksen tallentamisessa."
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Tietokantavirhe tallennettaessa vastausta: %s" msgstr "Tietokantavirhe tallennettaessa vastausta: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -4829,11 +4837,11 @@ msgstr "SMS vahvistus"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "SMS vahvistus" msgstr "SMS vahvistus"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5855,12 +5863,12 @@ msgstr "Virhe tapahtui uuden etäprofiilin lisäämisessä"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Poista päivitys" msgstr "Poista päivitys"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
#, fuzzy #, fuzzy
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "Käyttäjä on estänyt sinua tilaamasta päivityksiä." msgstr "Käyttäjä on estänyt sinua tilaamasta päivityksiä."
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Ei voitu lisätä uutta tilausta." msgstr "Ei voitu lisätä uutta tilausta."
@ -6151,47 +6159,47 @@ msgstr "Viesti"
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "muutama sekunti sitten" msgstr "muutama sekunti sitten"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "noin minuutti sitten" msgstr "noin minuutti sitten"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "noin %d minuuttia sitten" msgstr "noin %d minuuttia sitten"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "noin tunti sitten" msgstr "noin tunti sitten"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "noin %d tuntia sitten" msgstr "noin %d tuntia sitten"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "noin päivä sitten" msgstr "noin päivä sitten"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "noin %d päivää sitten" msgstr "noin %d päivää sitten"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "noin kuukausi sitten" msgstr "noin kuukausi sitten"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "noin %d kuukautta sitten" msgstr "noin %d kuukautta sitten"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "noin vuosi sitten" msgstr "noin vuosi sitten"

File diff suppressed because it is too large Load Diff

View File

@ -8,12 +8,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:20:42+0000\n" "PO-Revision-Date: 2010-02-11 08:14:47+0000\n"
"Language-Team: Irish\n" "Language-Team: Irish\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ga\n" "X-Language-Code: ga\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -181,22 +181,23 @@ msgstr "Actualizacións dende %1$s e amigos en %2$s!"
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "Método da API non atopado" msgstr "Método da API non atopado"
@ -575,7 +576,8 @@ msgstr "Sobre"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Alcume" msgstr "Alcume"
@ -770,7 +772,7 @@ msgstr ""
msgid "Preview" msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
#, fuzzy #, fuzzy
msgid "Delete" msgid "Delete"
@ -841,7 +843,7 @@ msgstr "Bloquear usuario"
msgid "Yes" msgid "Yes"
msgstr "Si" msgstr "Si"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
#, fuzzy #, fuzzy
msgid "Block this user" msgid "Block this user"
msgstr "Bloquear usuario" msgstr "Bloquear usuario"
@ -1498,7 +1500,7 @@ msgstr "Este chío xa é un favorito!"
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "Desactivar favorito" msgstr "Desactivar favorito"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "Chíos populares" msgstr "Chíos populares"
@ -1652,7 +1654,7 @@ msgstr "O usuario bloqueoute."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "%1s non é unha orixe fiable." msgstr "%1s non é unha orixe fiable."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
#, fuzzy #, fuzzy
msgid "Block user from group" msgid "Block user from group"
msgstr "Bloquear usuario" msgstr "Bloquear usuario"
@ -1758,19 +1760,19 @@ msgstr ""
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Bloquear" msgstr "Bloquear"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "" msgstr ""
@ -2174,21 +2176,21 @@ msgstr ""
"(%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%" "(%%action.register%%) unha nova conta, ou accede co teu enderezo [OpenID](%%"
"action.openidlogin%%). " "action.openidlogin%%). "
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "" msgstr ""
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "O usuario bloqueoute." msgstr "O usuario bloqueoute."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "Non podes seguir a este usuario: o Usuario non se atopa." msgstr "Non podes seguir a este usuario: o Usuario non se atopa."
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "O usuario bloqueoute." msgstr "O usuario bloqueoute."
@ -2394,8 +2396,8 @@ msgstr "Conectar"
msgid "Only " msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Non é un formato de datos soportado." msgstr "Non é un formato de datos soportado."
@ -2792,7 +2794,7 @@ msgstr "Bio"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Localización" msgstr "Localización"
@ -2981,7 +2983,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -3430,80 +3432,85 @@ msgstr "Configuracións de Twitter"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s" msgstr "Debes estar logueado para invitar a outros usuarios a empregar %s"
#: actions/showapplication.php:158 #: actions/showapplication.php:157
#, fuzzy #, fuzzy
msgid "Application profile" msgid "Application profile"
msgstr "O chío non ten perfil" msgstr "O chío non ten perfil"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
#, fuzzy #, fuzzy
msgid "Name" msgid "Name"
msgstr "Alcume" msgstr "Alcume"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
#, fuzzy #, fuzzy
msgid "Organization" msgid "Organization"
msgstr "Invitación(s) enviada(s)." msgstr "Invitación(s) enviada(s)."
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
#, fuzzy #, fuzzy
msgid "Description" msgid "Description"
msgstr "Subscricións" msgstr "Subscricións"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "Estatísticas" msgstr "Estatísticas"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "" msgstr ""
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Estas seguro que queres eliminar este chío?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3569,12 +3576,12 @@ msgid "Group profile"
msgstr "Non existe o perfil." msgstr "Non existe o perfil."
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "" msgstr ""
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
#, fuzzy #, fuzzy
msgid "Note" msgid "Note"
msgstr "Chíos" msgstr "Chíos"
@ -4155,7 +4162,8 @@ msgstr "Tags"
msgid "User profile" msgid "User profile"
msgstr "O usuario non ten perfil." msgstr "O usuario non ten perfil."
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "" msgstr ""
@ -4220,7 +4228,7 @@ msgstr "Non hai identificador de perfil na peticion."
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "De-suscribido" msgstr "De-suscribido"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4315,38 +4323,38 @@ msgstr ""
"user's notices. If you didn't just ask to subscribe to someone's notices, " "user's notices. If you didn't just ask to subscribe to someone's notices, "
"click \"Cancel\"." "click \"Cancel\"."
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "" msgstr ""
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Aceptar" msgstr "Aceptar"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
#, fuzzy #, fuzzy
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Suscrito a %s" msgstr "Suscrito a %s"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "Rexeitar" msgstr "Rexeitar"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
#, fuzzy #, fuzzy
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "Subscrición de autorización." msgstr "Subscrición de autorización."
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "Sen petición de autorización!" msgstr "Sen petición de autorización!"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "Subscrición autorizada" msgstr "Subscrición autorizada"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
@ -4357,11 +4365,11 @@ msgstr ""
"proporcionada. Comproba coas instruccións do sitio para máis detalles en " "proporcionada. Comproba coas instruccións do sitio para máis detalles en "
"como autorizar subscricións. O teu token de subscrición é:" "como autorizar subscricións. O teu token de subscrición é:"
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "Subscrición rexeitada" msgstr "Subscrición rexeitada"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
@ -4372,37 +4380,37 @@ msgstr ""
"with the site's instructions for details on how to fully reject the " "with the site's instructions for details on how to fully reject the "
"subscription." "subscription."
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, fuzzy, php-format #, fuzzy, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "Non se pode ler a URL do avatar de '%s'" msgstr "Non se pode ler a URL do avatar de '%s'"
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, fuzzy, php-format #, fuzzy, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "Tipo de imaxe incorrecto para '%s'" msgstr "Tipo de imaxe incorrecto para '%s'"
@ -4591,7 +4599,7 @@ msgstr "Aconteceu un erro ó gardar o chío."
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Erro ó inserir a contestación na BD: %s" msgstr "Erro ó inserir a contestación na BD: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -4899,11 +4907,11 @@ msgstr "Confirmación de SMS"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "Confirmación de SMS" msgstr "Confirmación de SMS"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -6023,12 +6031,12 @@ msgstr "Aconteceu un erro ó inserir o perfil remoto"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Eliminar chío" msgstr "Eliminar chío"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
#, fuzzy #, fuzzy
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "Este usuario non che permite suscribirte a el." msgstr "Este usuario non che permite suscribirte a el."
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Non se puido inserir a nova subscrición." msgstr "Non se puido inserir a nova subscrición."
@ -6328,47 +6336,47 @@ msgstr "Nova mensaxe"
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "fai uns segundos" msgstr "fai uns segundos"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "fai un minuto" msgstr "fai un minuto"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "fai %d minutos" msgstr "fai %d minutos"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "fai unha hora" msgstr "fai unha hora"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "fai %d horas" msgstr "fai %d horas"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "fai un día" msgstr "fai un día"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "fai %d días" msgstr "fai %d días"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "fai un mes" msgstr "fai un mes"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "fai %d meses" msgstr "fai %d meses"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "fai un ano" msgstr "fai un ano"

View File

@ -7,12 +7,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:20:45+0000\n" "PO-Revision-Date: 2010-02-11 08:14:50+0000\n"
"Language-Team: Hebrew\n" "Language-Team: Hebrew\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: he\n" "X-Language-Code: he\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -178,22 +178,23 @@ msgstr ""
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "קוד האישור לא נמצא." msgstr "קוד האישור לא נמצא."
@ -568,7 +569,8 @@ msgstr "אודות"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "כינוי" msgstr "כינוי"
@ -762,7 +764,7 @@ msgstr ""
msgid "Preview" msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
#, fuzzy #, fuzzy
msgid "Delete" msgid "Delete"
@ -831,7 +833,7 @@ msgstr "אין משתמש כזה."
msgid "Yes" msgid "Yes"
msgstr "כן" msgstr "כן"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
#, fuzzy #, fuzzy
msgid "Block this user" msgid "Block this user"
msgstr "אין משתמש כזה." msgstr "אין משתמש כזה."
@ -1469,7 +1471,7 @@ msgstr ""
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "" msgstr ""
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
#, fuzzy #, fuzzy
msgid "Popular notices" msgid "Popular notices"
@ -1624,7 +1626,7 @@ msgstr "למשתמש אין פרופיל."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "לא שלחנו אלינו את הפרופיל הזה" msgstr "לא שלחנו אלינו את הפרופיל הזה"
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
#, fuzzy #, fuzzy
msgid "Block user from group" msgid "Block user from group"
msgstr "אין משתמש כזה." msgstr "אין משתמש כזה."
@ -1729,19 +1731,19 @@ msgstr ""
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "" msgstr ""
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "" msgstr ""
@ -2111,21 +2113,21 @@ msgstr ""
"היכנס בעזרת שם המשתמש והסיסמה שלך. עדיין אין לך שם משתמש? [הרשם](%%action." "היכנס בעזרת שם המשתמש והסיסמה שלך. עדיין אין לך שם משתמש? [הרשם](%%action."
"register%%) לחשבון " "register%%) לחשבון "
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "" msgstr ""
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "למשתמש אין פרופיל." msgstr "למשתמש אין פרופיל."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "נכשלה יצירת OpenID מתוך: %s" msgstr "נכשלה יצירת OpenID מתוך: %s"
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "למשתמש אין פרופיל." msgstr "למשתמש אין פרופיל."
@ -2325,8 +2327,8 @@ msgstr "התחבר"
msgid "Only " msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -2719,7 +2721,7 @@ msgstr "ביוגרפיה"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "מיקום" msgstr "מיקום"
@ -2897,7 +2899,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -3315,80 +3317,84 @@ msgstr "הגדרות"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "" msgstr ""
#: actions/showapplication.php:158 #: actions/showapplication.php:157
#, fuzzy #, fuzzy
msgid "Application profile" msgid "Application profile"
msgstr "להודעה אין פרופיל" msgstr "להודעה אין פרופיל"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
#, fuzzy #, fuzzy
msgid "Name" msgid "Name"
msgstr "כינוי" msgstr "כינוי"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
#, fuzzy #, fuzzy
msgid "Organization" msgid "Organization"
msgstr "מיקום" msgstr "מיקום"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
#, fuzzy #, fuzzy
msgid "Description" msgid "Description"
msgstr "הרשמות" msgstr "הרשמות"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "סטטיסטיקה" msgstr "סטטיסטיקה"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "" msgstr ""
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3454,12 +3460,12 @@ msgid "Group profile"
msgstr "אין הודעה כזו." msgstr "אין הודעה כזו."
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "" msgstr ""
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
#, fuzzy #, fuzzy
msgid "Note" msgid "Note"
msgstr "הודעות" msgstr "הודעות"
@ -4015,7 +4021,8 @@ msgstr ""
msgid "User profile" msgid "User profile"
msgstr "למשתמש אין פרופיל." msgstr "למשתמש אין פרופיל."
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "" msgstr ""
@ -4077,7 +4084,7 @@ msgstr "השרת לא החזיר כתובת פרופיל"
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "בטל מנוי" msgstr "בטל מנוי"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4168,38 +4175,38 @@ msgstr ""
"בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה " "בדוק את הפרטים כדי לוודא שברצונך להירשם כמנוי להודעות משתמש זה. אם אינך רוצה "
"להירשם, לחץ \"בטל\"." "להירשם, לחץ \"בטל\"."
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "" msgstr ""
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "קבל" msgstr "קבל"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
#, fuzzy #, fuzzy
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "ההרשמה אושרה" msgstr "ההרשמה אושרה"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "דחה" msgstr "דחה"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
#, fuzzy #, fuzzy
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "כל המנויים" msgstr "כל המנויים"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "לא התבקש אישור!" msgstr "לא התבקש אישור!"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "ההרשמה אושרה" msgstr "ההרשמה אושרה"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
@ -4209,11 +4216,11 @@ msgstr ""
"המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש " "המנוי אושר, אבל לא התקבלה כתובת אליה ניתן לחזור. בדוק את הוראות האתר וחפש "
"כיצד לאשר מנוי. אסימון המנוי שלך הוא:" "כיצד לאשר מנוי. אסימון המנוי שלך הוא:"
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "ההרשמה נדחתה" msgstr "ההרשמה נדחתה"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
@ -4223,37 +4230,37 @@ msgstr ""
"המנוי נדחה, אבל לא התקבלה כתובת לחזרה. בדוק את הוראות האתר וחפש כיצד להשלים " "המנוי נדחה, אבל לא התקבלה כתובת לחזרה. בדוק את הוראות האתר וחפש כיצד להשלים "
"דחיית מנוי." "דחיית מנוי."
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, fuzzy, php-format #, fuzzy, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "לא ניתן לקרוא את ה-URL '%s' של התמונה" msgstr "לא ניתן לקרוא את ה-URL '%s' של התמונה"
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, fuzzy, php-format #, fuzzy, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "סוג התמונה של '%s' אינו מתאים" msgstr "סוג התמונה של '%s' אינו מתאים"
@ -4437,7 +4444,7 @@ msgstr "בעיה בשמירת ההודעה."
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s" msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -4735,11 +4742,11 @@ msgstr "הרשמות"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "הרשמות" msgstr "הרשמות"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5755,11 +5762,11 @@ msgstr "שגיאה בהכנסת פרופיל מרוחק"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "הודעה חדשה" msgstr "הודעה חדשה"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "" msgstr ""
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "הכנסת מנוי חדש נכשלה." msgstr "הכנסת מנוי חדש נכשלה."
@ -6053,47 +6060,47 @@ msgstr "הודעה חדשה"
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "לפני מספר שניות" msgstr "לפני מספר שניות"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "לפני כדקה" msgstr "לפני כדקה"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "לפני כ-%d דקות" msgstr "לפני כ-%d דקות"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "לפני כשעה" msgstr "לפני כשעה"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "לפני כ-%d שעות" msgstr "לפני כ-%d שעות"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "לפני כיום" msgstr "לפני כיום"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "לפני כ-%d ימים" msgstr "לפני כ-%d ימים"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "לפני כחודש" msgstr "לפני כחודש"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "לפני כ-%d חודשים" msgstr "לפני כ-%d חודשים"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "לפני כשנה" msgstr "לפני כשנה"

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:20:49+0000\n" "PO-Revision-Date: 2010-02-11 08:14:54+0000\n"
"Language-Team: Dutch\n" "Language-Team: Dutch\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: hsb\n" "X-Language-Code: hsb\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -176,22 +176,23 @@ msgstr ""
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "API-metoda njenamakana." msgstr "API-metoda njenamakana."
@ -551,7 +552,8 @@ msgstr "Konto"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Přimjeno" msgstr "Přimjeno"
@ -739,7 +741,7 @@ msgstr "Original"
msgid "Preview" msgid "Preview"
msgstr "Přehlad" msgstr "Přehlad"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "Zničić" msgstr "Zničić"
@ -803,7 +805,7 @@ msgstr "Tutoho wužiwarja njeblokować"
msgid "Yes" msgid "Yes"
msgstr "Haj" msgstr "Haj"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "Tutoho wužiwarja blokować" msgstr "Tutoho wužiwarja blokować"
@ -1409,7 +1411,7 @@ msgstr "Tuta zdźělenka je hižo faworit!"
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "" msgstr ""
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "Woblubowane zdźělenki" msgstr "Woblubowane zdźělenki"
@ -1551,7 +1553,7 @@ msgstr "Wužiwar je hižo za skupinu zablokowany."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Wužiwar njeje čłon skupiny." msgstr "Wužiwar njeje čłon skupiny."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
msgid "Block user from group" msgid "Block user from group"
msgstr "Wužiwarja za skupinu blokować" msgstr "Wužiwarja za skupinu blokować"
@ -1648,19 +1650,19 @@ msgstr "Lisćina wužiwarjow w tutej skupinje."
msgid "Admin" msgid "Admin"
msgstr "Administrator" msgstr "Administrator"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Blokować" msgstr "Blokować"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Tutoho wužiwarja k administratorej činić" msgstr "Tutoho wužiwarja k administratorej činić"
@ -2010,21 +2012,21 @@ msgid ""
"(%%action.register%%) a new account." "(%%action.register%%) a new account."
msgstr "" msgstr ""
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "Jenož administrator móže druheho wužiwarja k administratorej činić." msgstr "Jenož administrator móže druheho wužiwarja k administratorej činić."
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, php-format #, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "%1$s je hižo administrator za skupinu \"%2$s\"." msgstr "%1$s je hižo administrator za skupinu \"%2$s\"."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, php-format #, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "Přistup na datowu sadźbu čłona %1$S w skupinje %2$s móžno njeje." msgstr "Přistup na datowu sadźbu čłona %1$S w skupinje %2$s móžno njeje."
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, php-format #, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "Njeje móžno %1$S k administratorej w skupinje %2$s činić." msgstr "Njeje móžno %1$S k administratorej w skupinje %2$s činić."
@ -2217,8 +2219,8 @@ msgstr ""
msgid "Only " msgid "Only "
msgstr "Jenož " msgstr "Jenož "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Njeje podpěrany datowy format." msgstr "Njeje podpěrany datowy format."
@ -2587,7 +2589,7 @@ msgstr "Biografija"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Městno" msgstr "Městno"
@ -2759,7 +2761,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -3163,76 +3165,81 @@ msgstr "Sydłowe nastajenja składować"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "Dyrbiš přizjewjeny być, zo by sej aplikaciju wobhladał." msgstr "Dyrbiš přizjewjeny być, zo by sej aplikaciju wobhladał."
#: actions/showapplication.php:158 #: actions/showapplication.php:157
msgid "Application profile" msgid "Application profile"
msgstr "Aplikaciski profil" msgstr "Aplikaciski profil"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
msgid "Name" msgid "Name"
msgstr "Mjeno" msgstr "Mjeno"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
msgid "Organization" msgid "Organization"
msgstr "Organizacija" msgstr "Organizacija"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "Wopisanje" msgstr "Wopisanje"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "Statistika" msgstr "Statistika"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "URL awtorizować" msgstr "URL awtorizować"
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Chceš woprawdźe tutu zdźělenku wušmórnyć?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3297,12 +3304,12 @@ msgid "Group profile"
msgstr "Skupinski profil" msgstr "Skupinski profil"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "URL" msgstr "URL"
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "" msgstr ""
@ -3841,7 +3848,8 @@ msgstr ""
msgid "User profile" msgid "User profile"
msgstr "Wužiwarski profil" msgstr "Wužiwarski profil"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "Foto" msgstr "Foto"
@ -3896,7 +3904,7 @@ msgstr ""
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "Wotskazany" msgstr "Wotskazany"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -3980,84 +3988,84 @@ msgid ""
"click “Reject”." "click “Reject”."
msgstr "" msgstr ""
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "Licenca" msgstr "Licenca"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Akceptować" msgstr "Akceptować"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Tutoho wužiwarja abonować" msgstr "Tutoho wužiwarja abonować"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "Wotpokazać" msgstr "Wotpokazać"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "Tutón abonement wotpokazać" msgstr "Tutón abonement wotpokazać"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "" msgstr ""
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "Abonement awtorizowany" msgstr "Abonement awtorizowany"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
"with the sites instructions for details on how to authorize the " "with the sites instructions for details on how to authorize the "
"subscription. Your subscription token is:" "subscription. Your subscription token is:"
msgstr "" msgstr ""
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "Abonement wotpokazany" msgstr "Abonement wotpokazany"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
"with the sites instructions for details on how to fully reject the " "with the sites instructions for details on how to fully reject the "
"subscription." "subscription."
msgstr "" msgstr ""
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, php-format #, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "" msgstr ""
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, php-format #, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "" msgstr ""
@ -4233,7 +4241,7 @@ msgstr ""
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "" msgstr ""
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -4510,11 +4518,11 @@ msgstr ""
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "SMS-wobkrućenje" msgstr "SMS-wobkrućenje"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5487,11 +5495,11 @@ msgstr "Zmylk při zasunjenju zdaleneho profila"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Dwójna zdźělenka" msgstr "Dwójna zdźělenka"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "" msgstr ""
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "" msgstr ""
@ -5765,47 +5773,47 @@ msgstr "Powěsć"
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "před něšto sekundami" msgstr "před něšto sekundami"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "před něhdźe jednej mjeńšinu" msgstr "před něhdźe jednej mjeńšinu"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "před %d mjeńšinami" msgstr "před %d mjeńšinami"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "před něhdźe jednej hodźinu" msgstr "před něhdźe jednej hodźinu"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "před něhdźe %d hodźinami" msgstr "před něhdźe %d hodźinami"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "před něhdźe jednym dnjom" msgstr "před něhdźe jednym dnjom"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "před něhdźe %d dnjemi" msgstr "před něhdźe %d dnjemi"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "před něhdźe jednym měsacom" msgstr "před něhdźe jednym měsacom"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "před něhdźe %d měsacami" msgstr "před něhdźe %d měsacami"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "před něhdźe jednym lětom" msgstr "před něhdźe jednym lětom"

File diff suppressed because it is too large Load Diff

View File

@ -8,12 +8,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:21:15+0000\n" "PO-Revision-Date: 2010-02-11 08:15:11+0000\n"
"Language-Team: Icelandic\n" "Language-Team: Icelandic\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: is\n" "X-Language-Code: is\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -180,22 +180,23 @@ msgstr "Færslur frá %1$s og vinum á %2$s!"
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "Aðferð í forritsskilum fannst ekki!" msgstr "Aðferð í forritsskilum fannst ekki!"
@ -569,7 +570,8 @@ msgstr "Aðgangur"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Stuttnefni" msgstr "Stuttnefni"
@ -760,7 +762,7 @@ msgstr "Upphafleg mynd"
msgid "Preview" msgid "Preview"
msgstr "Forsýn" msgstr "Forsýn"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "Eyða" msgstr "Eyða"
@ -827,7 +829,7 @@ msgstr "Opna á þennan notanda"
msgid "Yes" msgid "Yes"
msgstr "Já" msgstr "Já"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "Loka á þennan notanda" msgstr "Loka á þennan notanda"
@ -1463,7 +1465,7 @@ msgstr "Þetta babl er nú þegar í uppáhaldi!"
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "Ekki lengur í uppáhaldi" msgstr "Ekki lengur í uppáhaldi"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "Vinsælt babl" msgstr "Vinsælt babl"
@ -1614,7 +1616,7 @@ msgstr ""
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "" msgstr ""
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
msgid "Block user from group" msgid "Block user from group"
msgstr "" msgstr ""
@ -1711,19 +1713,19 @@ msgstr "Listi yfir notendur í þessum hóp."
msgid "Admin" msgid "Admin"
msgstr "Stjórnandi" msgstr "Stjórnandi"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Loka" msgstr "Loka"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "" msgstr ""
@ -2126,21 +2128,21 @@ msgstr ""
"notendanafn? [Nýskráðu þig](%%action.register%%) eða prófaðu [OpenID](%%" "notendanafn? [Nýskráðu þig](%%action.register%%) eða prófaðu [OpenID](%%"
"action.openidlogin%%). " "action.openidlogin%%). "
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "" msgstr ""
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, php-format #, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "" msgstr ""
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s" msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s"
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s" msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s"
@ -2345,8 +2347,8 @@ msgstr ""
msgid "Only " msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Enginn stuðningur við gagnasnið." msgstr "Enginn stuðningur við gagnasnið."
@ -2741,7 +2743,7 @@ msgstr "Lýsing"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Staðsetning" msgstr "Staðsetning"
@ -2918,7 +2920,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Merkjaský" msgstr "Merkjaský"
@ -3360,79 +3362,84 @@ msgstr "Stillingar fyrir mynd"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "Þú verður aða hafa skráð þig inn til að ganga úr hóp." msgstr "Þú verður aða hafa skráð þig inn til að ganga úr hóp."
#: actions/showapplication.php:158 #: actions/showapplication.php:157
#, fuzzy #, fuzzy
msgid "Application profile" msgid "Application profile"
msgstr "Babl hefur enga persónulega síðu" msgstr "Babl hefur enga persónulega síðu"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
#, fuzzy #, fuzzy
msgid "Name" msgid "Name"
msgstr "Stuttnefni" msgstr "Stuttnefni"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
#, fuzzy #, fuzzy
msgid "Organization" msgid "Organization"
msgstr "Uppröðun" msgstr "Uppröðun"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "Lýsing" msgstr "Lýsing"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "Tölfræði" msgstr "Tölfræði"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "" msgstr ""
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Ertu viss um að þú viljir eyða þessu babli?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3497,12 +3504,12 @@ msgid "Group profile"
msgstr "Hópssíðan" msgstr "Hópssíðan"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "Vefslóð" msgstr "Vefslóð"
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "Athugasemd" msgstr "Athugasemd"
@ -4057,7 +4064,8 @@ msgstr "Merki %s"
msgid "User profile" msgid "User profile"
msgstr "Persónuleg síða notanda" msgstr "Persónuleg síða notanda"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "Ljósmynd" msgstr "Ljósmynd"
@ -4121,7 +4129,7 @@ msgstr "Ekkert einkenni persónulegrar síðu í beiðni."
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "Ekki lengur áskrifandi" msgstr "Ekki lengur áskrifandi"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4216,36 +4224,36 @@ msgstr ""
"gerast áskrifandi að babli þessa notanda. Ef þú baðst ekki um að gerast " "gerast áskrifandi að babli þessa notanda. Ef þú baðst ekki um að gerast "
"áskrifandi að babli, smelltu þá á \"Hætta við\"." "áskrifandi að babli, smelltu þá á \"Hætta við\"."
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "" msgstr ""
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Samþykkja" msgstr "Samþykkja"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Gerast áskrifandi að þessum notanda" msgstr "Gerast áskrifandi að þessum notanda"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "Hafna" msgstr "Hafna"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "" msgstr ""
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "Engin heimildarbeiðni!" msgstr "Engin heimildarbeiðni!"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "Áskrift heimiluð" msgstr "Áskrift heimiluð"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
@ -4256,11 +4264,11 @@ msgstr ""
"leiðbeiningar síðunnar um það hvernig á að heimila áskrift. Áskriftartókinn " "leiðbeiningar síðunnar um það hvernig á að heimila áskrift. Áskriftartókinn "
"þinn er;" "þinn er;"
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "Áskrift hafnað" msgstr "Áskrift hafnað"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
@ -4270,37 +4278,37 @@ msgstr ""
"Áskriftinni hefur verið hafnað en afturkallsveffang var ekki sent. Athugaðu " "Áskriftinni hefur verið hafnað en afturkallsveffang var ekki sent. Athugaðu "
"leiðbeiningar síðunnar um það hvernig á að hafna áskrift alveg." "leiðbeiningar síðunnar um það hvernig á að hafna áskrift alveg."
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, fuzzy, php-format #, fuzzy, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "Get ekki lesið slóðina fyrir myndina '%s'" msgstr "Get ekki lesið slóðina fyrir myndina '%s'"
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, fuzzy, php-format #, fuzzy, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "Röng gerð myndar fyrir '%s'" msgstr "Röng gerð myndar fyrir '%s'"
@ -4484,7 +4492,7 @@ msgstr "Vandamál komu upp við að vista babl."
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Gagnagrunnsvilla við innsetningu svars: %s" msgstr "Gagnagrunnsvilla við innsetningu svars: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -4778,11 +4786,11 @@ msgstr "SMS staðfesting"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "SMS staðfesting" msgstr "SMS staðfesting"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5789,12 +5797,12 @@ msgstr "Villa kom upp við að setja inn persónulega fjarsíðu"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Eyða babli" msgstr "Eyða babli"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
#, fuzzy #, fuzzy
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "Þessi notandi hefur bannað þér að gerast áskrifandi" msgstr "Þessi notandi hefur bannað þér að gerast áskrifandi"
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Gat ekki sett inn nýja áskrift." msgstr "Gat ekki sett inn nýja áskrift."
@ -6080,47 +6088,47 @@ msgstr "Skilaboð"
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "fyrir nokkrum sekúndum" msgstr "fyrir nokkrum sekúndum"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "fyrir um einni mínútu síðan" msgstr "fyrir um einni mínútu síðan"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "fyrir um %d mínútum síðan" msgstr "fyrir um %d mínútum síðan"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "fyrir um einum klukkutíma síðan" msgstr "fyrir um einum klukkutíma síðan"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "fyrir um %d klukkutímum síðan" msgstr "fyrir um %d klukkutímum síðan"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "fyrir um einum degi síðan" msgstr "fyrir um einum degi síðan"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "fyrir um %d dögum síðan" msgstr "fyrir um %d dögum síðan"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "fyrir um einum mánuði síðan" msgstr "fyrir um einum mánuði síðan"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "fyrir um %d mánuðum síðan" msgstr "fyrir um %d mánuðum síðan"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "fyrir um einu ári síðan" msgstr "fyrir um einu ári síðan"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -7,12 +7,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:21:32+0000\n" "PO-Revision-Date: 2010-02-11 08:15:20+0000\n"
"Language-Team: Korean\n" "Language-Team: Korean\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ko\n" "X-Language-Code: ko\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -179,22 +179,23 @@ msgstr "%1$s 및 %2$s에 있는 친구들의 업데이트!"
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "API 메서드를 찾을 수 없습니다." msgstr "API 메서드를 찾을 수 없습니다."
@ -572,7 +573,8 @@ msgstr "계정"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "별명" msgstr "별명"
@ -765,7 +767,7 @@ msgstr "원래 설정"
msgid "Preview" msgid "Preview"
msgstr "미리보기" msgstr "미리보기"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "삭제" msgstr "삭제"
@ -832,7 +834,7 @@ msgstr "이 사용자를 차단해제합니다."
msgid "Yes" msgid "Yes"
msgstr "네, 맞습니다." msgstr "네, 맞습니다."
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "이 사용자 차단하기" msgstr "이 사용자 차단하기"
@ -1478,7 +1480,7 @@ msgstr "이 게시글은 이미 좋아하는 게시글입니다."
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "좋아하는글 취소" msgstr "좋아하는글 취소"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "인기있는 게시글" msgstr "인기있는 게시글"
@ -1633,7 +1635,7 @@ msgstr "회원이 당신을 차단해왔습니다."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "당신은 해당 그룹의 멤버가 아닙니다." msgstr "당신은 해당 그룹의 멤버가 아닙니다."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
#, fuzzy #, fuzzy
msgid "Block user from group" msgid "Block user from group"
msgstr "사용자를 차단합니다." msgstr "사용자를 차단합니다."
@ -1738,21 +1740,21 @@ msgstr "이 그룹의 회원리스트"
msgid "Admin" msgid "Admin"
msgstr "관리자" msgstr "관리자"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "차단하기" msgstr "차단하기"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
#, fuzzy #, fuzzy
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "관리자만 그룹을 편집할 수 있습니다." msgstr "관리자만 그룹을 편집할 수 있습니다."
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
#, fuzzy #, fuzzy
msgid "Make Admin" msgid "Make Admin"
msgstr "관리자" msgstr "관리자"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "" msgstr ""
@ -2144,21 +2146,21 @@ msgstr ""
"action.register%%) 새 계정을 생성 또는 [OpenID](%%action.openidlogin%%)를 사" "action.register%%) 새 계정을 생성 또는 [OpenID](%%action.openidlogin%%)를 사"
"용해 보세요." "용해 보세요."
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "" msgstr ""
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "회원이 당신을 차단해왔습니다." msgstr "회원이 당신을 차단해왔습니다."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다." msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다."
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "관리자만 그룹을 편집할 수 있습니다." msgstr "관리자만 그룹을 편집할 수 있습니다."
@ -2363,8 +2365,8 @@ msgstr "연결"
msgid "Only " msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "지원하는 형식의 데이터가 아닙니다." msgstr "지원하는 형식의 데이터가 아닙니다."
@ -2757,7 +2759,7 @@ msgstr "자기소개"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "위치" msgstr "위치"
@ -2935,7 +2937,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "태그 클라우드" msgstr "태그 클라우드"
@ -3376,79 +3378,84 @@ msgstr "아바타 설정"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "그룹을 떠나기 위해서는 로그인해야 합니다." msgstr "그룹을 떠나기 위해서는 로그인해야 합니다."
#: actions/showapplication.php:158 #: actions/showapplication.php:157
#, fuzzy #, fuzzy
msgid "Application profile" msgid "Application profile"
msgstr "통지에 프로필이 없습니다." msgstr "통지에 프로필이 없습니다."
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
#, fuzzy #, fuzzy
msgid "Name" msgid "Name"
msgstr "별명" msgstr "별명"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
#, fuzzy #, fuzzy
msgid "Organization" msgid "Organization"
msgstr "페이지수" msgstr "페이지수"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "설명" msgstr "설명"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "통계" msgstr "통계"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "" msgstr ""
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "정말로 통지를 삭제하시겠습니까?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3513,12 +3520,12 @@ msgid "Group profile"
msgstr "그룹 프로필" msgstr "그룹 프로필"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "URL" msgstr "URL"
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "설명" msgstr "설명"
@ -4081,7 +4088,8 @@ msgstr "태그 %s"
msgid "User profile" msgid "User profile"
msgstr "이용자 프로필" msgstr "이용자 프로필"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "사진" msgstr "사진"
@ -4142,7 +4150,7 @@ msgstr "요청한 프로필id가 없습니다."
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "구독취소 되었습니다." msgstr "구독취소 되었습니다."
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4234,38 +4242,38 @@ msgstr ""
"사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소" "사용자의 통지를 구독하려면 상세를 확인해 주세요. 구독하지 않는 경우는, \"취소"
"\"를 클릭해 주세요." "\"를 클릭해 주세요."
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
#, fuzzy #, fuzzy
msgid "License" msgid "License"
msgstr "라이선스" msgstr "라이선스"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "수락" msgstr "수락"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "이 회원을 구독합니다." msgstr "이 회원을 구독합니다."
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "거부" msgstr "거부"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
#, fuzzy #, fuzzy
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "%s 구독" msgstr "%s 구독"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "허용되지 않는 요청입니다." msgstr "허용되지 않는 요청입니다."
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "구독 허가" msgstr "구독 허가"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
@ -4275,11 +4283,11 @@ msgstr ""
"구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" "구독이 승인 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지"
"시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : " "시를 찾아 구독 승인 방법에 대하여 읽어보십시오. 귀하의 구독 토큰은 : "
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "구독 거부" msgstr "구독 거부"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
@ -4289,37 +4297,37 @@ msgstr ""
"구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지" "구독이 해지 되었습니다. 하지만 콜백 URL이 통과 되지 않았습니다. 웹사이트의 지"
"시를 찾아 구독 해지 방법에 대하여 읽어보십시오." "시를 찾아 구독 해지 방법에 대하여 읽어보십시오."
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, fuzzy, php-format #, fuzzy, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "아바타 URL '%s'을(를) 읽어낼 수 없습니다." msgstr "아바타 URL '%s'을(를) 읽어낼 수 없습니다."
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, fuzzy, php-format #, fuzzy, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "%S 잘못된 그림 파일 타입입니다. " msgstr "%S 잘못된 그림 파일 타입입니다. "
@ -4509,7 +4517,7 @@ msgstr "통지를 저장하는데 문제가 발생했습니다."
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "답신을 추가 할 때에 데이타베이스 에러 : %s" msgstr "답신을 추가 할 때에 데이타베이스 에러 : %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -4804,11 +4812,11 @@ msgstr "SMS 인증"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "SMS 인증" msgstr "SMS 인증"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5813,12 +5821,12 @@ msgstr "리모트 프로필 추가 오류"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "통지 삭제" msgstr "통지 삭제"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
#, fuzzy #, fuzzy
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "이 회원은 구독으로부터 당신을 차단해왔다." msgstr "이 회원은 구독으로부터 당신을 차단해왔다."
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "예약 구독을 추가 할 수 없습니다." msgstr "예약 구독을 추가 할 수 없습니다."
@ -6109,47 +6117,47 @@ msgstr "메시지"
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "몇 초 전" msgstr "몇 초 전"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "1분 전" msgstr "1분 전"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "%d분 전" msgstr "%d분 전"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "1시간 전" msgstr "1시간 전"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "%d시간 전" msgstr "%d시간 전"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "하루 전" msgstr "하루 전"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "%d일 전" msgstr "%d일 전"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "1달 전" msgstr "1달 전"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "%d달 전" msgstr "%d달 전"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "1년 전" msgstr "1년 전"

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:21:36+0000\n" "PO-Revision-Date: 2010-02-11 08:15:23+0000\n"
"Language-Team: Macedonian\n" "Language-Team: Macedonian\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n" "X-Language-Code: mk\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -183,22 +183,23 @@ msgstr "Подновувања од %1$s и пријатели на %2$s!"
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "API методот не е пронајден." msgstr "API методот не е пронајден."
@ -483,12 +484,11 @@ msgstr "групи на %s"
#: actions/apioauthauthorize.php:101 #: actions/apioauthauthorize.php:101
msgid "No oauth_token parameter provided." msgid "No oauth_token parameter provided."
msgstr "" msgstr "Нема наведено oauth_token параметар."
#: actions/apioauthauthorize.php:106 #: actions/apioauthauthorize.php:106
#, fuzzy
msgid "Invalid token." msgid "Invalid token."
msgstr "Погрешна големина." msgstr "Погрешен жетон."
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
#: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/deletenotice.php:157 actions/disfavor.php:74
@ -530,9 +530,9 @@ msgid ""
msgstr "Жетонот на барањето %s е одобрен. Заменете го со жетон за пристап." msgstr "Жетонот на барањето %s е одобрен. Заменете го со жетон за пристап."
#: actions/apioauthauthorize.php:227 #: actions/apioauthauthorize.php:227
#, fuzzy, php-format #, php-format
msgid "The request token %s has been denied and revoked." msgid "The request token %s has been denied and revoked."
msgstr "Жетонот на барањето %s е одбиен." msgstr "Жетонот на барањето %s е одбиен и поништен."
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
#: actions/designadminpanel.php:103 actions/editapplication.php:139 #: actions/designadminpanel.php:103 actions/editapplication.php:139
@ -558,6 +558,9 @@ msgid ""
"the ability to <strong>%3$s</strong> your %4$s account data. You should only " "the ability to <strong>%3$s</strong> your %4$s account data. You should only "
"give access to your %4$s account to third parties you trust." "give access to your %4$s account to third parties you trust."
msgstr "" msgstr ""
"Програмот <strong>%1$s</strong> од <strong>%2$s</strong> би сакал да може да "
"<strong>%3$s</strong> податоците за Вашата %4$s сметка. Треба да дозволувате "
"пристап до Вашата %4$s сметка само на трети страни на кои им верувате."
#: actions/apioauthauthorize.php:310 lib/action.php:441 #: actions/apioauthauthorize.php:310 lib/action.php:441
msgid "Account" msgid "Account"
@ -565,7 +568,8 @@ msgstr "Сметка"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Прекар" msgstr "Прекар"
@ -756,7 +760,7 @@ msgstr "Оригинал"
msgid "Preview" msgid "Preview"
msgstr "Преглед" msgstr "Преглед"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "Бриши" msgstr "Бриши"
@ -824,7 +828,7 @@ msgstr "Не го блокирај корисников"
msgid "Yes" msgid "Yes"
msgstr "Да" msgstr "Да"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "Блокирај го корисников" msgstr "Блокирај го корисников"
@ -925,14 +929,12 @@ msgid "Notices"
msgstr "Забелешки" msgstr "Забелешки"
#: actions/deleteapplication.php:63 #: actions/deleteapplication.php:63
#, fuzzy
msgid "You must be logged in to delete an application." msgid "You must be logged in to delete an application."
msgstr "Мора да сте најавени за да можете да уредувате програми." msgstr "Мора да сте најавени за да можете да избришете програм."
#: actions/deleteapplication.php:71 #: actions/deleteapplication.php:71
#, fuzzy
msgid "Application not found." msgid "Application not found."
msgstr "Инфо за програмот" msgstr "Програмот не е пронајден."
#: actions/deleteapplication.php:78 actions/editapplication.php:77 #: actions/deleteapplication.php:78 actions/editapplication.php:77
#: actions/showapplication.php:94 #: actions/showapplication.php:94
@ -946,29 +948,26 @@ msgid "There was a problem with your session token."
msgstr "Се појави проблем со Вашиот сесиски жетон." msgstr "Се појави проблем со Вашиот сесиски жетон."
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 #: actions/deleteapplication.php:123 actions/deleteapplication.php:147
#, fuzzy
msgid "Delete application" msgid "Delete application"
msgstr "Уреди програм" msgstr "Избриши програм"
#: actions/deleteapplication.php:149 #: actions/deleteapplication.php:149
#, fuzzy
msgid "" msgid ""
"Are you sure you want to delete this application? This will clear all data " "Are you sure you want to delete this application? This will clear all data "
"about the application from the database, including all existing user " "about the application from the database, including all existing user "
"connections." "connections."
msgstr "" msgstr ""
"Дали се сигурни дека сакате да го избришете овој корисник? Ова воедно ќе ги " "Дали се сигурни дека сакате да го избришете овој програм? Ова воедно ќе ги "
"избрише сите податоци за корисникот од базата, без да може да се вратат." "избрише сите податоци за програмот од базата, вклучувајќи ги сите постоечки "
"поврзувања."
#: actions/deleteapplication.php:156 #: actions/deleteapplication.php:156
#, fuzzy
msgid "Do not delete this application" msgid "Do not delete this application"
msgstr "Не ја бриши оваа забелешка" msgstr "Не го бриши овој програм"
#: actions/deleteapplication.php:160 #: actions/deleteapplication.php:160
#, fuzzy
msgid "Delete this application" msgid "Delete this application"
msgstr "Икона за овој програм" msgstr "Избриши го програмов"
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 #: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 #: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
@ -1179,9 +1178,8 @@ msgid "Name is too long (max 255 chars)."
msgstr "Името е предолго (максимум 255 знаци)." msgstr "Името е предолго (максимум 255 знаци)."
#: actions/editapplication.php:183 actions/newapplication.php:162 #: actions/editapplication.php:183 actions/newapplication.php:162
#, fuzzy
msgid "Name already in use. Try another one." msgid "Name already in use. Try another one."
msgstr "Тој прекар е во употреба. Одберете друг." msgstr "Тоа име е во употреба. Одберете друго."
#: actions/editapplication.php:186 actions/newapplication.php:168 #: actions/editapplication.php:186 actions/newapplication.php:168
msgid "Description is required." msgid "Description is required."
@ -1445,7 +1443,7 @@ msgstr "Оваа белешка е веќе омилена!"
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "Тргни од омилени" msgstr "Тргни од омилени"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "Популарни забелешки" msgstr "Популарни забелешки"
@ -1593,7 +1591,7 @@ msgstr "Корисникот е веќе блокиран од оваа груп
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Корисникот не членува во групата." msgstr "Корисникот не членува во групата."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
msgid "Block user from group" msgid "Block user from group"
msgstr "Блокирај корисник од група" msgstr "Блокирај корисник од група"
@ -1697,19 +1695,19 @@ msgstr "Листа на корисниците на овааг група."
msgid "Admin" msgid "Admin"
msgstr "Администратор" msgstr "Администратор"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Блокирај" msgstr "Блокирај"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Направи го корисникот администратор на групата" msgstr "Направи го корисникот администратор на групата"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "Направи го/ја администратор" msgstr "Направи го/ја администратор"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Направи го корисникот администратор" msgstr "Направи го корисникот администратор"
@ -2095,7 +2093,8 @@ msgstr "Запамети ме"
#: actions/login.php:237 actions/register.php:480 #: actions/login.php:237 actions/register.php:480
msgid "Automatically login in the future; not for shared computers!" msgid "Automatically login in the future; not for shared computers!"
msgstr "" msgstr ""
"Следниот пат најавете се автоматски; не за компјутери кои ги делите со други!" "Следниот пат најавете се автоматски; не е за компјутери кои ги делите со "
"други!"
#: actions/login.php:247 #: actions/login.php:247
msgid "Lost or forgotten password?" msgid "Lost or forgotten password?"
@ -2118,21 +2117,21 @@ msgstr ""
"Најавете се со Вашето корисничко име и лозинка. Сè уште немате корисничко " "Најавете се со Вашето корисничко име и лозинка. Сè уште немате корисничко "
"име? [Регистрирајте](%%action.register%%) нова сметка." "име? [Регистрирајте](%%action.register%%) нова сметка."
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "Само администратор може да направи друг корисник администратор." msgstr "Само администратор може да направи друг корисник администратор."
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, php-format #, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "%1$s веќе е администратор на групата „%2$s“." msgstr "%1$s веќе е администратор на групата „%2$s“."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, php-format #, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "Не можам да добијам евиденција за членство на %1$s во групата %2$s." msgstr "Не можам да добијам евиденција за членство на %1$s во групата %2$s."
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, php-format #, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "Не можам да го направам корисникот %1$s администратор на групата %2$s." msgstr "Не можам да го направам корисникот %1$s администратор на групата %2$s."
@ -2336,8 +2335,8 @@ msgstr "тип на содржини "
msgid "Only " msgid "Only "
msgstr "Само " msgstr "Само "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Ова не е поддржан формат на податотека." msgstr "Ова не е поддржан формат на податотека."
@ -2715,7 +2714,7 @@ msgstr "Биографија"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Локација" msgstr "Локација"
@ -2904,7 +2903,7 @@ msgstr ""
"Зошто не [регистрирате сметка](%%action.register%%) и станете прв што ќе " "Зошто не [регистрирате сметка](%%action.register%%) и станете прв што ќе "
"објави!" "објави!"
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Облак од ознаки" msgstr "Облак од ознаки"
@ -3347,71 +3346,71 @@ msgstr "Зачувај нагодувања на веб-страницата"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "Мора да сте најавени за да можете да го видите програмот." msgstr "Мора да сте најавени за да можете да го видите програмот."
#: actions/showapplication.php:158 #: actions/showapplication.php:157
msgid "Application profile" msgid "Application profile"
msgstr "Профил на програмот" msgstr "Профил на програмот"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "Икона" msgstr "Икона"
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
msgid "Name" msgid "Name"
msgstr "Име" msgstr "Име"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
msgid "Organization" msgid "Organization"
msgstr "Организација" msgstr "Организација"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "Опис" msgstr "Опис"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "Статистики" msgstr "Статистики"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, fuzzy, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "создал: %1$s - основен пристап: %2$s - %3$d корисници" msgstr "Создадено од %1$s - основен пристап: %2$s - %3$d корисници"
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "Дејства на програмот" msgstr "Дејства на програмот"
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "Клуч за промена и тајна" msgstr "Клуч за промена и тајна"
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "Инфо за програмот" msgstr "Инфо за програмот"
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "Потрошувачки клуч" msgstr "Потрошувачки клуч"
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "Потрошувачка тајна" msgstr "Потрошувачка тајна"
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "URL на жетонот на барањето" msgstr "URL на жетонот на барањето"
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "URL на пристапниот жетон" msgstr "URL на пристапниот жетон"
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "Одобри URL" msgstr "Одобри URL"
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
@ -3419,6 +3418,12 @@ msgstr ""
"Напомена: Поддржуваме HMAC-SHA1 потписи. Не поддржуваме потпишување со прост " "Напомена: Поддржуваме HMAC-SHA1 потписи. Не поддржуваме потпишување со прост "
"текст." "текст."
#: actions/showapplication.php:309
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
"Дали сте сигурни дека сакате да го смените вашиот кориснички клуч и тајната "
"фраза?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, php-format #, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3491,12 +3496,12 @@ msgid "Group profile"
msgstr "Профил на група" msgstr "Профил на група"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "URL" msgstr "URL"
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "Забелешка" msgstr "Забелешка"
@ -4079,7 +4084,8 @@ msgstr "Означи %s"
msgid "User profile" msgid "User profile"
msgstr "Кориснички профил" msgstr "Кориснички профил"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "Фото" msgstr "Фото"
@ -4138,7 +4144,7 @@ msgstr "Во барањето нема id на профилот."
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "Претплатата е откажана" msgstr "Претплатата е откажана"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4227,36 +4233,36 @@ msgstr ""
"за забелешките на овој корисник. Ако не сакате да се претплатите, едноставно " "за забелешките на овој корисник. Ако не сакате да се претплатите, едноставно "
"кликнете на „Одбиј“" "кликнете на „Одбиј“"
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "Лиценца" msgstr "Лиценца"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Прифати" msgstr "Прифати"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Претплати се на корисников" msgstr "Претплати се на корисников"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "Одбиј" msgstr "Одбиј"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "Одбиј ја оваа претплата" msgstr "Одбиј ја оваа претплата"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "Нема барање за проверка!" msgstr "Нема барање за проверка!"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "Претплатата е одобрена" msgstr "Претплатата е одобрена"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
"with the sites instructions for details on how to authorize the " "with the sites instructions for details on how to authorize the "
@ -4266,11 +4272,11 @@ msgstr ""
"инструкциите на веб-страницата за да дознаете како се одобрува претплата. " "инструкциите на веб-страницата за да дознаете како се одобрува претплата. "
"Жетонот на Вашата претплата е:" "Жетонот на Вашата претплата е:"
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "Претплатата е одбиена" msgstr "Претплатата е одбиена"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
"with the sites instructions for details on how to fully reject the " "with the sites instructions for details on how to fully reject the "
@ -4280,37 +4286,37 @@ msgstr ""
"инструкциите на веб-страницата за да дознаете како се одбива претплата во " "инструкциите на веб-страницата за да дознаете како се одбива претплата во "
"потполност." "потполност."
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "URI-то на следачот „%s“ не е пронајдено тука." msgstr "URI-то на следачот „%s“ не е пронајдено тука."
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "Следениот URI „%s“ е предолг." msgstr "Следениот URI „%s“ е предолг."
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "Следеното URI „%s“ е за локален корисник." msgstr "Следеното URI „%s“ е за локален корисник."
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "Профилната URL-адреса „%s“ е за локален корисник." msgstr "Профилната URL-адреса „%s“ е за локален корисник."
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "URL-адресата „%s“ за аватар е неважечка." msgstr "URL-адресата „%s“ за аватар е неважечка."
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, php-format #, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "Не можам да ја прочитам URL на аватарот „%s“." msgstr "Не можам да ја прочитам URL на аватарот „%s“."
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, php-format #, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "Погрешен тип на слика за URL на аватарот „%s“." msgstr "Погрешен тип на слика за URL на аватарот „%s“."
@ -4509,7 +4515,7 @@ msgstr "Проблем при зачувувањето на групното п
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Одговор од внесот во базата: %s" msgstr "Одговор од внесот во базата: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -4792,13 +4798,13 @@ msgstr "Конфигурација на патеки"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "Конфигурација на сесиите" msgstr "Конфигурација на сесиите"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
"API-ресурсот бара да може и да чита и да запишува, а вие можете само да " "API-ресурсот бара да може и да чита и да запишува, а вие можете само да "
"читате." "читате."
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "Неуспешен обид за API-заверка, прекар = %1$s, прокси = %2$s, IP = %3$s" msgstr "Неуспешен обид за API-заверка, прекар = %1$s, прокси = %2$s, IP = %3$s"
@ -5246,8 +5252,8 @@ msgstr "Подигни податотека"
msgid "" msgid ""
"You can upload your personal background image. The maximum file size is 2MB." "You can upload your personal background image. The maximum file size is 2MB."
msgstr "" msgstr ""
"Не можете да подигнете личната позадинска слика. Максималната дозволена " "Можете да подигнете лична позадинска слика. Максималната дозволена големина "
"големина изнесува 2МБ." "изнесува 2МБ."
#: lib/designsettings.php:418 #: lib/designsettings.php:418
msgid "Design defaults restored." msgid "Design defaults restored."
@ -5909,11 +5915,11 @@ msgstr "Грешка во внесувањето на оддалечениот
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Дуплирај забелешка" msgstr "Дуплирај забелешка"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "Блокирани сте од претплаќање." msgstr "Блокирани сте од претплаќање."
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Не може да се внесе нова претплата." msgstr "Не може да се внесе нова претплата."
@ -6020,7 +6026,7 @@ msgstr "Повтори ја забелешкава"
#: lib/router.php:665 #: lib/router.php:665
msgid "No single user defined for single-user mode." msgid "No single user defined for single-user mode."
msgstr "" msgstr "Не е зададен корисник за еднокорисничкиот режим."
#: lib/sandboxform.php:67 #: lib/sandboxform.php:67
msgid "Sandbox" msgid "Sandbox"
@ -6188,47 +6194,47 @@ msgstr "Порака"
msgid "Moderate" msgid "Moderate"
msgstr "Модерирај" msgstr "Модерирај"
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "пред неколку секунди" msgstr "пред неколку секунди"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "пред една минута" msgstr "пред една минута"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "пред %d минути" msgstr "пред %d минути"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "пред еден час" msgstr "пред еден час"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "пред %d часа" msgstr "пред %d часа"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "пред еден ден" msgstr "пред еден ден"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "пред %d денови" msgstr "пред %d денови"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "пред еден месец" msgstr "пред еден месец"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "пред %d месеца" msgstr "пред %d месеца"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "пред една година" msgstr "пред една година"

File diff suppressed because it is too large Load Diff

View File

@ -10,12 +10,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:21:47+0000\n" "PO-Revision-Date: 2010-02-11 08:15:32+0000\n"
"Language-Team: Dutch\n" "Language-Team: Dutch\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n" "X-Language-Code: nl\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -182,22 +182,23 @@ msgstr "Updates van %1$s en vrienden op %2$s."
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "De API-functie is niet aangetroffen." msgstr "De API-functie is niet aangetroffen."
@ -487,12 +488,11 @@ msgstr "groepen op %s"
#: actions/apioauthauthorize.php:101 #: actions/apioauthauthorize.php:101
msgid "No oauth_token parameter provided." msgid "No oauth_token parameter provided."
msgstr "" msgstr "Er is geen oauth_token parameter opgegeven."
#: actions/apioauthauthorize.php:106 #: actions/apioauthauthorize.php:106
#, fuzzy
msgid "Invalid token." msgid "Invalid token."
msgstr "Ongeldige afmetingen." msgstr "Ongeldig token."
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
#: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/deletenotice.php:157 actions/disfavor.php:74
@ -540,9 +540,9 @@ msgstr ""
"toegangstoken." "toegangstoken."
#: actions/apioauthauthorize.php:227 #: actions/apioauthauthorize.php:227
#, fuzzy, php-format #, php-format
msgid "The request token %s has been denied and revoked." msgid "The request token %s has been denied and revoked."
msgstr "Het verzoektoken %s is geweigerd." msgstr "Het verzoektoken %s is geweigerd en ingetrokken."
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
#: actions/designadminpanel.php:103 actions/editapplication.php:139 #: actions/designadminpanel.php:103 actions/editapplication.php:139
@ -568,6 +568,9 @@ msgid ""
"the ability to <strong>%3$s</strong> your %4$s account data. You should only " "the ability to <strong>%3$s</strong> your %4$s account data. You should only "
"give access to your %4$s account to third parties you trust." "give access to your %4$s account to third parties you trust."
msgstr "" msgstr ""
"De <strong>applicatie %1$s</strong> van <strong>%2$s</strong> vraagt toegang "
"van het type \"<strong>%3$s</strong> tot uw gebruikersgegevens. Geef alleen "
"toegang tot uw gebruiker bij %4$s aan derde partijen die u vertrouwt."
#: actions/apioauthauthorize.php:310 lib/action.php:441 #: actions/apioauthauthorize.php:310 lib/action.php:441
msgid "Account" msgid "Account"
@ -575,7 +578,8 @@ msgstr "Gebruiker"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Gebruikersnaam" msgstr "Gebruikersnaam"
@ -765,7 +769,7 @@ msgstr "Origineel"
msgid "Preview" msgid "Preview"
msgstr "Voorvertoning" msgstr "Voorvertoning"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "Verwijderen" msgstr "Verwijderen"
@ -833,7 +837,7 @@ msgstr "Gebruiker niet blokkeren"
msgid "Yes" msgid "Yes"
msgstr "Ja" msgstr "Ja"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "Deze gebruiker blokkeren" msgstr "Deze gebruiker blokkeren"
@ -934,14 +938,12 @@ msgid "Notices"
msgstr "Mededelingen" msgstr "Mededelingen"
#: actions/deleteapplication.php:63 #: actions/deleteapplication.php:63
#, fuzzy
msgid "You must be logged in to delete an application." msgid "You must be logged in to delete an application."
msgstr "U moet aangemeld zijn om een applicatie te kunnen bewerken." msgstr "U moet aangemeld zijn om een applicatie te kunnen verwijderen."
#: actions/deleteapplication.php:71 #: actions/deleteapplication.php:71
#, fuzzy
msgid "Application not found." msgid "Application not found."
msgstr "Applicatieinformatie" msgstr "De applicatie is niet gevonden."
#: actions/deleteapplication.php:78 actions/editapplication.php:77 #: actions/deleteapplication.php:78 actions/editapplication.php:77
#: actions/showapplication.php:94 #: actions/showapplication.php:94
@ -955,30 +957,26 @@ msgid "There was a problem with your session token."
msgstr "Er is een probleem met uw sessietoken." msgstr "Er is een probleem met uw sessietoken."
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 #: actions/deleteapplication.php:123 actions/deleteapplication.php:147
#, fuzzy
msgid "Delete application" msgid "Delete application"
msgstr "Applicatie bewerken" msgstr "Applicatie verwijderen"
#: actions/deleteapplication.php:149 #: actions/deleteapplication.php:149
#, fuzzy
msgid "" msgid ""
"Are you sure you want to delete this application? This will clear all data " "Are you sure you want to delete this application? This will clear all data "
"about the application from the database, including all existing user " "about the application from the database, including all existing user "
"connections." "connections."
msgstr "" msgstr ""
"Weet u zeker dat u deze gebruiker wilt verwijderen? Door deze handeling " "Weet u zeker dat u deze applicatie wilt verwijderen? Door deze handeling "
"worden alle gegevens van deze gebruiker uit de database verwijderd. Het is " "worden alle gegevens van deze applicatie uit de database verwijderd, "
"niet mogelijk ze terug te zetten." "inclusief alle bestaande gebruikersverbindingen."
#: actions/deleteapplication.php:156 #: actions/deleteapplication.php:156
#, fuzzy
msgid "Do not delete this application" msgid "Do not delete this application"
msgstr "Deze mededeling niet verwijderen" msgstr "Deze applicatie niet verwijderen"
#: actions/deleteapplication.php:160 #: actions/deleteapplication.php:160
#, fuzzy
msgid "Delete this application" msgid "Delete this application"
msgstr "Icoon voor deze applicatie" msgstr "Deze applicatie verwijderen"
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 #: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 #: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
@ -1190,10 +1188,8 @@ msgid "Name is too long (max 255 chars)."
msgstr "De naam is te lang (maximaal 255 tekens)." msgstr "De naam is te lang (maximaal 255 tekens)."
#: actions/editapplication.php:183 actions/newapplication.php:162 #: actions/editapplication.php:183 actions/newapplication.php:162
#, fuzzy
msgid "Name already in use. Try another one." msgid "Name already in use. Try another one."
msgstr "" msgstr "Deze naam wordt al gebruikt. Kies een andere."
"De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam."
#: actions/editapplication.php:186 actions/newapplication.php:168 #: actions/editapplication.php:186 actions/newapplication.php:168
msgid "Description is required." msgid "Description is required."
@ -1306,7 +1302,7 @@ msgstr "Annuleren"
#: actions/emailsettings.php:121 #: actions/emailsettings.php:121
msgid "Email address" msgid "Email address"
msgstr "E-mailadressen" msgstr "E-mailadres"
#: actions/emailsettings.php:123 #: actions/emailsettings.php:123
msgid "Email address, like \"UserName@example.org\"" msgid "Email address, like \"UserName@example.org\""
@ -1456,7 +1452,7 @@ msgstr "Deze mededeling staat al in uw favorietenlijst."
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "Van favotietenlijst verwijderen" msgstr "Van favotietenlijst verwijderen"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "Populaire mededelingen" msgstr "Populaire mededelingen"
@ -1609,7 +1605,7 @@ msgstr "Deze gebruiker is al de toegang tot de groep ontzegd."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "De gebruiker is geen lid van de groep." msgstr "De gebruiker is geen lid van de groep."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
msgid "Block user from group" msgid "Block user from group"
msgstr "Gebruiker toegang tot de groep blokkeren" msgstr "Gebruiker toegang tot de groep blokkeren"
@ -1713,19 +1709,19 @@ msgstr "Ledenlijst van deze groep"
msgid "Admin" msgid "Admin"
msgstr "Beheerder" msgstr "Beheerder"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Blokkeren" msgstr "Blokkeren"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Deze gebruiker groepsbeheerder maken" msgstr "Deze gebruiker groepsbeheerder maken"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "Beheerder maken" msgstr "Beheerder maken"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Deze gebruiker beheerder maken" msgstr "Deze gebruiker beheerder maken"
@ -2137,21 +2133,21 @@ msgstr ""
"Meld u aan met uw gebruikersnaam en wachtwoord. Hebt u nog geen " "Meld u aan met uw gebruikersnaam en wachtwoord. Hebt u nog geen "
"gebruikersnaam? [Registreer een nieuwe gebruiker](%%action.register%%)." "gebruikersnaam? [Registreer een nieuwe gebruiker](%%action.register%%)."
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "Alleen beheerders kunnen andere gebruikers beheerder maken." msgstr "Alleen beheerders kunnen andere gebruikers beheerder maken."
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, php-format #, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "%1$s is al beheerder van de groep \"%2$s\"" msgstr "%1$s is al beheerder van de groep \"%2$s\""
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, php-format #, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "Het was niet mogelijk te bevestigen dat %1$s lid is van de groep %2$s." msgstr "Het was niet mogelijk te bevestigen dat %1$s lid is van de groep %2$s."
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, php-format #, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "Het is niet mogelijk %1$s beheerder te maken van de groep %2$s." msgstr "Het is niet mogelijk %1$s beheerder te maken van de groep %2$s."
@ -2358,8 +2354,8 @@ msgstr "inhoudstype "
msgid "Only " msgid "Only "
msgstr "Alleen " msgstr "Alleen "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Geen ondersteund gegevensformaat." msgstr "Geen ondersteund gegevensformaat."
@ -2735,7 +2731,7 @@ msgstr "Beschrijving"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Locatie" msgstr "Locatie"
@ -2927,7 +2923,7 @@ msgstr ""
"U kunt een [gebruiker registeren](%%action.register%%) en dan de eerste zijn " "U kunt een [gebruiker registeren](%%action.register%%) en dan de eerste zijn "
"die er een plaatst!" "die er een plaatst!"
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Woordwolk" msgstr "Woordwolk"
@ -3371,71 +3367,71 @@ msgstr "Websiteinstellingen opslaan"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "U moet aangemeld zijn om een applicatie te kunnen bekijken." msgstr "U moet aangemeld zijn om een applicatie te kunnen bekijken."
#: actions/showapplication.php:158 #: actions/showapplication.php:157
msgid "Application profile" msgid "Application profile"
msgstr "Applicatieprofiel" msgstr "Applicatieprofiel"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "Icoon" msgstr "Icoon"
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
msgid "Name" msgid "Name"
msgstr "Naam" msgstr "Naam"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
msgid "Organization" msgid "Organization"
msgstr "Organisatie" msgstr "Organisatie"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "Beschrijving" msgstr "Beschrijving"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "Statistieken" msgstr "Statistieken"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, fuzzy, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "aangemaakt door %1$s - standaardtoegang \"%2$s\" - %3$d gebruikers" msgstr "Aangemaakt door %1$s - standaardtoegang \"%2$s\" - %3$d gebruikers"
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "Applicatiehandelingen" msgstr "Applicatiehandelingen"
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "Sleutel en wachtwoord op nieuw instellen" msgstr "Sleutel en wachtwoord op nieuw instellen"
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "Applicatieinformatie" msgstr "Applicatieinformatie"
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "Gebruikerssleutel" msgstr "Gebruikerssleutel"
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "Gebruikerswachtwoord" msgstr "Gebruikerswachtwoord"
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "URL voor verzoektoken" msgstr "URL voor verzoektoken"
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "URL voor toegangstoken" msgstr "URL voor toegangstoken"
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "Autorisatie-URL" msgstr "Autorisatie-URL"
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
@ -3443,6 +3439,11 @@ msgstr ""
"Opmerking: HMAC-SHA1 ondertekening wordt ondersteund. Ondertekening in " "Opmerking: HMAC-SHA1 ondertekening wordt ondersteund. Ondertekening in "
"platte tekst is niet mogelijk." "platte tekst is niet mogelijk."
#: actions/showapplication.php:309
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
"Weet u zeker dat u uw gebruikerssleutel en geheime code wilt verwijderen?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, php-format #, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3516,12 +3517,12 @@ msgid "Group profile"
msgstr "Groepsprofiel" msgstr "Groepsprofiel"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "URL" msgstr "URL"
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "Opmerking" msgstr "Opmerking"
@ -4065,7 +4066,7 @@ msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:123 actions/subscriptions.php:127
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%s luistert nergens naar." msgstr "%s volgt niemand."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:194
msgid "Jabber" msgid "Jabber"
@ -4108,7 +4109,8 @@ msgstr "Label %s"
msgid "User profile" msgid "User profile"
msgstr "Gebruikersprofiel" msgstr "Gebruikersprofiel"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "Foto" msgstr "Foto"
@ -4169,7 +4171,7 @@ msgstr "Het profiel-ID was niet aanwezig in het verzoek."
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "Het abonnement is opgezegd" msgstr "Het abonnement is opgezegd"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4259,36 +4261,36 @@ msgstr ""
"aangegeven dat u zich op de mededelingen van een gebruiker wilt abonneren, " "aangegeven dat u zich op de mededelingen van een gebruiker wilt abonneren, "
"klik dan op \"Afwijzen\"." "klik dan op \"Afwijzen\"."
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "Licentie" msgstr "Licentie"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Aanvaarden" msgstr "Aanvaarden"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Abonnement geautoriseerd" msgstr "Abonneer mij op deze gebruiker"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "Afwijzen" msgstr "Afwijzen"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "Dit abonnement weigeren" msgstr "Dit abonnement weigeren"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "Geen autorisatieverzoek!" msgstr "Geen autorisatieverzoek!"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "Het abonnement is geautoriseerd" msgstr "Het abonnement is geautoriseerd"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
"with the sites instructions for details on how to authorize the " "with the sites instructions for details on how to authorize the "
@ -4298,11 +4300,11 @@ msgstr ""
"Controleer de instructies van de site voor informatie over het volledig " "Controleer de instructies van de site voor informatie over het volledig "
"afwijzen van een abonnement. Uw abonnementstoken is:" "afwijzen van een abonnement. Uw abonnementstoken is:"
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "Het abonnement is afgewezen" msgstr "Het abonnement is afgewezen"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
"with the sites instructions for details on how to fully reject the " "with the sites instructions for details on how to fully reject the "
@ -4312,37 +4314,37 @@ msgstr ""
"Controleer de instructies van de site voor informatie over het volledig " "Controleer de instructies van de site voor informatie over het volledig "
"afwijzen van een abonnement." "afwijzen van een abonnement."
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "De abonnee-URI \"%s\" is hier niet te vinden." msgstr "De abonnee-URI \"%s\" is hier niet te vinden."
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "De URI \"%s\" voor de stream is te lang." msgstr "De URI \"%s\" voor de stream is te lang."
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "de URI \"%s\" voor de stream is een lokale gebruiker." msgstr "de URI \"%s\" voor de stream is een lokale gebruiker."
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "De profiel-URL \"%s\" is niet geldig." msgstr "De profiel-URL %s is van een lokale gebruiker."
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "De avatar-URL \"%s\" is niet geldig." msgstr "De avatar-URL \"%s\" is niet geldig."
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, php-format #, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "Het was niet mogelijk de avatar-URL \"%s\" te lezen." msgstr "Het was niet mogelijk de avatar-URL \"%s\" te lezen."
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, php-format #, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "Er staat een verkeerd afbeeldingsttype op de avatar-URL \"%s\"." msgstr "Er staat een verkeerd afbeeldingsttype op de avatar-URL \"%s\"."
@ -4421,9 +4423,9 @@ msgid ""
"for more details. " "for more details. "
msgstr "" msgstr ""
"Dit programma wordt verspreid in de hoop dat het bruikbaar is, maar ZONDER " "Dit programma wordt verspreid in de hoop dat het bruikbaar is, maar ZONDER "
"ENIGE GARANTIE; zonder zelfde impliciete garantie van VERMARKTBAARHEID of " "ENIGE GARANTIE; zelfs zonder de impliciete garantie van VERKOOPBAARHEID of "
"GESCHIKTHEID VOOR EEN SPECIFIEK DOEL. Zie de GNU Affero General Public " "GESCHIKTHEID VOOR EEN BEPAALD DOEL. Zie de GNU Affero General Public License "
"License voor meer details. " "voor meer details. "
#: actions/version.php:180 #: actions/version.php:180
#, php-format #, php-format
@ -4549,7 +4551,7 @@ msgid "DB error inserting reply: %s"
msgstr "" msgstr ""
"Er is een databasefout opgetreden bij het invoegen van het antwoord: %s" "Er is een databasefout opgetreden bij het invoegen van het antwoord: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -4832,13 +4834,13 @@ msgstr "Padinstellingen"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "Sessieinstellingen" msgstr "Sessieinstellingen"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
"Het API-programma heeft lezen-en-schrijventoegang nodig, maar u hebt alleen " "Het API-programma heeft lezen-en-schrijventoegang nodig, maar u hebt alleen "
"maar leestoegang." "maar leestoegang."
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5957,11 +5959,11 @@ msgstr ""
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Duplicaatmelding" msgstr "Duplicaatmelding"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "U mag zich niet abonneren." msgstr "U mag zich niet abonneren."
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Kon nieuw abonnement niet toevoegen." msgstr "Kon nieuw abonnement niet toevoegen."
@ -6068,7 +6070,7 @@ msgstr "Deze mededeling herhalen"
#: lib/router.php:665 #: lib/router.php:665
msgid "No single user defined for single-user mode." msgid "No single user defined for single-user mode."
msgstr "" msgstr "Er is geen gebruiker gedefinieerd voor single-usermodus."
#: lib/sandboxform.php:67 #: lib/sandboxform.php:67
msgid "Sandbox" msgid "Sandbox"
@ -6235,47 +6237,47 @@ msgstr "Bericht"
msgid "Moderate" msgid "Moderate"
msgstr "Modereren" msgstr "Modereren"
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "een paar seconden geleden" msgstr "een paar seconden geleden"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "ongeveer een minuut geleden" msgstr "ongeveer een minuut geleden"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "ongeveer %d minuten geleden" msgstr "ongeveer %d minuten geleden"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "ongeveer een uur geleden" msgstr "ongeveer een uur geleden"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "ongeveer %d uur geleden" msgstr "ongeveer %d uur geleden"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "ongeveer een dag geleden" msgstr "ongeveer een dag geleden"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "ongeveer %d dagen geleden" msgstr "ongeveer %d dagen geleden"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "ongeveer een maand geleden" msgstr "ongeveer een maand geleden"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "ongeveer %d maanden geleden" msgstr "ongeveer %d maanden geleden"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "ongeveer een jaar geleden" msgstr "ongeveer een jaar geleden"

View File

@ -7,12 +7,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:21:43+0000\n" "PO-Revision-Date: 2010-02-11 08:15:29+0000\n"
"Language-Team: Norwegian Nynorsk\n" "Language-Team: Norwegian Nynorsk\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nn\n" "X-Language-Code: nn\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -179,22 +179,23 @@ msgstr "Oppdateringar frå %1$s og vener på %2$s!"
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "Fann ikkje API-metode." msgstr "Fann ikkje API-metode."
@ -570,7 +571,8 @@ msgstr "Konto"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Kallenamn" msgstr "Kallenamn"
@ -763,7 +765,7 @@ msgstr "Original"
msgid "Preview" msgid "Preview"
msgstr "Forhandsvis" msgstr "Forhandsvis"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "Slett" msgstr "Slett"
@ -830,7 +832,7 @@ msgstr "Lås opp brukaren"
msgid "Yes" msgid "Yes"
msgstr "Jau" msgstr "Jau"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "Blokkér denne brukaren" msgstr "Blokkér denne brukaren"
@ -1478,7 +1480,7 @@ msgstr "Denne notisen er alt ein favoritt!"
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "Fjern favoritt" msgstr "Fjern favoritt"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "Populære notisar" msgstr "Populære notisar"
@ -1633,7 +1635,7 @@ msgstr "Brukar har blokkert deg."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Du er ikkje medlem av den gruppa." msgstr "Du er ikkje medlem av den gruppa."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
#, fuzzy #, fuzzy
msgid "Block user from group" msgid "Block user from group"
msgstr "Blokker brukaren" msgstr "Blokker brukaren"
@ -1738,21 +1740,21 @@ msgstr "Ei liste over brukarane i denne gruppa."
msgid "Admin" msgid "Admin"
msgstr "Administrator" msgstr "Administrator"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Blokkér" msgstr "Blokkér"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
#, fuzzy #, fuzzy
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Du må være administrator for å redigere gruppa" msgstr "Du må være administrator for å redigere gruppa"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
#, fuzzy #, fuzzy
msgid "Make Admin" msgid "Make Admin"
msgstr "Administrator" msgstr "Administrator"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "" msgstr ""
@ -2147,21 +2149,21 @@ msgstr ""
"%action.register%%) ein ny konto, eller prøv [OpenID](%%action.openidlogin%" "%action.register%%) ein ny konto, eller prøv [OpenID](%%action.openidlogin%"
"%)." "%)."
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "" msgstr ""
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "Brukar har blokkert deg." msgstr "Brukar har blokkert deg."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "Kunne ikkje fjerne %s fra %s gruppa " msgstr "Kunne ikkje fjerne %s fra %s gruppa "
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "Du må være administrator for å redigere gruppa" msgstr "Du må være administrator for å redigere gruppa"
@ -2368,8 +2370,8 @@ msgstr "Kopla til"
msgid "Only " msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Ikkje eit støtta dataformat." msgstr "Ikkje eit støtta dataformat."
@ -2763,7 +2765,7 @@ msgstr "Om meg"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Plassering" msgstr "Plassering"
@ -2944,7 +2946,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Emne sky" msgstr "Emne sky"
@ -3389,79 +3391,84 @@ msgstr "Avatar-innstillingar"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "Du må være innlogga for å melde deg ut av ei gruppe." msgstr "Du må være innlogga for å melde deg ut av ei gruppe."
#: actions/showapplication.php:158 #: actions/showapplication.php:157
#, fuzzy #, fuzzy
msgid "Application profile" msgid "Application profile"
msgstr "Notisen har ingen profil" msgstr "Notisen har ingen profil"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
#, fuzzy #, fuzzy
msgid "Name" msgid "Name"
msgstr "Kallenamn" msgstr "Kallenamn"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
#, fuzzy #, fuzzy
msgid "Organization" msgid "Organization"
msgstr "Paginering" msgstr "Paginering"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "Beskriving" msgstr "Beskriving"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "Statistikk" msgstr "Statistikk"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "" msgstr ""
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Sikker på at du vil sletta notisen?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3526,12 +3533,12 @@ msgid "Group profile"
msgstr "Gruppe profil" msgstr "Gruppe profil"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "URL" msgstr "URL"
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "Merknad" msgstr "Merknad"
@ -4095,7 +4102,8 @@ msgstr "Merkelapp %s"
msgid "User profile" msgid "User profile"
msgstr "Brukarprofil" msgstr "Brukarprofil"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "Bilete" msgstr "Bilete"
@ -4159,7 +4167,7 @@ msgstr "Ingen profil-ID i førespurnaden."
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "Fjerna tinging" msgstr "Fjerna tinging"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4252,38 +4260,38 @@ msgstr ""
"Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne " "Sjekk desse detaljane og forsikre deg om at du vil abonnere på denne "
"brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\"" "brukaren sine notisar. Vist du ikkje har bedt om dette, klikk \"Avbryt\""
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
#, fuzzy #, fuzzy
msgid "License" msgid "License"
msgstr "lisens." msgstr "lisens."
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Godta" msgstr "Godta"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Lagre tinging for brukar: %s" msgstr "Lagre tinging for brukar: %s"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "Avslå" msgstr "Avslå"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
#, fuzzy #, fuzzy
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "%s tingarar" msgstr "%s tingarar"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "Ingen autoriserings-spørjing!" msgstr "Ingen autoriserings-spørjing!"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "Tinging autorisert" msgstr "Tinging autorisert"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
@ -4294,11 +4302,11 @@ msgstr ""
"Sjekk med sida sine instruksjonar for korleis autorisering til tinginga skal " "Sjekk med sida sine instruksjonar for korleis autorisering til tinginga skal "
"gjennomførast. Ditt tingings teikn er: " "gjennomførast. Ditt tingings teikn er: "
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "Tinging avvist" msgstr "Tinging avvist"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
@ -4308,37 +4316,37 @@ msgstr ""
"Tingina har blitt avvist, men ingen henvisnings URL er tilgjengleg. Sjekk " "Tingina har blitt avvist, men ingen henvisnings URL er tilgjengleg. Sjekk "
"med sida sine instruksjonar for korleis ein skal avvise tinginga." "med sida sine instruksjonar for korleis ein skal avvise tinginga."
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, fuzzy, php-format #, fuzzy, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "Kan ikkje lesa brukarbilete-URL «%s»" msgstr "Kan ikkje lesa brukarbilete-URL «%s»"
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, fuzzy, php-format #, fuzzy, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "Feil biletetype for '%s'" msgstr "Feil biletetype for '%s'"
@ -4526,7 +4534,7 @@ msgstr "Eit problem oppstod ved lagring av notis."
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Databasefeil, kan ikkje lagra svar: %s" msgstr "Databasefeil, kan ikkje lagra svar: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -4821,11 +4829,11 @@ msgstr "SMS bekreftelse"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "SMS bekreftelse" msgstr "SMS bekreftelse"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5840,12 +5848,12 @@ msgstr "Feil med å henta inn ekstern profil"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Slett notis" msgstr "Slett notis"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
#, fuzzy #, fuzzy
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "Brukaren tillet deg ikkje å tinga meldingane sine." msgstr "Brukaren tillet deg ikkje å tinga meldingane sine."
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Kan ikkje leggja til ny tinging." msgstr "Kan ikkje leggja til ny tinging."
@ -6136,47 +6144,47 @@ msgstr "Melding"
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "eit par sekund sidan" msgstr "eit par sekund sidan"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "omtrent eitt minutt sidan" msgstr "omtrent eitt minutt sidan"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "~%d minutt sidan" msgstr "~%d minutt sidan"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "omtrent ein time sidan" msgstr "omtrent ein time sidan"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "~%d timar sidan" msgstr "~%d timar sidan"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "omtrent ein dag sidan" msgstr "omtrent ein dag sidan"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "~%d dagar sidan" msgstr "~%d dagar sidan"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "omtrent ein månad sidan" msgstr "omtrent ein månad sidan"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "~%d månadar sidan" msgstr "~%d månadar sidan"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "omtrent eitt år sidan" msgstr "omtrent eitt år sidan"

View File

@ -10,8 +10,8 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:21:50+0000\n" "PO-Revision-Date: 2010-02-11 08:15:35+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n" "Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Polish <pl@li.org>\n" "Language-Team: Polish <pl@li.org>\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -19,7 +19,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n" "|| n%100>=20) ? 1 : 2);\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pl\n" "X-Language-Code: pl\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -185,22 +185,23 @@ msgstr "Aktualizacje z %1$s i przyjaciół na %2$s."
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "Nie odnaleziono metody API." msgstr "Nie odnaleziono metody API."
@ -484,12 +485,11 @@ msgstr "grupy na %s"
#: actions/apioauthauthorize.php:101 #: actions/apioauthauthorize.php:101
msgid "No oauth_token parameter provided." msgid "No oauth_token parameter provided."
msgstr "" msgstr "Nie podano parametru oauth_token."
#: actions/apioauthauthorize.php:106 #: actions/apioauthauthorize.php:106
#, fuzzy
msgid "Invalid token." msgid "Invalid token."
msgstr "Nieprawidłowy rozmiar." msgstr "Nieprawidłowy token."
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
#: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/deletenotice.php:157 actions/disfavor.php:74
@ -530,9 +530,9 @@ msgstr ""
"Token żądania %s został upoważniony. Proszę wymienić go na token dostępu." "Token żądania %s został upoważniony. Proszę wymienić go na token dostępu."
#: actions/apioauthauthorize.php:227 #: actions/apioauthauthorize.php:227
#, fuzzy, php-format #, php-format
msgid "The request token %s has been denied and revoked." msgid "The request token %s has been denied and revoked."
msgstr "Token żądania %s został odrzucony." msgstr "Token żądania %s został odrzucony lub unieważniony."
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
#: actions/designadminpanel.php:103 actions/editapplication.php:139 #: actions/designadminpanel.php:103 actions/editapplication.php:139
@ -558,6 +558,9 @@ msgid ""
"the ability to <strong>%3$s</strong> your %4$s account data. You should only " "the ability to <strong>%3$s</strong> your %4$s account data. You should only "
"give access to your %4$s account to third parties you trust." "give access to your %4$s account to third parties you trust."
msgstr "" msgstr ""
"Aplikacja <strong>%1$s</strong> autorstwa <strong>%2$s</strong> chciałaby "
"uzyskać możliwość <strong>%3$s</strong> danych konta %4$s. Dostęp do konta %4"
"$s powinien być udostępniany tylko zaufanym osobom trzecim."
#: actions/apioauthauthorize.php:310 lib/action.php:441 #: actions/apioauthauthorize.php:310 lib/action.php:441
msgid "Account" msgid "Account"
@ -565,7 +568,8 @@ msgstr "Konto"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Pseudonim" msgstr "Pseudonim"
@ -752,7 +756,7 @@ msgstr "Oryginał"
msgid "Preview" msgid "Preview"
msgstr "Podgląd" msgstr "Podgląd"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "Usuń" msgstr "Usuń"
@ -819,7 +823,7 @@ msgstr "Nie blokuj tego użytkownika"
msgid "Yes" msgid "Yes"
msgstr "Tak" msgstr "Tak"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "Zablokuj tego użytkownika" msgstr "Zablokuj tego użytkownika"
@ -920,14 +924,12 @@ msgid "Notices"
msgstr "Wpisy" msgstr "Wpisy"
#: actions/deleteapplication.php:63 #: actions/deleteapplication.php:63
#, fuzzy
msgid "You must be logged in to delete an application." msgid "You must be logged in to delete an application."
msgstr "Musisz być zalogowany, aby zmodyfikować aplikację." msgstr "Musisz być zalogowany, aby usunąć aplikację."
#: actions/deleteapplication.php:71 #: actions/deleteapplication.php:71
#, fuzzy
msgid "Application not found." msgid "Application not found."
msgstr "Informacje o aplikacji" msgstr "Nie odnaleziono aplikacji."
#: actions/deleteapplication.php:78 actions/editapplication.php:77 #: actions/deleteapplication.php:78 actions/editapplication.php:77
#: actions/showapplication.php:94 #: actions/showapplication.php:94
@ -941,29 +943,25 @@ msgid "There was a problem with your session token."
msgstr "Wystąpił problem z tokenem sesji." msgstr "Wystąpił problem z tokenem sesji."
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 #: actions/deleteapplication.php:123 actions/deleteapplication.php:147
#, fuzzy
msgid "Delete application" msgid "Delete application"
msgstr "Zmodyfikuj aplikację" msgstr "Usuń aplikację"
#: actions/deleteapplication.php:149 #: actions/deleteapplication.php:149
#, fuzzy
msgid "" msgid ""
"Are you sure you want to delete this application? This will clear all data " "Are you sure you want to delete this application? This will clear all data "
"about the application from the database, including all existing user " "about the application from the database, including all existing user "
"connections." "connections."
msgstr "" msgstr ""
"Na pewno usunąć tego użytkownika? Wyczyści to wszystkie dane o użytkowniku z " "Na pewno usunąć tę aplikację? Wyczyści to wszystkie dane o aplikacji z bazy "
"bazy danych, bez utworzenia kopii zapasowej." "danych, w tym wszystkie istniejące połączenia użytkowników."
#: actions/deleteapplication.php:156 #: actions/deleteapplication.php:156
#, fuzzy
msgid "Do not delete this application" msgid "Do not delete this application"
msgstr "Nie usuwaj tego wpisu" msgstr "Nie usuwaj tej aplikacji"
#: actions/deleteapplication.php:160 #: actions/deleteapplication.php:160
#, fuzzy
msgid "Delete this application" msgid "Delete this application"
msgstr "Ikona tej aplikacji" msgstr "Usuń tę aplikację"
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 #: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 #: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
@ -1172,9 +1170,8 @@ msgid "Name is too long (max 255 chars)."
msgstr "Nazwa jest za długa (maksymalnie 255 znaków)." msgstr "Nazwa jest za długa (maksymalnie 255 znaków)."
#: actions/editapplication.php:183 actions/newapplication.php:162 #: actions/editapplication.php:183 actions/newapplication.php:162
#, fuzzy
msgid "Name already in use. Try another one." msgid "Name already in use. Try another one."
msgstr "Pseudonim jest już używany. Spróbuj innego." msgstr "Nazwa jest już używana. Spróbuj innej."
#: actions/editapplication.php:186 actions/newapplication.php:168 #: actions/editapplication.php:186 actions/newapplication.php:168
msgid "Description is required." msgid "Description is required."
@ -1436,7 +1433,7 @@ msgstr "Ten wpis jest już ulubiony."
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "Usuń wpis z ulubionych" msgstr "Usuń wpis z ulubionych"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "Popularne wpisy" msgstr "Popularne wpisy"
@ -1584,7 +1581,7 @@ msgstr "Użytkownik został już zablokował w grupie."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Użytkownik nie jest członkiem grupy." msgstr "Użytkownik nie jest członkiem grupy."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
msgid "Block user from group" msgid "Block user from group"
msgstr "Zablokuj użytkownika w grupie" msgstr "Zablokuj użytkownika w grupie"
@ -1682,19 +1679,19 @@ msgstr "Lista użytkowników znajdujących się w tej grupie."
msgid "Admin" msgid "Admin"
msgstr "Administrator" msgstr "Administrator"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Zablokuj" msgstr "Zablokuj"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Uczyń użytkownika administratorem grupy" msgstr "Uczyń użytkownika administratorem grupy"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "Uczyń administratorem" msgstr "Uczyń administratorem"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Uczyń tego użytkownika administratorem" msgstr "Uczyń tego użytkownika administratorem"
@ -2102,21 +2099,21 @@ msgstr ""
"Zaloguj się za pomocą nazwy użytkownika i hasła. Nie masz ich jeszcze? " "Zaloguj się za pomocą nazwy użytkownika i hasła. Nie masz ich jeszcze? "
"[Zarejestruj](%%action.register%%) nowe konto." "[Zarejestruj](%%action.register%%) nowe konto."
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "Tylko administrator może uczynić innego użytkownika administratorem." msgstr "Tylko administrator może uczynić innego użytkownika administratorem."
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, php-format #, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "Użytkownika %1$s jest już administratorem grupy \"%2$s\"." msgstr "Użytkownika %1$s jest już administratorem grupy \"%2$s\"."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, php-format #, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "Nie można uzyskać wpisu członkostwa użytkownika %1$s w grupie %2$s." msgstr "Nie można uzyskać wpisu członkostwa użytkownika %1$s w grupie %2$s."
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, php-format #, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "Nie można uczynić %1$s administratorem grupy %2$s." msgstr "Nie można uczynić %1$s administratorem grupy %2$s."
@ -2317,8 +2314,8 @@ msgstr "typ zawartości "
msgid "Only " msgid "Only "
msgstr "Tylko " msgstr "Tylko "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "To nie jest obsługiwany format danych." msgstr "To nie jest obsługiwany format danych."
@ -2694,7 +2691,7 @@ msgstr "O mnie"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Położenie" msgstr "Położenie"
@ -2882,7 +2879,7 @@ msgstr ""
"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " "Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz "
"pierwszym, który go wyśle." "pierwszym, który go wyśle."
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Chmura znaczników" msgstr "Chmura znaczników"
@ -3322,71 +3319,71 @@ msgstr "Zapisz ustawienia witryny"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "Musisz być zalogowany, aby wyświetlić aplikację." msgstr "Musisz być zalogowany, aby wyświetlić aplikację."
#: actions/showapplication.php:158 #: actions/showapplication.php:157
msgid "Application profile" msgid "Application profile"
msgstr "Profil aplikacji" msgstr "Profil aplikacji"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "Ikona" msgstr "Ikona"
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
msgid "Name" msgid "Name"
msgstr "Nazwa" msgstr "Nazwa"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
msgid "Organization" msgid "Organization"
msgstr "Organizacja" msgstr "Organizacja"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "Opis" msgstr "Opis"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "Statystyki" msgstr "Statystyki"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, fuzzy, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "utworzona przez %1$s - domyślny dostęp: %2$s - %3$d użytkowników" msgstr "Utworzona przez %1$s - domyślny dostęp: %2$s - %3$d użytkowników"
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "Czynności aplikacji" msgstr "Czynności aplikacji"
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "Przywrócenie klucza i sekretu" msgstr "Przywrócenie klucza i sekretu"
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "Informacje o aplikacji" msgstr "Informacje o aplikacji"
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "Klucz klienta" msgstr "Klucz klienta"
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "Sekret klienta" msgstr "Sekret klienta"
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "Adres URL tokenu żądania" msgstr "Adres URL tokenu żądania"
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "Adres URL tokenu żądania" msgstr "Adres URL tokenu żądania"
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "Adres URL upoważnienia" msgstr "Adres URL upoważnienia"
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
@ -3394,6 +3391,10 @@ msgstr ""
"Uwaga: obsługiwane są podpisy HMAC-SHA1. Metoda podpisu w zwykłym tekście " "Uwaga: obsługiwane są podpisy HMAC-SHA1. Metoda podpisu w zwykłym tekście "
"nie jest obsługiwana." "nie jest obsługiwana."
#: actions/showapplication.php:309
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Jesteś pewien, że chcesz przywrócić klucz i sekret klienta?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, php-format #, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3466,12 +3467,12 @@ msgid "Group profile"
msgstr "Profil grupy" msgstr "Profil grupy"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "Adres URL" msgstr "Adres URL"
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "Wpis" msgstr "Wpis"
@ -4052,7 +4053,8 @@ msgstr "Znacznik %s"
msgid "User profile" msgid "User profile"
msgstr "Profil użytkownika" msgstr "Profil użytkownika"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "Zdjęcie" msgstr "Zdjęcie"
@ -4112,7 +4114,7 @@ msgstr "Brak identyfikatora profilu w żądaniu."
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "Zrezygnowano z subskrypcji" msgstr "Zrezygnowano z subskrypcji"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4201,36 +4203,36 @@ msgstr ""
"wpisy tego użytkownika. Jeżeli nie prosiłeś o subskrypcję czyichś wpisów, " "wpisy tego użytkownika. Jeżeli nie prosiłeś o subskrypcję czyichś wpisów, "
"naciśnij \"Odrzuć\"." "naciśnij \"Odrzuć\"."
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "Licencja" msgstr "Licencja"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Zaakceptuj" msgstr "Zaakceptuj"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Subskrybuj tego użytkownika" msgstr "Subskrybuj tego użytkownika"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "Odrzuć" msgstr "Odrzuć"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "Odrzuć tę subskrypcję" msgstr "Odrzuć tę subskrypcję"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "Brak żądania upoważnienia." msgstr "Brak żądania upoważnienia."
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "Upoważniono subskrypcję" msgstr "Upoważniono subskrypcję"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
"with the sites instructions for details on how to authorize the " "with the sites instructions for details on how to authorize the "
@ -4239,11 +4241,11 @@ msgstr ""
"Subskrypcja została upoważniona, ale nie przekazano zwrotnego adresu URL. " "Subskrypcja została upoważniona, ale nie przekazano zwrotnego adresu URL. "
"Sprawdź w instrukcjach witryny, jak upoważnić subskrypcję. Token subskrypcji:" "Sprawdź w instrukcjach witryny, jak upoważnić subskrypcję. Token subskrypcji:"
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "Odrzucono subskrypcję" msgstr "Odrzucono subskrypcję"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
"with the sites instructions for details on how to fully reject the " "with the sites instructions for details on how to fully reject the "
@ -4252,37 +4254,37 @@ msgstr ""
"Subskrypcja została odrzucona, ale nie przekazano zwrotnego adresu URL. " "Subskrypcja została odrzucona, ale nie przekazano zwrotnego adresu URL. "
"Sprawdź w instrukcjach witryny, jak w pełni odrzucić subskrypcję." "Sprawdź w instrukcjach witryny, jak w pełni odrzucić subskrypcję."
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "Adres URI nasłuchującego \"%s\" nie został tutaj odnaleziony." msgstr "Adres URI nasłuchującego \"%s\" nie został tutaj odnaleziony."
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "Adres URI nasłuchującego \"%s\" jest za długi." msgstr "Adres URI nasłuchującego \"%s\" jest za długi."
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "Adres URI nasłuchującego \"%s\" jest lokalnym użytkownikiem." msgstr "Adres URI nasłuchującego \"%s\" jest lokalnym użytkownikiem."
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "Adres URL profilu \"%s\" jest dla lokalnego użytkownika." msgstr "Adres URL profilu \"%s\" jest dla lokalnego użytkownika."
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "Adres URL \"%s\" jest nieprawidłowy." msgstr "Adres URL \"%s\" jest nieprawidłowy."
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, php-format #, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "Nie można odczytać adresu URL awatara \"%s\"." msgstr "Nie można odczytać adresu URL awatara \"%s\"."
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, php-format #, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "Błędny typ obrazu dla adresu URL awatara \"%s\"." msgstr "Błędny typ obrazu dla adresu URL awatara \"%s\"."
@ -4482,7 +4484,7 @@ msgstr "Problem podczas zapisywania skrzynki odbiorczej grupy."
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Błąd bazy danych podczas wprowadzania odpowiedzi: %s" msgstr "Błąd bazy danych podczas wprowadzania odpowiedzi: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -4765,13 +4767,13 @@ msgstr "Konfiguracja ścieżek"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "Konfiguracja sesji" msgstr "Konfiguracja sesji"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
"Zasób API wymaga dostępu do zapisu i do odczytu, ale powiadasz dostęp tylko " "Zasób API wymaga dostępu do zapisu i do odczytu, ale powiadasz dostęp tylko "
"do odczytu." "do odczytu."
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5882,11 +5884,11 @@ msgstr "Błąd podczas wprowadzania zdalnego profilu"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Duplikat wpisu" msgstr "Duplikat wpisu"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "Zablokowano subskrybowanie." msgstr "Zablokowano subskrybowanie."
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Nie można wprowadzić nowej subskrypcji." msgstr "Nie można wprowadzić nowej subskrypcji."
@ -5994,6 +5996,7 @@ msgstr "Powtórz ten wpis"
#: lib/router.php:665 #: lib/router.php:665
msgid "No single user defined for single-user mode." msgid "No single user defined for single-user mode."
msgstr "" msgstr ""
"Nie określono pojedynczego użytkownika dla trybu pojedynczego użytkownika."
#: lib/sandboxform.php:67 #: lib/sandboxform.php:67
msgid "Sandbox" msgid "Sandbox"
@ -6160,47 +6163,47 @@ msgstr "Wiadomość"
msgid "Moderate" msgid "Moderate"
msgstr "Moderuj" msgstr "Moderuj"
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "kilka sekund temu" msgstr "kilka sekund temu"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "około minutę temu" msgstr "około minutę temu"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "około %d minut temu" msgstr "około %d minut temu"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "około godzinę temu" msgstr "około godzinę temu"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "około %d godzin temu" msgstr "około %d godzin temu"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "blisko dzień temu" msgstr "blisko dzień temu"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "około %d dni temu" msgstr "około %d dni temu"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "około miesiąc temu" msgstr "około miesiąc temu"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "około %d miesięcy temu" msgstr "około %d miesięcy temu"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "około rok temu" msgstr "około rok temu"

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:21:54+0000\n" "PO-Revision-Date: 2010-02-11 08:15:39+0000\n"
"Language-Team: Portuguese\n" "Language-Team: Portuguese\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n" "X-Language-Code: pt\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -182,22 +182,23 @@ msgstr "Actualizações de %1$s e amigos no %2$s!"
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "Método da API não encontrado." msgstr "Método da API não encontrado."
@ -563,7 +564,8 @@ msgstr "Conta"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Utilizador" msgstr "Utilizador"
@ -752,7 +754,7 @@ msgstr "Original"
msgid "Preview" msgid "Preview"
msgstr "Antevisão" msgstr "Antevisão"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "Apagar" msgstr "Apagar"
@ -819,7 +821,7 @@ msgstr "Não bloquear este utilizador"
msgid "Yes" msgid "Yes"
msgstr "Sim" msgstr "Sim"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "Bloquear este utilizador" msgstr "Bloquear este utilizador"
@ -1455,7 +1457,7 @@ msgstr "Esta nota já é uma favorita!"
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "Retirar das favoritas" msgstr "Retirar das favoritas"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "Notas populares" msgstr "Notas populares"
@ -1602,7 +1604,7 @@ msgstr "Acesso do utilizador ao grupo já foi bloqueado."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Utilizador não é membro do grupo." msgstr "Utilizador não é membro do grupo."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
msgid "Block user from group" msgid "Block user from group"
msgstr "Bloquear acesso do utilizador ao grupo" msgstr "Bloquear acesso do utilizador ao grupo"
@ -1704,19 +1706,19 @@ msgstr "Uma lista dos utilizadores neste grupo."
msgid "Admin" msgid "Admin"
msgstr "Gestor" msgstr "Gestor"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Bloquear" msgstr "Bloquear"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Tornar utilizador o gestor do grupo" msgstr "Tornar utilizador o gestor do grupo"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "Tornar Gestor" msgstr "Tornar Gestor"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Tornar este utilizador um gestor" msgstr "Tornar este utilizador um gestor"
@ -2124,21 +2126,21 @@ msgstr ""
"Entrar com o seu nome de utilizador e senha. Ainda não está registado? " "Entrar com o seu nome de utilizador e senha. Ainda não está registado? "
"[Registe](%%action.register%%) uma conta." "[Registe](%%action.register%%) uma conta."
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "Só um gestor pode tornar outro utilizador num gestor." msgstr "Só um gestor pode tornar outro utilizador num gestor."
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, php-format #, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "%1$s já é um administrador do grupo \"%2$s\"." msgstr "%1$s já é um administrador do grupo \"%2$s\"."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, php-format #, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "Não existe registo de %1$s ter entrado no grupo %2$s." msgstr "Não existe registo de %1$s ter entrado no grupo %2$s."
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, php-format #, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "Não é possível tornar %1$s administrador do grupo %2$s." msgstr "Não é possível tornar %1$s administrador do grupo %2$s."
@ -2345,8 +2347,8 @@ msgstr "tipo de conteúdo "
msgid "Only " msgid "Only "
msgstr "Apenas " msgstr "Apenas "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Formato de dados não suportado." msgstr "Formato de dados não suportado."
@ -2728,7 +2730,7 @@ msgstr "Biografia"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Localidade" msgstr "Localidade"
@ -2915,7 +2917,7 @@ msgstr ""
"Podia [registar uma conta](%%action.register%%) e ser a primeira pessoa a " "Podia [registar uma conta](%%action.register%%) e ser a primeira pessoa a "
"publicar uma!" "publicar uma!"
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Nuvem de categorias" msgstr "Nuvem de categorias"
@ -3360,79 +3362,84 @@ msgstr "Gravar configurações do site"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "Precisa de iniciar uma sessão para deixar um grupo." msgstr "Precisa de iniciar uma sessão para deixar um grupo."
#: actions/showapplication.php:158 #: actions/showapplication.php:157
#, fuzzy #, fuzzy
msgid "Application profile" msgid "Application profile"
msgstr "Nota não tem perfil" msgstr "Nota não tem perfil"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
msgid "Name" msgid "Name"
msgstr "Nome" msgstr "Nome"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
#, fuzzy #, fuzzy
msgid "Organization" msgid "Organization"
msgstr "Paginação" msgstr "Paginação"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "Descrição" msgstr "Descrição"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "Estatísticas" msgstr "Estatísticas"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
#, fuzzy #, fuzzy
msgid "Authorize URL" msgid "Authorize URL"
msgstr "Autor" msgstr "Autor"
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Tem a certeza de que quer apagar esta nota?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3505,12 +3512,12 @@ msgid "Group profile"
msgstr "Perfil do grupo" msgstr "Perfil do grupo"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "URL" msgstr "URL"
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "Anotação" msgstr "Anotação"
@ -4091,7 +4098,8 @@ msgstr "Categoria %s"
msgid "User profile" msgid "User profile"
msgstr "Perfil" msgstr "Perfil"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "Foto" msgstr "Foto"
@ -4150,7 +4158,7 @@ msgstr "O pedido não tem a identificação do perfil."
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "Subscrição cancelada" msgstr "Subscrição cancelada"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4239,36 +4247,36 @@ msgstr ""
"subscrever as notas deste utilizador. Se não fez um pedido para subscrever " "subscrever as notas deste utilizador. Se não fez um pedido para subscrever "
"as notas de alguém, simplesmente clique \"Rejeitar\"." "as notas de alguém, simplesmente clique \"Rejeitar\"."
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "Licença" msgstr "Licença"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Aceitar" msgstr "Aceitar"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Subscrever este utilizador" msgstr "Subscrever este utilizador"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "Rejeitar" msgstr "Rejeitar"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "Rejeitar esta subscrição" msgstr "Rejeitar esta subscrição"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "Não há pedido de autorização!" msgstr "Não há pedido de autorização!"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "Subscrição autorizada" msgstr "Subscrição autorizada"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
"with the sites instructions for details on how to authorize the " "with the sites instructions for details on how to authorize the "
@ -4278,11 +4286,11 @@ msgstr ""
"Verifique as instruções do site para saber como autorizar a subscrição. A " "Verifique as instruções do site para saber como autorizar a subscrição. A "
"sua chave de subscrição é:" "sua chave de subscrição é:"
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "Subscrição rejeitada" msgstr "Subscrição rejeitada"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
"with the sites instructions for details on how to fully reject the " "with the sites instructions for details on how to fully reject the "
@ -4292,37 +4300,37 @@ msgstr ""
"Verifique as instruções do site para saber como rejeitar completamente a " "Verifique as instruções do site para saber como rejeitar completamente a "
"subscrição." "subscrição."
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "A listener URI %s não foi encontrada aqui." msgstr "A listener URI %s não foi encontrada aqui."
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "URI do escutado %s é demasiado longo." msgstr "URI do escutado %s é demasiado longo."
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "URI do ouvido %s é um utilizador local." msgstr "URI do ouvido %s é um utilizador local."
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "A URL %s do perfil é de um utilizador local." msgstr "A URL %s do perfil é de um utilizador local."
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "A URL %s do avatar é inválida." msgstr "A URL %s do avatar é inválida."
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, php-format #, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "Não é possível ler a URL do avatar %s." msgstr "Não é possível ler a URL do avatar %s."
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, php-format #, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "Tipo de imagem incorrecto para o avatar da URL %s." msgstr "Tipo de imagem incorrecto para o avatar da URL %s."
@ -4522,7 +4530,7 @@ msgstr "Problema na gravação da nota."
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Ocorreu um erro na base de dados ao inserir a resposta: %s" msgstr "Ocorreu um erro na base de dados ao inserir a resposta: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -4804,11 +4812,11 @@ msgstr "Configuração das localizações"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "Configuração do estilo" msgstr "Configuração do estilo"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5917,11 +5925,11 @@ msgstr "Erro ao inserir perfil remoto"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Nota duplicada" msgstr "Nota duplicada"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "Foi bloqueado de fazer subscrições" msgstr "Foi bloqueado de fazer subscrições"
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Não foi possível inserir nova subscrição." msgstr "Não foi possível inserir nova subscrição."
@ -6195,47 +6203,47 @@ msgstr "Mensagem"
msgid "Moderate" msgid "Moderate"
msgstr "Moderar" msgstr "Moderar"
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "há alguns segundos" msgstr "há alguns segundos"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "há cerca de um minuto" msgstr "há cerca de um minuto"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "há cerca de %d minutos" msgstr "há cerca de %d minutos"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "há cerca de uma hora" msgstr "há cerca de uma hora"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "há cerca de %d horas" msgstr "há cerca de %d horas"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "há cerca de um dia" msgstr "há cerca de um dia"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "há cerca de %d dias" msgstr "há cerca de %d dias"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "há cerca de um mês" msgstr "há cerca de um mês"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "há cerca de %d meses" msgstr "há cerca de %d meses"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "há cerca de um ano" msgstr "há cerca de um ano"

View File

@ -2,6 +2,7 @@
# #
# Author@translatewiki.net: Aracnus # Author@translatewiki.net: Aracnus
# Author@translatewiki.net: Ewout # Author@translatewiki.net: Ewout
# Author@translatewiki.net: McDutchie
# Author@translatewiki.net: Vuln # Author@translatewiki.net: Vuln
# -- # --
# This file is distributed under the same license as the StatusNet package. # This file is distributed under the same license as the StatusNet package.
@ -10,12 +11,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-14 20:05+0000\n"
"PO-Revision-Date: 2010-02-02 19:21:58+0000\n" "PO-Revision-Date: 2010-02-14 20:07:20+0000\n"
"Language-Team: Brazilian Portuguese\n" "Language-Team: Brazilian Portuguese\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62476); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt-br\n" "X-Language-Code: pt-br\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -26,14 +27,12 @@ msgid "Access"
msgstr "Acesso" msgstr "Acesso"
#: actions/accessadminpanel.php:65 #: actions/accessadminpanel.php:65
#, fuzzy
msgid "Site access settings" msgid "Site access settings"
msgstr "Salvar as configurações do site" msgstr "Configurações de acesso ao site"
#: actions/accessadminpanel.php:158 #: actions/accessadminpanel.php:158
#, fuzzy
msgid "Registration" msgid "Registration"
msgstr "Registrar-se" msgstr "Registro"
#: actions/accessadminpanel.php:161 #: actions/accessadminpanel.php:161
msgid "Private" msgid "Private"
@ -72,9 +71,8 @@ msgid "Save"
msgstr "Salvar" msgstr "Salvar"
#: actions/accessadminpanel.php:189 #: actions/accessadminpanel.php:189
#, fuzzy
msgid "Save access settings" msgid "Save access settings"
msgstr "Salvar as configurações do site" msgstr "Salvar as configurações de acesso"
#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/all.php:63 actions/public.php:97 actions/replies.php:92
#: actions/showfavorites.php:137 actions/tag.php:51 #: actions/showfavorites.php:137 actions/tag.php:51
@ -174,8 +172,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "Você e amigos" msgstr "Você e amigos"
#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #: actions/allrss.php:119 actions/apitimelinefriends.php:119
#: actions/apitimelinehome.php:122 #: actions/apitimelinehome.php:120
#, php-format #, php-format
msgid "Updates from %1$s and friends on %2$s!" msgid "Updates from %1$s and friends on %2$s!"
msgstr "Atualizações de %1$s e amigos no %2$s!" msgstr "Atualizações de %1$s e amigos no %2$s!"
@ -185,22 +183,23 @@ msgstr "Atualizações de %1$s e amigos no %2$s!"
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:182 actions/apitimelinehome.php:184
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:194 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "O método da API não foi encontrado!" msgstr "O método da API não foi encontrado!"
@ -486,12 +485,11 @@ msgstr "grupos no %s"
#: actions/apioauthauthorize.php:101 #: actions/apioauthauthorize.php:101
msgid "No oauth_token parameter provided." msgid "No oauth_token parameter provided."
msgstr "" msgstr "Não foi fornecido nenhum parâmetro oauth_token"
#: actions/apioauthauthorize.php:106 #: actions/apioauthauthorize.php:106
#, fuzzy
msgid "Invalid token." msgid "Invalid token."
msgstr "Tamanho inválido." msgstr "Token inválido."
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
#: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/deletenotice.php:157 actions/disfavor.php:74
@ -517,16 +515,14 @@ msgid "Invalid nickname / password!"
msgstr "Nome de usuário e/ou senha inválido(s)!" msgstr "Nome de usuário e/ou senha inválido(s)!"
#: actions/apioauthauthorize.php:159 #: actions/apioauthauthorize.php:159
#, fuzzy
msgid "Database error deleting OAuth application user." msgid "Database error deleting OAuth application user."
msgstr "" msgstr ""
"Erro no banco de dados durante a exclusão do aplicativo OAuth do usuário." "Erro no banco de dados durante a exclusão do usuário da aplicação OAuth."
#: actions/apioauthauthorize.php:185 #: actions/apioauthauthorize.php:185
#, fuzzy
msgid "Database error inserting OAuth application user." msgid "Database error inserting OAuth application user."
msgstr "" msgstr ""
"Erro no banco de dados durante a inserção do aplicativo OAuth do usuário." "Erro no banco de dados durante a inserção do usuário da aplicativo OAuth."
#: actions/apioauthauthorize.php:214 #: actions/apioauthauthorize.php:214
#, php-format #, php-format
@ -538,9 +534,9 @@ msgstr ""
"acesso." "acesso."
#: actions/apioauthauthorize.php:227 #: actions/apioauthauthorize.php:227
#, fuzzy, php-format #, php-format
msgid "The request token %s has been denied and revoked." msgid "The request token %s has been denied and revoked."
msgstr "O token de requisição %s foi negado." msgstr "O token %s solicitado foi negado e revogado."
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
#: actions/designadminpanel.php:103 actions/editapplication.php:139 #: actions/designadminpanel.php:103 actions/editapplication.php:139
@ -566,6 +562,10 @@ msgid ""
"the ability to <strong>%3$s</strong> your %4$s account data. You should only " "the ability to <strong>%3$s</strong> your %4$s account data. You should only "
"give access to your %4$s account to third parties you trust." "give access to your %4$s account to third parties you trust."
msgstr "" msgstr ""
"A aplicação <strong>%1$s</strong> por <strong>%2$s</strong> solicita a "
"permissão para <strong>%3$s</strong> os dados da sua conta %4$s. Você deve "
"fornecer acesso à sua conta %4$s somente para terceiros nos quais você "
"confia."
#: actions/apioauthauthorize.php:310 lib/action.php:441 #: actions/apioauthauthorize.php:310 lib/action.php:441
msgid "Account" msgid "Account"
@ -573,7 +573,8 @@ msgstr "Conta"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Usuário" msgstr "Usuário"
@ -648,7 +649,7 @@ msgstr "Formato não suportado."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%1$s / Favoritas de %2$s" msgstr "%1$s / Favoritas de %2$s"
#: actions/apitimelinefavorites.php:120 #: actions/apitimelinefavorites.php:117
#, php-format #, php-format
msgid "%1$s updates favorited by %2$s / %2$s." msgid "%1$s updates favorited by %2$s / %2$s."
msgstr "%1$s marcadas como favoritas por %2$s / %2$s." msgstr "%1$s marcadas como favoritas por %2$s / %2$s."
@ -659,7 +660,7 @@ msgstr "%1$s marcadas como favoritas por %2$s / %2$s."
msgid "%s timeline" msgid "%s timeline"
msgstr "Mensagens de %s" msgstr "Mensagens de %s"
#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 #: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126
#: actions/userrss.php:92 #: actions/userrss.php:92
#, php-format #, php-format
msgid "Updates from %1$s on %2$s!" msgid "Updates from %1$s on %2$s!"
@ -675,12 +676,12 @@ msgstr "%1$s / Mensagens mencionando %2$s"
msgid "%1$s updates that reply to updates from %2$s / %3$s." msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s mensagens em resposta a mensagens de %2$s / %3$s." msgstr "%1$s mensagens em resposta a mensagens de %2$s / %3$s."
#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #: actions/apitimelinepublic.php:111 actions/publicrss.php:103
#, php-format #, php-format
msgid "%s public timeline" msgid "%s public timeline"
msgstr "Mensagens públicas de %s" msgstr "Mensagens públicas de %s"
#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #: actions/apitimelinepublic.php:115 actions/publicrss.php:105
#, php-format #, php-format
msgid "%s updates from everyone!" msgid "%s updates from everyone!"
msgstr "%s mensagens de todo mundo!" msgstr "%s mensagens de todo mundo!"
@ -690,7 +691,7 @@ msgstr "%s mensagens de todo mundo!"
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "Repetida para %s" msgstr "Repetida para %s"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, php-format #, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "Repetições de %s" msgstr "Repetições de %s"
@ -700,7 +701,7 @@ msgstr "Repetições de %s"
msgid "Notices tagged with %s" msgid "Notices tagged with %s"
msgstr "Mensagens etiquetadas como %s" msgstr "Mensagens etiquetadas como %s"
#: actions/apitimelinetag.php:108 actions/tagrss.php:64 #: actions/apitimelinetag.php:104 actions/tagrss.php:64
#, php-format #, php-format
msgid "Updates tagged with %1$s on %2$s!" msgid "Updates tagged with %1$s on %2$s!"
msgstr "Mensagens etiquetadas como %1$s no %2$s!" msgstr "Mensagens etiquetadas como %1$s no %2$s!"
@ -761,7 +762,7 @@ msgstr "Original"
msgid "Preview" msgid "Preview"
msgstr "Visualização" msgstr "Visualização"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "Excluir" msgstr "Excluir"
@ -829,7 +830,7 @@ msgstr "Não bloquear este usuário"
msgid "Yes" msgid "Yes"
msgstr "Sim" msgstr "Sim"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "Bloquear este usuário" msgstr "Bloquear este usuário"
@ -930,14 +931,12 @@ msgid "Notices"
msgstr "Mensagens" msgstr "Mensagens"
#: actions/deleteapplication.php:63 #: actions/deleteapplication.php:63
#, fuzzy
msgid "You must be logged in to delete an application." msgid "You must be logged in to delete an application."
msgstr "Você precisa estar autenticado para editar uma aplicação." msgstr "Você precisa estar autenticado para excluir uma aplicação."
#: actions/deleteapplication.php:71 #: actions/deleteapplication.php:71
#, fuzzy
msgid "Application not found." msgid "Application not found."
msgstr "Informação da aplicação" msgstr "A aplicação não foi encontrada."
#: actions/deleteapplication.php:78 actions/editapplication.php:77 #: actions/deleteapplication.php:78 actions/editapplication.php:77
#: actions/showapplication.php:94 #: actions/showapplication.php:94
@ -951,29 +950,26 @@ msgid "There was a problem with your session token."
msgstr "Ocorreu um problema com o seu token de sessão." msgstr "Ocorreu um problema com o seu token de sessão."
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 #: actions/deleteapplication.php:123 actions/deleteapplication.php:147
#, fuzzy
msgid "Delete application" msgid "Delete application"
msgstr "Editar a aplicação" msgstr "Excluir a aplicação"
#: actions/deleteapplication.php:149 #: actions/deleteapplication.php:149
#, fuzzy
msgid "" msgid ""
"Are you sure you want to delete this application? This will clear all data " "Are you sure you want to delete this application? This will clear all data "
"about the application from the database, including all existing user " "about the application from the database, including all existing user "
"connections." "connections."
msgstr "" msgstr ""
"Tem certeza que deseja excluir este usuário? Isso irá eliminar todos os " "Tem certeza que deseja excluir esta aplicação? Isso eliminará todos os dados "
"dados deste usuário do banco de dados, sem cópia de segurança." "desta aplicação do banco de dados, incluindo todas as conexões existentes "
"com os usuários."
#: actions/deleteapplication.php:156 #: actions/deleteapplication.php:156
#, fuzzy
msgid "Do not delete this application" msgid "Do not delete this application"
msgstr "Não excluir esta mensagem." msgstr "Não excluir esta aplicação"
#: actions/deleteapplication.php:160 #: actions/deleteapplication.php:160
#, fuzzy
msgid "Delete this application" msgid "Delete this application"
msgstr "Ícone para esta aplicação" msgstr "Excluir esta aplicação"
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 #: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 #: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
@ -1030,8 +1026,8 @@ msgid ""
"Are you sure you want to delete this user? This will clear all data about " "Are you sure you want to delete this user? This will clear all data about "
"the user from the database, without a backup." "the user from the database, without a backup."
msgstr "" msgstr ""
"Tem certeza que deseja excluir este usuário? Isso irá eliminar todos os " "Tem certeza que deseja excluir este usuário? Isso eliminará todos os dados "
"dados deste usuário do banco de dados, sem cópia de segurança." "deste usuário do banco de dados, sem cópia de segurança."
#: actions/deleteuser.php:148 lib/deleteuserform.php:77 #: actions/deleteuser.php:148 lib/deleteuserform.php:77
msgid "Delete this user" msgid "Delete this user"
@ -1154,12 +1150,11 @@ msgid "Add to favorites"
msgstr "Adicionar às favoritas" msgstr "Adicionar às favoritas"
#: actions/doc.php:158 #: actions/doc.php:158
#, fuzzy, php-format #, php-format
msgid "No such document \"%s\"" msgid "No such document \"%s\""
msgstr "Esse documento não existe." msgstr "O documento \"%s\" não existe"
#: actions/editapplication.php:54 #: actions/editapplication.php:54
#, fuzzy
msgid "Edit Application" msgid "Edit Application"
msgstr "Editar a aplicação" msgstr "Editar a aplicação"
@ -1185,9 +1180,8 @@ msgid "Name is too long (max 255 chars)."
msgstr "O nome é muito extenso (máx. 255 caracteres)." msgstr "O nome é muito extenso (máx. 255 caracteres)."
#: actions/editapplication.php:183 actions/newapplication.php:162 #: actions/editapplication.php:183 actions/newapplication.php:162
#, fuzzy
msgid "Name already in use. Try another one." msgid "Name already in use. Try another one."
msgstr "Esta identificação já está em uso. Tente outro." msgstr "Este nome já está em uso. Tente outro."
#: actions/editapplication.php:186 actions/newapplication.php:168 #: actions/editapplication.php:186 actions/newapplication.php:168
msgid "Description is required." msgid "Description is required."
@ -1252,7 +1246,7 @@ msgstr "descrição muito extensa (máximo %d caracteres)."
msgid "Could not update group." msgid "Could not update group."
msgstr "Não foi possível atualizar o grupo." msgstr "Não foi possível atualizar o grupo."
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:423
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Não foi possível criar os apelidos." msgstr "Não foi possível criar os apelidos."
@ -1453,7 +1447,7 @@ msgstr "Essa mensagem já é uma favorita!"
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "Desmarcar a favorita" msgstr "Desmarcar a favorita"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "Mensagens populares" msgstr "Mensagens populares"
@ -1601,7 +1595,7 @@ msgstr "O usuário já está bloqueado no grupo."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "O usuário não é um membro do grupo" msgstr "O usuário não é um membro do grupo"
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
msgid "Block user from group" msgid "Block user from group"
msgstr "Bloquear o usuário no grupo" msgstr "Bloquear o usuário no grupo"
@ -1704,19 +1698,19 @@ msgstr "Uma lista dos usuários deste grupo."
msgid "Admin" msgid "Admin"
msgstr "Admin" msgstr "Admin"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Bloquear" msgstr "Bloquear"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Tornar o usuário um administrador do grupo" msgstr "Tornar o usuário um administrador do grupo"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "Tornar administrador" msgstr "Tornar administrador"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Torna este usuário um administrador" msgstr "Torna este usuário um administrador"
@ -1899,9 +1893,9 @@ msgid "That is not your Jabber ID."
msgstr "Essa não é sua ID do Jabber." msgstr "Essa não é sua ID do Jabber."
#: actions/inbox.php:59 #: actions/inbox.php:59
#, fuzzy, php-format #, php-format
msgid "Inbox for %1$s - page %2$d" msgid "Inbox for %1$s - page %2$d"
msgstr "Recebidas por %s" msgstr "Recebidas por %s - pág. %2$d"
#: actions/inbox.php:62 #: actions/inbox.php:62
#, php-format #, php-format
@ -2127,23 +2121,23 @@ msgstr ""
"Digite seu nome de usuário e senha. Ainda não possui um usuário? [Registre](%" "Digite seu nome de usuário e senha. Ainda não possui um usuário? [Registre](%"
"%action.register%%) uma nova conta." "%action.register%%) uma nova conta."
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "" msgstr ""
"Somente um administrador pode dar privilégios de administração para outro " "Somente um administrador pode dar privilégios de administração para outro "
"usuário." "usuário."
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, php-format #, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "%1$s já é um administrador do grupo \"%2$s\"." msgstr "%1$s já é um administrador do grupo \"%2$s\"."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, php-format #, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "Não foi possível obter o registro de membro de %1$s no grupo %2$s." msgstr "Não foi possível obter o registro de membro de %1$s no grupo %2$s."
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, php-format #, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "Não foi possível tornar %1$s um administrador do grupo %2$s." msgstr "Não foi possível tornar %1$s um administrador do grupo %2$s."
@ -2153,7 +2147,6 @@ msgid "No current status"
msgstr "Nenhuma mensagem atual" msgstr "Nenhuma mensagem atual"
#: actions/newapplication.php:52 #: actions/newapplication.php:52
#, fuzzy
msgid "New Application" msgid "New Application"
msgstr "Nova aplicação" msgstr "Nova aplicação"
@ -2349,8 +2342,8 @@ msgstr "tipo de conteúdo "
msgid "Only " msgid "Only "
msgstr "Apenas " msgstr "Apenas "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Não é um formato de dados suportado." msgstr "Não é um formato de dados suportado."
@ -2415,9 +2408,9 @@ msgid "Login token expired."
msgstr "O token de autenticação expirou." msgstr "O token de autenticação expirou."
#: actions/outbox.php:58 #: actions/outbox.php:58
#, fuzzy, php-format #, php-format
msgid "Outbox for %1$s - page %2$d" msgid "Outbox for %1$s - page %2$d"
msgstr "Enviadas de %s" msgstr "Enviadas por %s - pág. %2$d"
#: actions/outbox.php:61 #: actions/outbox.php:61
#, php-format #, php-format
@ -2727,7 +2720,7 @@ msgstr "Descrição"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Localização" msgstr "Localização"
@ -2915,7 +2908,7 @@ msgstr ""
"Por que você não [registra uma conta](%%action.register%%) pra ser o " "Por que você não [registra uma conta](%%action.register%%) pra ser o "
"primeiro a publicar?" "primeiro a publicar?"
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Nuvem de etiquetas" msgstr "Nuvem de etiquetas"
@ -3360,71 +3353,71 @@ msgstr "Salvar as configurações do site"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "Você deve estar autenticado para visualizar uma aplicação." msgstr "Você deve estar autenticado para visualizar uma aplicação."
#: actions/showapplication.php:158 #: actions/showapplication.php:157
msgid "Application profile" msgid "Application profile"
msgstr "Perfil da aplicação" msgstr "Perfil da aplicação"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "Ícone" msgstr "Ícone"
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
msgid "Name" msgid "Name"
msgstr "Nome" msgstr "Nome"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
msgid "Organization" msgid "Organization"
msgstr "Organização" msgstr "Organização"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "Descrição" msgstr "Descrição"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "Estatísticas" msgstr "Estatísticas"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, fuzzy, php-format #, fuzzy, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "criado por %1$s - %2$s acessa por padrão - %3$d usuários" msgstr "criado por %1$s - %2$s acessa por padrão - %3$d usuários"
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "Ações da aplicação" msgstr "Ações da aplicação"
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "Restaurar a chave e o segredo" msgstr "Restaurar a chave e o segredo"
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "Informação da aplicação" msgstr "Informação da aplicação"
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "Chave do consumidor" msgstr "Chave do consumidor"
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "Segredo do consumidor" msgstr "Segredo do consumidor"
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "URL do token de requisição" msgstr "URL do token de requisição"
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "URL do token de acesso" msgstr "URL do token de acesso"
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "Autorizar a URL" msgstr "Autorizar a URL"
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
@ -3432,6 +3425,11 @@ msgstr ""
"Nota: Nós suportamos assinaturas HMAC-SHA1. Nós não suportamos o método de " "Nota: Nós suportamos assinaturas HMAC-SHA1. Nós não suportamos o método de "
"assinatura em texto plano." "assinatura em texto plano."
#: actions/showapplication.php:309
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Tem certeza que deseja excluir esta mensagem?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3504,12 +3502,12 @@ msgid "Group profile"
msgstr "Perfil do grupo" msgstr "Perfil do grupo"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "Site" msgstr "Site"
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "Mensagem" msgstr "Mensagem"
@ -4090,7 +4088,8 @@ msgstr "Etiqueta %s"
msgid "User profile" msgid "User profile"
msgstr "Perfil do usuário" msgstr "Perfil do usuário"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "Imagem" msgstr "Imagem"
@ -4149,7 +4148,7 @@ msgstr "Nenhuma ID de perfil na requisição."
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "Cancelado" msgstr "Cancelado"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4239,36 +4238,36 @@ msgstr ""
"as mensagens deste usuário. Se você não solicitou assinar as mensagens de " "as mensagens deste usuário. Se você não solicitou assinar as mensagens de "
"alguém, clique em \"Recusar\"." "alguém, clique em \"Recusar\"."
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "Licença" msgstr "Licença"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Aceitar" msgstr "Aceitar"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Assinar este usuário" msgstr "Assinar este usuário"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "Recusar" msgstr "Recusar"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "Recusar esta assinatura" msgstr "Recusar esta assinatura"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "Nenhum pedido de autorização!" msgstr "Nenhum pedido de autorização!"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "A assinatura foi autorizada" msgstr "A assinatura foi autorizada"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
"with the sites instructions for details on how to authorize the " "with the sites instructions for details on how to authorize the "
@ -4278,11 +4277,11 @@ msgstr ""
"Verifique as instruções do site para detalhes sobre como autorizar a " "Verifique as instruções do site para detalhes sobre como autorizar a "
"assinatura. Seu token de assinatura é:" "assinatura. Seu token de assinatura é:"
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "A assinatura foi recusada" msgstr "A assinatura foi recusada"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
"with the sites instructions for details on how to fully reject the " "with the sites instructions for details on how to fully reject the "
@ -4292,37 +4291,37 @@ msgstr ""
"Verifique as instruções do site para detalhes sobre como rejeitar " "Verifique as instruções do site para detalhes sobre como rejeitar "
"completamente a assinatura." "completamente a assinatura."
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "A URI %s do usuário não foi encontrada aqui." msgstr "A URI %s do usuário não foi encontrada aqui."
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "A URI %s do usuário é muito extensa." msgstr "A URI %s do usuário é muito extensa."
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "A URI %s é de um usuário local." msgstr "A URI %s é de um usuário local."
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "A URL %s do perfil é de um usuário local." msgstr "A URL %s do perfil é de um usuário local."
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "A URL %s do avatar não é válida." msgstr "A URL %s do avatar não é válida."
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, php-format #, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "Não é possível ler a URL '%s' do avatar." msgstr "Não é possível ler a URL '%s' do avatar."
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, php-format #, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "Tipo de imagem errado para a URL '%s' do avatar." msgstr "Tipo de imagem errado para a URL '%s' do avatar."
@ -4425,7 +4424,7 @@ msgstr "Versão"
#: actions/version.php:197 #: actions/version.php:197
msgid "Author(s)" msgid "Author(s)"
msgstr "Author(es)" msgstr "Autor(es)"
#: classes/File.php:144 #: classes/File.php:144
#, php-format #, php-format
@ -4521,7 +4520,7 @@ msgstr "Problema no salvamento da mensagem."
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Erro no banco de dados na inserção da reposta: %s" msgstr "Erro no banco de dados na inserção da reposta: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1271
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -4531,11 +4530,11 @@ msgstr "RT @%1$s %2$s"
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "Bem vindo(a) a %1$s, @%2$s!" msgstr "Bem vindo(a) a %1$s, @%2$s!"
#: classes/User_group.php:380 #: classes/User_group.php:413
msgid "Could not create group." msgid "Could not create group."
msgstr "Não foi possível criar o grupo." msgstr "Não foi possível criar o grupo."
#: classes/User_group.php:409 #: classes/User_group.php:442
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Não foi possível configurar a associação ao grupo." msgstr "Não foi possível configurar a associação ao grupo."
@ -4805,11 +4804,11 @@ msgstr "Configuração dos caminhos"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "Configuração da aparência" msgstr "Configuração da aparência"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5919,11 +5918,11 @@ msgstr "Erro na inserção do perfil remoto"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Duplicar a mensagem" msgstr "Duplicar a mensagem"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "Você está proibido de assinar." msgstr "Você está proibido de assinar."
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Não foi possível inserir a nova assinatura." msgstr "Não foi possível inserir a nova assinatura."
@ -6197,47 +6196,47 @@ msgstr "Mensagem"
msgid "Moderate" msgid "Moderate"
msgstr "Moderar" msgstr "Moderar"
#: lib/util.php:867 #: lib/util.php:871
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "alguns segundos atrás" msgstr "alguns segundos atrás"
#: lib/util.php:869 #: lib/util.php:873
msgid "about a minute ago" msgid "about a minute ago"
msgstr "cerca de 1 minuto atrás" msgstr "cerca de 1 minuto atrás"
#: lib/util.php:871 #: lib/util.php:875
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "cerca de %d minutos atrás" msgstr "cerca de %d minutos atrás"
#: lib/util.php:873 #: lib/util.php:877
msgid "about an hour ago" msgid "about an hour ago"
msgstr "cerca de 1 hora atrás" msgstr "cerca de 1 hora atrás"
#: lib/util.php:875 #: lib/util.php:879
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "cerca de %d horas atrás" msgstr "cerca de %d horas atrás"
#: lib/util.php:877 #: lib/util.php:881
msgid "about a day ago" msgid "about a day ago"
msgstr "cerca de 1 dia atrás" msgstr "cerca de 1 dia atrás"
#: lib/util.php:879 #: lib/util.php:883
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "cerca de %d dias atrás" msgstr "cerca de %d dias atrás"
#: lib/util.php:881 #: lib/util.php:885
msgid "about a month ago" msgid "about a month ago"
msgstr "cerca de 1 mês atrás" msgstr "cerca de 1 mês atrás"
#: lib/util.php:883 #: lib/util.php:887
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "cerca de %d meses atrás" msgstr "cerca de %d meses atrás"
#: lib/util.php:885 #: lib/util.php:889
msgid "about a year ago" msgid "about a year ago"
msgstr "cerca de 1 ano atrás" msgstr "cerca de 1 ano atrás"

View File

@ -1,6 +1,7 @@
# Translation of StatusNet to Russian # Translation of StatusNet to Russian
# #
# Author@translatewiki.net: Brion # Author@translatewiki.net: Brion
# Author@translatewiki.net: Kirill
# Author@translatewiki.net: Lockal # Author@translatewiki.net: Lockal
# Author@translatewiki.net: Rubin # Author@translatewiki.net: Rubin
# Author@translatewiki.net: Александр Сигачёв # Author@translatewiki.net: Александр Сигачёв
@ -11,12 +12,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-14 20:05+0000\n"
"PO-Revision-Date: 2010-02-02 19:22:02+0000\n" "PO-Revision-Date: 2010-02-14 20:07:23+0000\n"
"Language-Team: Russian\n" "Language-Team: Russian\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62476); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n" "X-Language-Code: ru\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -172,8 +173,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "Вы и друзья" msgstr "Вы и друзья"
#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #: actions/allrss.php:119 actions/apitimelinefriends.php:119
#: actions/apitimelinehome.php:122 #: actions/apitimelinehome.php:120
#, php-format #, php-format
msgid "Updates from %1$s and friends on %2$s!" msgid "Updates from %1$s and friends on %2$s!"
msgstr "Обновлено от %1$s и его друзей на %2$s!" msgstr "Обновлено от %1$s и его друзей на %2$s!"
@ -183,22 +184,23 @@ msgstr "Обновлено от %1$s и его друзей на %2$s!"
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:182 actions/apitimelinehome.php:184
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:194 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "Метод API не найден." msgstr "Метод API не найден."
@ -485,12 +487,11 @@ msgstr "группы на %s"
#: actions/apioauthauthorize.php:101 #: actions/apioauthauthorize.php:101
msgid "No oauth_token parameter provided." msgid "No oauth_token parameter provided."
msgstr "" msgstr "Не задан параметр oauth_token."
#: actions/apioauthauthorize.php:106 #: actions/apioauthauthorize.php:106
#, fuzzy
msgid "Invalid token." msgid "Invalid token."
msgstr "Неверный размер." msgstr "Неправильный токен"
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
#: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/deletenotice.php:157 actions/disfavor.php:74
@ -531,9 +532,9 @@ msgstr ""
"Ключ запроса %s авторизован. Пожалуйста, обменяйте его на ключ доступа." "Ключ запроса %s авторизован. Пожалуйста, обменяйте его на ключ доступа."
#: actions/apioauthauthorize.php:227 #: actions/apioauthauthorize.php:227
#, fuzzy, php-format #, php-format
msgid "The request token %s has been denied and revoked." msgid "The request token %s has been denied and revoked."
msgstr "Ключ запроса %s отклонён." msgstr "Запрос токена %s был запрещен и аннулирован."
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
#: actions/designadminpanel.php:103 actions/editapplication.php:139 #: actions/designadminpanel.php:103 actions/editapplication.php:139
@ -559,6 +560,10 @@ msgid ""
"the ability to <strong>%3$s</strong> your %4$s account data. You should only " "the ability to <strong>%3$s</strong> your %4$s account data. You should only "
"give access to your %4$s account to third parties you trust." "give access to your %4$s account to third parties you trust."
msgstr "" msgstr ""
"Приложение <strong>%1$s</strong> от <strong>%2$s</strong> просит разрешение "
"на<strong>%3$s</strong> данных вашей учётной записи%4$s . Вы должны "
"предоставлять разрешение на доступ к вашей учётной записи %4$s только тем "
"сторонним приложениям, которым вы доверяете."
#: actions/apioauthauthorize.php:310 lib/action.php:441 #: actions/apioauthauthorize.php:310 lib/action.php:441
msgid "Account" msgid "Account"
@ -566,7 +571,8 @@ msgstr "Настройки"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Имя" msgstr "Имя"
@ -641,7 +647,7 @@ msgstr "Неподдерживаемый формат."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%1$s / Любимое от %2$s" msgstr "%1$s / Любимое от %2$s"
#: actions/apitimelinefavorites.php:120 #: actions/apitimelinefavorites.php:117
#, php-format #, php-format
msgid "%1$s updates favorited by %2$s / %2$s." msgid "%1$s updates favorited by %2$s / %2$s."
msgstr "Обновления %1$s, отмеченные как любимые %2$s / %2$s." msgstr "Обновления %1$s, отмеченные как любимые %2$s / %2$s."
@ -652,7 +658,7 @@ msgstr "Обновления %1$s, отмеченные как любимые %2
msgid "%s timeline" msgid "%s timeline"
msgstr "Лента %s" msgstr "Лента %s"
#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 #: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126
#: actions/userrss.php:92 #: actions/userrss.php:92
#, php-format #, php-format
msgid "Updates from %1$s on %2$s!" msgid "Updates from %1$s on %2$s!"
@ -668,12 +674,12 @@ msgstr "%1$s / Обновления, упоминающие %2$s"
msgid "%1$s updates that reply to updates from %2$s / %3$s." msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "%1$s обновил этот ответ на сообщение: %2$s / %3$s." msgstr "%1$s обновил этот ответ на сообщение: %2$s / %3$s."
#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #: actions/apitimelinepublic.php:111 actions/publicrss.php:103
#, php-format #, php-format
msgid "%s public timeline" msgid "%s public timeline"
msgstr "Общая лента %s" msgstr "Общая лента %s"
#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #: actions/apitimelinepublic.php:115 actions/publicrss.php:105
#, php-format #, php-format
msgid "%s updates from everyone!" msgid "%s updates from everyone!"
msgstr "Обновления %s от всех!" msgstr "Обновления %s от всех!"
@ -683,7 +689,7 @@ msgstr "Обновления %s от всех!"
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "Повторено для %s" msgstr "Повторено для %s"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, php-format #, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "Повторы за %s" msgstr "Повторы за %s"
@ -693,7 +699,7 @@ msgstr "Повторы за %s"
msgid "Notices tagged with %s" msgid "Notices tagged with %s"
msgstr "Записи с тегом %s" msgstr "Записи с тегом %s"
#: actions/apitimelinetag.php:108 actions/tagrss.php:64 #: actions/apitimelinetag.php:104 actions/tagrss.php:64
#, php-format #, php-format
msgid "Updates tagged with %1$s on %2$s!" msgid "Updates tagged with %1$s on %2$s!"
msgstr "Обновления с тегом %1$s на %2$s!" msgstr "Обновления с тегом %1$s на %2$s!"
@ -754,7 +760,7 @@ msgstr "Оригинал"
msgid "Preview" msgid "Preview"
msgstr "Просмотр" msgstr "Просмотр"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "Удалить" msgstr "Удалить"
@ -821,7 +827,7 @@ msgstr "Не блокировать этого пользователя"
msgid "Yes" msgid "Yes"
msgstr "Да" msgstr "Да"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "Заблокировать пользователя." msgstr "Заблокировать пользователя."
@ -922,14 +928,12 @@ msgid "Notices"
msgstr "Записи" msgstr "Записи"
#: actions/deleteapplication.php:63 #: actions/deleteapplication.php:63
#, fuzzy
msgid "You must be logged in to delete an application." msgid "You must be logged in to delete an application."
msgstr "Вы должны авторизоваться, чтобы изменить приложение." msgstr "Вы должны войти в систему, чтобы удалить приложение."
#: actions/deleteapplication.php:71 #: actions/deleteapplication.php:71
#, fuzzy
msgid "Application not found." msgid "Application not found."
msgstr "Информация о приложении" msgstr "Приложение не найдено."
#: actions/deleteapplication.php:78 actions/editapplication.php:77 #: actions/deleteapplication.php:78 actions/editapplication.php:77
#: actions/showapplication.php:94 #: actions/showapplication.php:94
@ -943,29 +947,26 @@ msgid "There was a problem with your session token."
msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста."
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 #: actions/deleteapplication.php:123 actions/deleteapplication.php:147
#, fuzzy
msgid "Delete application" msgid "Delete application"
msgstr "Изменить приложение" msgstr "Удалить приложение"
#: actions/deleteapplication.php:149 #: actions/deleteapplication.php:149
#, fuzzy
msgid "" msgid ""
"Are you sure you want to delete this application? This will clear all data " "Are you sure you want to delete this application? This will clear all data "
"about the application from the database, including all existing user " "about the application from the database, including all existing user "
"connections." "connections."
msgstr "" msgstr ""
"Вы действительно хотите удалить этого пользователя? Это повлечёт удаление " "Вы уверены, что хотите удалить это приложение? Это очистит все данные о "
"всех данных о пользователе из базы данных без возможности восстановления." "применении из базы данных, включая все существующие подключения "
"пользователей."
#: actions/deleteapplication.php:156 #: actions/deleteapplication.php:156
#, fuzzy
msgid "Do not delete this application" msgid "Do not delete this application"
msgstr "Не удалять эту запись" msgstr "Не удаляйте это приложение"
#: actions/deleteapplication.php:160 #: actions/deleteapplication.php:160
#, fuzzy
msgid "Delete this application" msgid "Delete this application"
msgstr "Иконка для этого приложения" msgstr "Удалить это приложение"
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 #: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 #: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
@ -1176,7 +1177,6 @@ msgid "Name is too long (max 255 chars)."
msgstr "Имя слишком длинное (не больше 255 знаков)." msgstr "Имя слишком длинное (не больше 255 знаков)."
#: actions/editapplication.php:183 actions/newapplication.php:162 #: actions/editapplication.php:183 actions/newapplication.php:162
#, fuzzy
msgid "Name already in use. Try another one." msgid "Name already in use. Try another one."
msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое." msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое."
@ -1243,7 +1243,7 @@ msgstr "Слишком длинное описание (максимум %d си
msgid "Could not update group." msgid "Could not update group."
msgstr "Не удаётся обновить информацию о группе." msgstr "Не удаётся обновить информацию о группе."
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:423
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Не удаётся создать алиасы." msgstr "Не удаётся создать алиасы."
@ -1449,7 +1449,7 @@ msgstr "Эта запись уже входит в число любимых!"
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "Разлюбить" msgstr "Разлюбить"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "Популярные записи" msgstr "Популярные записи"
@ -1597,7 +1597,7 @@ msgstr "Пользователь уже заблокирован из групп
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Пользователь не является членом этой группы." msgstr "Пользователь не является членом этой группы."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
msgid "Block user from group" msgid "Block user from group"
msgstr "Заблокировать пользователя из группы." msgstr "Заблокировать пользователя из группы."
@ -1699,19 +1699,19 @@ msgstr "Список пользователей, являющихся члена
msgid "Admin" msgid "Admin"
msgstr "Настройки" msgstr "Настройки"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Блокировать" msgstr "Блокировать"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Сделать пользователя администратором группы" msgstr "Сделать пользователя администратором группы"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "Сделать администратором" msgstr "Сделать администратором"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Сделать этого пользователя администратором" msgstr "Сделать этого пользователя администратором"
@ -1743,7 +1743,7 @@ msgstr ""
"общими интересами. После присоединения к группе и вы сможете отправлять " "общими интересами. После присоединения к группе и вы сможете отправлять "
"сообщения до всех её участников, используя команду «!имягруппы». Не видите " "сообщения до всех её участников, используя команду «!имягруппы». Не видите "
"группу, которая вас интересует? Попробуйте [найти её](%%%%action.groupsearch%" "группу, которая вас интересует? Попробуйте [найти её](%%%%action.groupsearch%"
"%%%) или [создайте собственную!](%%%%action.newgroup%%%%)" "%%%) или [создайте собственную](%%%%action.newgroup%%%%)!"
#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 #: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122
msgid "Create a new group" msgid "Create a new group"
@ -2119,22 +2119,22 @@ msgstr ""
"Вход с вашим логином и паролем. Нет аккаунта? [Зарегистрируйте](%%action." "Вход с вашим логином и паролем. Нет аккаунта? [Зарегистрируйте](%%action."
"register%%) новый аккаунт." "register%%) новый аккаунт."
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "" msgstr ""
"Только администратор может сделать другого пользователя администратором." "Только администратор может сделать другого пользователя администратором."
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, php-format #, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "%1$s уже является администратором группы «%2$s»." msgstr "%1$s уже является администратором группы «%2$s»."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, php-format #, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "Не удаётся получить запись принадлежности для %1$s к группе %2$s." msgstr "Не удаётся получить запись принадлежности для %1$s к группе %2$s."
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, php-format #, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "Невозможно сделать %1$s администратором группы %2$s." msgstr "Невозможно сделать %1$s администратором группы %2$s."
@ -2334,8 +2334,8 @@ msgstr "тип содержимого "
msgid "Only " msgid "Only "
msgstr "Только " msgstr "Только "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Неподдерживаемый формат данных." msgstr "Неподдерживаемый формат данных."
@ -2710,7 +2710,7 @@ msgstr "Биография"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Месторасположение" msgstr "Месторасположение"
@ -2896,7 +2896,7 @@ msgstr ""
"Почему бы не [зарегистрироваться](%%action.register%%), чтобы отправить " "Почему бы не [зарегистрироваться](%%action.register%%), чтобы отправить "
"первым?" "первым?"
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Облако тегов" msgstr "Облако тегов"
@ -3337,71 +3337,71 @@ msgstr "Сохранить настройки сайта"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "Вы должны авторизоваться, чтобы просматривать приложения." msgstr "Вы должны авторизоваться, чтобы просматривать приложения."
#: actions/showapplication.php:158 #: actions/showapplication.php:157
msgid "Application profile" msgid "Application profile"
msgstr "Профиль приложения" msgstr "Профиль приложения"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "Иконка" msgstr "Иконка"
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
msgid "Name" msgid "Name"
msgstr "Имя" msgstr "Имя"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
msgid "Organization" msgid "Organization"
msgstr "Организация" msgstr "Организация"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "Описание" msgstr "Описание"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "Статистика" msgstr "Статистика"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, fuzzy, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "создано %1$s — %2$s доступ по умолчанию — %3$d польз." msgstr "Создано %1$s — доступ по умолчанию: %2$s — %3$d польз."
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "Действия приложения" msgstr "Действия приложения"
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "Сбросить ключ и секретную фразу" msgstr "Сбросить ключ и секретную фразу"
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "Информация о приложении" msgstr "Информация о приложении"
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "Потребительский ключ" msgstr "Потребительский ключ"
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "Секретная фраза потребителя" msgstr "Секретная фраза потребителя"
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "URL ключа запроса" msgstr "URL ключа запроса"
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "URL ключа доступа" msgstr "URL ключа доступа"
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "URL авторизации" msgstr "URL авторизации"
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
@ -3409,6 +3409,11 @@ msgstr ""
"Примечание: Мы поддерживаем подписи HMAC-SHA1. Мы не поддерживаем метод " "Примечание: Мы поддерживаем подписи HMAC-SHA1. Мы не поддерживаем метод "
"подписи открытым текстом." "подписи открытым текстом."
#: actions/showapplication.php:309
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
"Вы уверены, что хотите сбросить ваш ключ потребителя и секретную фразу?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, php-format #, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3480,12 +3485,12 @@ msgid "Group profile"
msgstr "Профиль группы" msgstr "Профиль группы"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "URL" msgstr "URL"
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "Запись" msgstr "Запись"
@ -4071,7 +4076,8 @@ msgstr "Теги %s"
msgid "User profile" msgid "User profile"
msgstr "Профиль пользователя" msgstr "Профиль пользователя"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "Фото" msgstr "Фото"
@ -4131,7 +4137,7 @@ msgstr "Нет ID профиля в запросе."
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "Отписано" msgstr "Отписано"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4220,36 +4226,36 @@ msgstr ""
"подписаться на записи этого пользователя. Если Вы этого не хотите делать, " "подписаться на записи этого пользователя. Если Вы этого не хотите делать, "
"нажмите «Отказ»." "нажмите «Отказ»."
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "Лицензия" msgstr "Лицензия"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Принять" msgstr "Принять"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Подписаться на %s" msgstr "Подписаться на %s"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "Отбросить" msgstr "Отбросить"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "Отвергнуть эту подписку" msgstr "Отвергнуть эту подписку"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "Не авторизованный запрос!" msgstr "Не авторизованный запрос!"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "Подписка авторизована" msgstr "Подписка авторизована"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
"with the sites instructions for details on how to authorize the " "with the sites instructions for details on how to authorize the "
@ -4258,11 +4264,11 @@ msgstr ""
"Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте " "Подписка авторизована, но нет обратного URL. Посмотрите инструкции на сайте "
"о том, как авторизовать подписку. Ваш ключ подписки:" "о том, как авторизовать подписку. Ваш ключ подписки:"
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "Подписка отменена" msgstr "Подписка отменена"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
"with the sites instructions for details on how to fully reject the " "with the sites instructions for details on how to fully reject the "
@ -4271,37 +4277,37 @@ msgstr ""
"Подписка отвергнута, но не бы передан URL обратного вызова. Проверьте " "Подписка отвергнута, но не бы передан URL обратного вызова. Проверьте "
"инструкции на сайте, чтобы полностью отказаться от подписки." "инструкции на сайте, чтобы полностью отказаться от подписки."
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "Смотрящий URI «%s» здесь не найден." msgstr "Смотрящий URI «%s» здесь не найден."
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "Просматриваемый URI «%s» слишком длинный." msgstr "Просматриваемый URI «%s» слишком длинный."
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "Просматриваемый URI «%s» — локальный пользователь." msgstr "Просматриваемый URI «%s» — локальный пользователь."
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "URL профиля «%s» предназначен только для локального пользователя." msgstr "URL профиля «%s» предназначен только для локального пользователя."
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "URL аватары «%s» недействителен." msgstr "URL аватары «%s» недействителен."
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, php-format #, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "Не удаётся прочитать URL аватары «%s»" msgstr "Не удаётся прочитать URL аватары «%s»"
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, php-format #, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "Неверный тип изображения для URL аватары «%s»." msgstr "Неверный тип изображения для URL аватары «%s»."
@ -4498,7 +4504,7 @@ msgstr "Проблемы с сохранением входящих сообще
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Ошибка баз данных при вставке ответа для %s" msgstr "Ошибка баз данных при вставке ответа для %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1271
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -4508,11 +4514,11 @@ msgstr "RT @%1$s %2$s"
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "Добро пожаловать на %1$s, @%2$s!" msgstr "Добро пожаловать на %1$s, @%2$s!"
#: classes/User_group.php:380 #: classes/User_group.php:413
msgid "Could not create group." msgid "Could not create group."
msgstr "Не удаётся создать группу." msgstr "Не удаётся создать группу."
#: classes/User_group.php:409 #: classes/User_group.php:442
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Не удаётся назначить членство в группе." msgstr "Не удаётся назначить членство в группе."
@ -4781,13 +4787,13 @@ msgstr "Конфигурация путей"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "Конфигурация сессий" msgstr "Конфигурация сессий"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
"API ресурса требует доступ для чтения и записи, но у вас есть только доступ " "API ресурса требует доступ для чтения и записи, но у вас есть только доступ "
"для чтения." "для чтения."
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5895,11 +5901,11 @@ msgstr "Ошибка вставки удалённого профиля"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Дублировать запись" msgstr "Дублировать запись"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "Вы заблокированы от подписки." msgstr "Вы заблокированы от подписки."
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Не удаётся вставить новую подписку." msgstr "Не удаётся вставить новую подписку."
@ -6006,7 +6012,7 @@ msgstr "Повторить эту запись"
#: lib/router.php:665 #: lib/router.php:665
msgid "No single user defined for single-user mode." msgid "No single user defined for single-user mode."
msgstr "" msgstr "Ни задан пользователь для однопользовательского режима."
#: lib/sandboxform.php:67 #: lib/sandboxform.php:67
msgid "Sandbox" msgid "Sandbox"
@ -6173,47 +6179,47 @@ msgstr "Сообщение"
msgid "Moderate" msgid "Moderate"
msgstr "Модерировать" msgstr "Модерировать"
#: lib/util.php:867 #: lib/util.php:871
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "пару секунд назад" msgstr "пару секунд назад"
#: lib/util.php:869 #: lib/util.php:873
msgid "about a minute ago" msgid "about a minute ago"
msgstr "около минуты назад" msgstr "около минуты назад"
#: lib/util.php:871 #: lib/util.php:875
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "около %d минут(ы) назад" msgstr "около %d минут(ы) назад"
#: lib/util.php:873 #: lib/util.php:877
msgid "about an hour ago" msgid "about an hour ago"
msgstr "около часа назад" msgstr "около часа назад"
#: lib/util.php:875 #: lib/util.php:879
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "около %d часа(ов) назад" msgstr "около %d часа(ов) назад"
#: lib/util.php:877 #: lib/util.php:881
msgid "about a day ago" msgid "about a day ago"
msgstr "около дня назад" msgstr "около дня назад"
#: lib/util.php:879 #: lib/util.php:883
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "около %d дня(ей) назад" msgstr "около %d дня(ей) назад"
#: lib/util.php:881 #: lib/util.php:885
msgid "about a month ago" msgid "about a month ago"
msgstr "около месяца назад" msgstr "около месяца назад"
#: lib/util.php:883 #: lib/util.php:887
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "около %d месяца(ев) назад" msgstr "около %d месяца(ев) назад"
#: lib/util.php:885 #: lib/util.php:889
msgid "about a year ago" msgid "about a year ago"
msgstr "около года назад" msgstr "около года назад"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-14 20:05+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -158,8 +158,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "" msgstr ""
#: actions/allrss.php:119 actions/apitimelinefriends.php:121 #: actions/allrss.php:119 actions/apitimelinefriends.php:119
#: actions/apitimelinehome.php:122 #: actions/apitimelinehome.php:120
#, php-format #, php-format
msgid "Updates from %1$s and friends on %2$s!" msgid "Updates from %1$s and friends on %2$s!"
msgstr "" msgstr ""
@ -169,22 +169,23 @@ msgstr ""
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:182 actions/apitimelinehome.php:184
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:194 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "" msgstr ""
@ -541,7 +542,8 @@ msgstr ""
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "" msgstr ""
@ -616,7 +618,7 @@ msgstr ""
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "" msgstr ""
#: actions/apitimelinefavorites.php:120 #: actions/apitimelinefavorites.php:117
#, php-format #, php-format
msgid "%1$s updates favorited by %2$s / %2$s." msgid "%1$s updates favorited by %2$s / %2$s."
msgstr "" msgstr ""
@ -627,7 +629,7 @@ msgstr ""
msgid "%s timeline" msgid "%s timeline"
msgstr "" msgstr ""
#: actions/apitimelinegroup.php:117 actions/apitimelineuser.php:126 #: actions/apitimelinegroup.php:114 actions/apitimelineuser.php:126
#: actions/userrss.php:92 #: actions/userrss.php:92
#, php-format #, php-format
msgid "Updates from %1$s on %2$s!" msgid "Updates from %1$s on %2$s!"
@ -643,12 +645,12 @@ msgstr ""
msgid "%1$s updates that reply to updates from %2$s / %3$s." msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "" msgstr ""
#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #: actions/apitimelinepublic.php:111 actions/publicrss.php:103
#, php-format #, php-format
msgid "%s public timeline" msgid "%s public timeline"
msgstr "" msgstr ""
#: actions/apitimelinepublic.php:111 actions/publicrss.php:105 #: actions/apitimelinepublic.php:115 actions/publicrss.php:105
#, php-format #, php-format
msgid "%s updates from everyone!" msgid "%s updates from everyone!"
msgstr "" msgstr ""
@ -658,7 +660,7 @@ msgstr ""
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "" msgstr ""
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, php-format #, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "" msgstr ""
@ -668,7 +670,7 @@ msgstr ""
msgid "Notices tagged with %s" msgid "Notices tagged with %s"
msgstr "" msgstr ""
#: actions/apitimelinetag.php:108 actions/tagrss.php:64 #: actions/apitimelinetag.php:104 actions/tagrss.php:64
#, php-format #, php-format
msgid "Updates tagged with %1$s on %2$s!" msgid "Updates tagged with %1$s on %2$s!"
msgstr "" msgstr ""
@ -728,7 +730,7 @@ msgstr ""
msgid "Preview" msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -792,7 +794,7 @@ msgstr ""
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "" msgstr ""
@ -1199,7 +1201,7 @@ msgstr ""
msgid "Could not update group." msgid "Could not update group."
msgstr "" msgstr ""
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:423
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "" msgstr ""
@ -1390,7 +1392,7 @@ msgstr ""
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "" msgstr ""
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "" msgstr ""
@ -1532,7 +1534,7 @@ msgstr ""
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "" msgstr ""
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
msgid "Block user from group" msgid "Block user from group"
msgstr "" msgstr ""
@ -1627,19 +1629,19 @@ msgstr ""
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "" msgstr ""
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "" msgstr ""
@ -1987,21 +1989,21 @@ msgid ""
"(%%action.register%%) a new account." "(%%action.register%%) a new account."
msgstr "" msgstr ""
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "" msgstr ""
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, php-format #, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "" msgstr ""
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, php-format #, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "" msgstr ""
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, php-format #, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "" msgstr ""
@ -2193,8 +2195,8 @@ msgstr ""
msgid "Only " msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -2563,7 +2565,7 @@ msgstr ""
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "" msgstr ""
@ -2735,7 +2737,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -3137,76 +3139,80 @@ msgstr ""
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "" msgstr ""
#: actions/showapplication.php:158 #: actions/showapplication.php:157
msgid "Application profile" msgid "Application profile"
msgstr "" msgstr ""
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
msgid "Name" msgid "Name"
msgstr "" msgstr ""
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
msgid "Organization" msgid "Organization"
msgstr "" msgstr ""
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "" msgstr ""
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "" msgstr ""
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "" msgstr ""
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, php-format #, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3271,12 +3277,12 @@ msgid "Group profile"
msgstr "" msgstr ""
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "" msgstr ""
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "" msgstr ""
@ -3815,7 +3821,8 @@ msgstr ""
msgid "User profile" msgid "User profile"
msgstr "" msgstr ""
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "" msgstr ""
@ -3870,7 +3877,7 @@ msgstr ""
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "" msgstr ""
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -3954,84 +3961,84 @@ msgid ""
"click “Reject”." "click “Reject”."
msgstr "" msgstr ""
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "" msgstr ""
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "" msgstr ""
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "" msgstr ""
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "" msgstr ""
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "" msgstr ""
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "" msgstr ""
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "" msgstr ""
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
"with the sites instructions for details on how to authorize the " "with the sites instructions for details on how to authorize the "
"subscription. Your subscription token is:" "subscription. Your subscription token is:"
msgstr "" msgstr ""
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "" msgstr ""
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
"with the sites instructions for details on how to fully reject the " "with the sites instructions for details on how to fully reject the "
"subscription." "subscription."
msgstr "" msgstr ""
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, php-format #, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "" msgstr ""
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, php-format #, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "" msgstr ""
@ -4207,7 +4214,7 @@ msgstr ""
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "" msgstr ""
#: classes/Notice.php:1231 #: classes/Notice.php:1271
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -4217,11 +4224,11 @@ msgstr ""
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "" msgstr ""
#: classes/User_group.php:380 #: classes/User_group.php:413
msgid "Could not create group." msgid "Could not create group."
msgstr "" msgstr ""
#: classes/User_group.php:409 #: classes/User_group.php:442
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "" msgstr ""
@ -4481,11 +4488,11 @@ msgstr ""
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "" msgstr ""
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5452,11 +5459,11 @@ msgstr ""
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "" msgstr ""
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "" msgstr ""
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "" msgstr ""
@ -5730,47 +5737,47 @@ msgstr ""
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:867 #: lib/util.php:871
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "" msgstr ""
#: lib/util.php:869
msgid "about a minute ago"
msgstr ""
#: lib/util.php:871
#, php-format
msgid "about %d minutes ago"
msgstr ""
#: lib/util.php:873 #: lib/util.php:873
msgid "about an hour ago" msgid "about a minute ago"
msgstr "" msgstr ""
#: lib/util.php:875 #: lib/util.php:875
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d minutes ago"
msgstr "" msgstr ""
#: lib/util.php:877 #: lib/util.php:877
msgid "about a day ago" msgid "about an hour ago"
msgstr "" msgstr ""
#: lib/util.php:879 #: lib/util.php:879
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d hours ago"
msgstr "" msgstr ""
#: lib/util.php:881 #: lib/util.php:881
msgid "about a month ago" msgid "about a day ago"
msgstr "" msgstr ""
#: lib/util.php:883 #: lib/util.php:883
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d days ago"
msgstr "" msgstr ""
#: lib/util.php:885 #: lib/util.php:885
msgid "about a month ago"
msgstr ""
#: lib/util.php:887
#, php-format
msgid "about %d months ago"
msgstr ""
#: lib/util.php:889
msgid "about a year ago" msgid "about a year ago"
msgstr "" msgstr ""

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:22:06+0000\n" "PO-Revision-Date: 2010-02-11 08:15:57+0000\n"
"Language-Team: Swedish\n" "Language-Team: Swedish\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: sv\n" "X-Language-Code: sv\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -180,22 +180,23 @@ msgstr "Uppdateringar från %1$s och vänner på %2$s!"
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "API-metod hittades inte." msgstr "API-metod hittades inte."
@ -476,12 +477,11 @@ msgstr "grupper på %s"
#: actions/apioauthauthorize.php:101 #: actions/apioauthauthorize.php:101
msgid "No oauth_token parameter provided." msgid "No oauth_token parameter provided."
msgstr "" msgstr "Ingen oauth_token-parameter angiven."
#: actions/apioauthauthorize.php:106 #: actions/apioauthauthorize.php:106
#, fuzzy
msgid "Invalid token." msgid "Invalid token."
msgstr "Ogiltig storlek." msgstr "Ogiltig token."
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
#: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/deletenotice.php:157 actions/disfavor.php:74
@ -521,9 +521,9 @@ msgid ""
msgstr "Begäran-token %s har godkänts. Byt ut den mot en åtkomst-token." msgstr "Begäran-token %s har godkänts. Byt ut den mot en åtkomst-token."
#: actions/apioauthauthorize.php:227 #: actions/apioauthauthorize.php:227
#, fuzzy, php-format #, php-format
msgid "The request token %s has been denied and revoked." msgid "The request token %s has been denied and revoked."
msgstr "Begäran-token %s har nekats." msgstr "Begäran-token %s har nekats och återkallats."
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
#: actions/designadminpanel.php:103 actions/editapplication.php:139 #: actions/designadminpanel.php:103 actions/editapplication.php:139
@ -549,6 +549,9 @@ msgid ""
"the ability to <strong>%3$s</strong> your %4$s account data. You should only " "the ability to <strong>%3$s</strong> your %4$s account data. You should only "
"give access to your %4$s account to third parties you trust." "give access to your %4$s account to third parties you trust."
msgstr "" msgstr ""
"Applikationen <strong>%1$s</strong> av <strong>%2$s</strong> vill att "
"möjligheten att <strong>%3$s</strong> din %4$s kontoinformation. Du bör bara "
"ge tillgång till ditt %4$s-konto till tredje-parter du litar på."
#: actions/apioauthauthorize.php:310 lib/action.php:441 #: actions/apioauthauthorize.php:310 lib/action.php:441
msgid "Account" msgid "Account"
@ -556,7 +559,8 @@ msgstr "Konto"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Smeknamn" msgstr "Smeknamn"
@ -744,7 +748,7 @@ msgstr "Orginal"
msgid "Preview" msgid "Preview"
msgstr "Förhandsgranska" msgstr "Förhandsgranska"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "Ta bort" msgstr "Ta bort"
@ -811,7 +815,7 @@ msgstr "Blockera inte denna användare"
msgid "Yes" msgid "Yes"
msgstr "Ja" msgstr "Ja"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "Blockera denna användare" msgstr "Blockera denna användare"
@ -913,14 +917,12 @@ msgid "Notices"
msgstr "Notiser" msgstr "Notiser"
#: actions/deleteapplication.php:63 #: actions/deleteapplication.php:63
#, fuzzy
msgid "You must be logged in to delete an application." msgid "You must be logged in to delete an application."
msgstr "Du måste vara inloggad för att redigera en applikation." msgstr "Du måste vara inloggad för att ta bort en applikation."
#: actions/deleteapplication.php:71 #: actions/deleteapplication.php:71
#, fuzzy
msgid "Application not found." msgid "Application not found."
msgstr "Information om applikation" msgstr "Applikation hittades inte."
#: actions/deleteapplication.php:78 actions/editapplication.php:77 #: actions/deleteapplication.php:78 actions/editapplication.php:77
#: actions/showapplication.php:94 #: actions/showapplication.php:94
@ -934,29 +936,26 @@ msgid "There was a problem with your session token."
msgstr "Det var ett problem med din sessions-token." msgstr "Det var ett problem med din sessions-token."
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 #: actions/deleteapplication.php:123 actions/deleteapplication.php:147
#, fuzzy
msgid "Delete application" msgid "Delete application"
msgstr "Redigera applikation" msgstr "Ta bort applikation"
#: actions/deleteapplication.php:149 #: actions/deleteapplication.php:149
#, fuzzy
msgid "" msgid ""
"Are you sure you want to delete this application? This will clear all data " "Are you sure you want to delete this application? This will clear all data "
"about the application from the database, including all existing user " "about the application from the database, including all existing user "
"connections." "connections."
msgstr "" msgstr ""
"Är du säker på att du vill ta bort denna användare? Det kommer rensa all " "Är du säker på att du vill ta bort denna applikation? Detta kommer rensa "
"data om användaren från databasen, utan en säkerhetskopia." "bort all data om applikationen från databasen, inklusive alla befintliga "
"användaranslutningar."
#: actions/deleteapplication.php:156 #: actions/deleteapplication.php:156
#, fuzzy
msgid "Do not delete this application" msgid "Do not delete this application"
msgstr "Ta inte bort denna notis" msgstr "Ta inte bort denna applikation"
#: actions/deleteapplication.php:160 #: actions/deleteapplication.php:160
#, fuzzy
msgid "Delete this application" msgid "Delete this application"
msgstr "Ikon för denna applikation" msgstr "Ta bort denna applikation"
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 #: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 #: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
@ -1167,9 +1166,8 @@ msgid "Name is too long (max 255 chars)."
msgstr "Namnet är för långt (max 255 tecken)." msgstr "Namnet är för långt (max 255 tecken)."
#: actions/editapplication.php:183 actions/newapplication.php:162 #: actions/editapplication.php:183 actions/newapplication.php:162
#, fuzzy
msgid "Name already in use. Try another one." msgid "Name already in use. Try another one."
msgstr "Smeknamnet används redan. Försök med ett annat." msgstr "Namnet används redan. Prova ett annat."
#: actions/editapplication.php:186 actions/newapplication.php:168 #: actions/editapplication.php:186 actions/newapplication.php:168
msgid "Description is required." msgid "Description is required."
@ -1431,7 +1429,7 @@ msgstr "Denna notis är redan en favorit!"
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "Ta bort märkning som favorit" msgstr "Ta bort märkning som favorit"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "Populära notiser" msgstr "Populära notiser"
@ -1579,7 +1577,7 @@ msgstr "Användaren är redan blockerad från grupp."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Användare är inte en gruppmedlem." msgstr "Användare är inte en gruppmedlem."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
msgid "Block user from group" msgid "Block user from group"
msgstr "Blockera användare från grupp" msgstr "Blockera användare från grupp"
@ -1680,19 +1678,19 @@ msgstr "En lista av användarna i denna grupp."
msgid "Admin" msgid "Admin"
msgstr "Administratör" msgstr "Administratör"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Blockera" msgstr "Blockera"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Gör användare till en administratör för gruppen" msgstr "Gör användare till en administratör för gruppen"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "Gör till administratör" msgstr "Gör till administratör"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Gör denna användare till administratör" msgstr "Gör denna användare till administratör"
@ -2099,21 +2097,21 @@ msgstr ""
"Logga in med ditt användarnamn och lösenord. Har du inget användarnamn ännu? " "Logga in med ditt användarnamn och lösenord. Har du inget användarnamn ännu? "
"[Registrera](%%action.register%%) ett nytt konto." "[Registrera](%%action.register%%) ett nytt konto."
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "Bara en administratör kan göra en annan användare till administratör." msgstr "Bara en administratör kan göra en annan användare till administratör."
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, php-format #, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "%1$s är redan en administratör för grupp \"%2$s\"." msgstr "%1$s är redan en administratör för grupp \"%2$s\"."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, php-format #, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "Kan inte hämta uppgift om medlemskap för %1$s i grupp %2$s." msgstr "Kan inte hämta uppgift om medlemskap för %1$s i grupp %2$s."
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, php-format #, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "Kan inte göra %1$s till en administratör för grupp %2$s." msgstr "Kan inte göra %1$s till en administratör för grupp %2$s."
@ -2316,8 +2314,8 @@ msgstr "innehållstyp "
msgid "Only " msgid "Only "
msgstr "Bara " msgstr "Bara "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Ett dataformat som inte stödjs" msgstr "Ett dataformat som inte stödjs"
@ -2691,7 +2689,7 @@ msgstr "Biografi"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Plats" msgstr "Plats"
@ -2880,7 +2878,7 @@ msgstr ""
"Varför inte [registrera ett konto](%%action.register%%) och bli först att " "Varför inte [registrera ett konto](%%action.register%%) och bli först att "
"posta en!" "posta en!"
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Taggmoln" msgstr "Taggmoln"
@ -3323,71 +3321,71 @@ msgstr "Spara webbplatsinställningar"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "Du måste vara inloggad för att se en applikation." msgstr "Du måste vara inloggad för att se en applikation."
#: actions/showapplication.php:158 #: actions/showapplication.php:157
msgid "Application profile" msgid "Application profile"
msgstr "Applikationsprofil" msgstr "Applikationsprofil"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "Ikon" msgstr "Ikon"
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
msgid "Name" msgid "Name"
msgstr "Namn" msgstr "Namn"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
msgid "Organization" msgid "Organization"
msgstr "Organisation" msgstr "Organisation"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "Beskrivning" msgstr "Beskrivning"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "Statistik" msgstr "Statistik"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, fuzzy, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "skapad av %1$s - %2$s standardåtkomst - %3$d användare" msgstr "Skapad av %1$s - %2$s standardåtkomst - %3$d användare"
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "Åtgärder för applikation" msgstr "Åtgärder för applikation"
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "Återställ nyckel & hemlighet" msgstr "Återställ nyckel & hemlighet"
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "Information om applikation" msgstr "Information om applikation"
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "Nyckel för konsument" msgstr "Nyckel för konsument"
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "Hemlighet för konsument" msgstr "Hemlighet för konsument"
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "URL för begäran-token" msgstr "URL för begäran-token"
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "URL för åtkomst-token" msgstr "URL för åtkomst-token"
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "Tillåt URL" msgstr "Tillåt URL"
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
@ -3395,6 +3393,11 @@ msgstr ""
"Notera: Vi stöjder HMAC-SHA1-signaturer. Vi stödjer inte metoden med " "Notera: Vi stöjder HMAC-SHA1-signaturer. Vi stödjer inte metoden med "
"klartextsignatur." "klartextsignatur."
#: actions/showapplication.php:309
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
"Är du säker på att du vill återställa din konsumentnyckel och -hemlighet?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, php-format #, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3467,12 +3470,12 @@ msgid "Group profile"
msgstr "Grupprofil" msgstr "Grupprofil"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "URL" msgstr "URL"
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "Notis" msgstr "Notis"
@ -3545,8 +3548,8 @@ msgid ""
"[StatusNet](http://status.net/) tool. Its members share short messages about " "[StatusNet](http://status.net/) tool. Its members share short messages about "
"their life and interests. " "their life and interests. "
msgstr "" msgstr ""
"**%s** är en användargrupp på %%%%site.name%%%%, en [mikroblogg](http://en." "**%s** är en användargrupp på %%%%site.name%%%%, en [mikroblogg](http://sv."
"wikipedia.org/wiki/Micro-blogging)tjänst baserad den fria programvaran " "wikipedia.org/wiki/Mikroblogg)tjänst baserad den fria programvaran "
"[StatusNet](http://status.net/). Dess medlemmar delar korta meddelande om " "[StatusNet](http://status.net/). Dess medlemmar delar korta meddelande om "
"sina liv och intressen. " "sina liv och intressen. "
@ -3641,8 +3644,8 @@ msgid ""
"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to " "[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to "
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
msgstr "" msgstr ""
"**%s** har ett konto på %%%%site.name%%%%, en [mikroblogg](http://en." "**%s** har ett konto på %%%%site.name%%%%, en [mikroblogg](http://sv."
"wikipedia.org/wiki/Micro-blogging)tjänst baserad på den fria programvaran " "wikipedia.org/wiki/Mikroblogg)tjänst baserad på den fria programvaran "
"[StatusNet](http://status.net/). [Gå med nu](%%%%action.register%%%%) för " "[StatusNet](http://status.net/). [Gå med nu](%%%%action.register%%%%) för "
"att följa **%s**s notiser och många fler! ([Läs mer](%%%%doc.help%%%%))" "att följa **%s**s notiser och många fler! ([Läs mer](%%%%doc.help%%%%))"
@ -3653,8 +3656,8 @@ msgid ""
"wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
"[StatusNet](http://status.net/) tool. " "[StatusNet](http://status.net/) tool. "
msgstr "" msgstr ""
"**%s** har ett konto på %%%%site.name%%%%, en [mikroblogg](http://en." "**%s** har ett konto på %%%%site.name%%%%, en [mikroblogg](http://sv."
"wikipedia.org/wiki/Micro-blogging)tjänst baserad på den fria programvaran " "wikipedia.org/wiki/Mikroblogg)tjänst baserad på den fria programvaran "
"[StatusNet](http://status.net/). " "[StatusNet](http://status.net/). "
#: actions/showstream.php:305 #: actions/showstream.php:305
@ -4049,7 +4052,8 @@ msgstr "Tagg %s"
msgid "User profile" msgid "User profile"
msgstr "Användarprofil" msgstr "Användarprofil"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "Foto" msgstr "Foto"
@ -4109,7 +4113,7 @@ msgstr "Ingen profil-ID i begäran."
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "Prenumeration avslutad" msgstr "Prenumeration avslutad"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4200,36 +4204,36 @@ msgstr ""
"prenumerera på den här användarens notiser. Om du inte bett att prenumerera " "prenumerera på den här användarens notiser. Om du inte bett att prenumerera "
"på någons meddelanden, klicka på \"Avvisa\"." "på någons meddelanden, klicka på \"Avvisa\"."
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "Licens" msgstr "Licens"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Acceptera" msgstr "Acceptera"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Prenumerera på denna användare" msgstr "Prenumerera på denna användare"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "Avvisa" msgstr "Avvisa"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "Avvisa denna prenumeration" msgstr "Avvisa denna prenumeration"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "Ingen begäran om godkännande!" msgstr "Ingen begäran om godkännande!"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "Prenumeration godkänd" msgstr "Prenumeration godkänd"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
"with the sites instructions for details on how to authorize the " "with the sites instructions for details on how to authorize the "
@ -4239,11 +4243,11 @@ msgstr ""
"med webbplatsens instruktioner hur du bekräftar en prenumeration. Din " "med webbplatsens instruktioner hur du bekräftar en prenumeration. Din "
"prenumerations-token är:" "prenumerations-token är:"
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "Prenumeration avvisad" msgstr "Prenumeration avvisad"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
"with the sites instructions for details on how to fully reject the " "with the sites instructions for details on how to fully reject the "
@ -4253,37 +4257,37 @@ msgstr ""
"webbplatsens instruktioner för detaljer om hur du fullständingt avvisar " "webbplatsens instruktioner för detaljer om hur du fullständingt avvisar "
"prenumerationen." "prenumerationen."
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "URI för lyssnare '%s' hittades inte här." msgstr "URI för lyssnare '%s' hittades inte här."
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "Lyssnar-URI '%s' är för lång." msgstr "Lyssnar-URI '%s' är för lång."
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "Lyssnar-URI '%s' är en lokal användare." msgstr "Lyssnar-URI '%s' är en lokal användare."
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "Profil-URL %s är för en lokal användare." msgstr "Profil-URL %s är för en lokal användare."
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "Avatar-URL %s är inte giltig." msgstr "Avatar-URL %s är inte giltig."
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, php-format #, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "Kan inte läsa avatar-URL '%s'." msgstr "Kan inte läsa avatar-URL '%s'."
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, php-format #, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "Fel bildtyp för avatar-URL '%s'." msgstr "Fel bildtyp för avatar-URL '%s'."
@ -4372,7 +4376,7 @@ msgid ""
"along with this program. If not, see %s." "along with this program. If not, see %s."
msgstr "" msgstr ""
"Du bör ha fått en kopia av GNU Affero General Public License tillsammans med " "Du bör ha fått en kopia av GNU Affero General Public License tillsammans med "
"detta program. Om inte, se% s." "detta program. Om inte, se %s."
#: actions/version.php:189 #: actions/version.php:189
msgid "Plugins" msgid "Plugins"
@ -4479,7 +4483,7 @@ msgstr "Problem med att spara gruppinkorg."
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Databasfel vid infogning av svar: %s" msgstr "Databasfel vid infogning av svar: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -4759,12 +4763,12 @@ msgstr "Konfiguration av sökvägar"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "Konfiguration av sessioner" msgstr "Konfiguration av sessioner"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
"API-resursen kräver läs- och skrivrättigheter, men du har bara läsrättighet." "API-resursen kräver läs- och skrivrättigheter, men du har bara läsrättighet."
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5868,11 +5872,11 @@ msgstr "Fel vid infogning av fjärrprofilen"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Duplicerad notis" msgstr "Duplicerad notis"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "Du har blivit utestängd från att prenumerera." msgstr "Du har blivit utestängd från att prenumerera."
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Kunde inte infoga ny prenumeration." msgstr "Kunde inte infoga ny prenumeration."
@ -5979,7 +5983,7 @@ msgstr "Upprepa denna notis"
#: lib/router.php:665 #: lib/router.php:665
msgid "No single user defined for single-user mode." msgid "No single user defined for single-user mode."
msgstr "" msgstr "Ingen enskild användare definierad för enanvändarläge."
#: lib/sandboxform.php:67 #: lib/sandboxform.php:67
msgid "Sandbox" msgid "Sandbox"
@ -6146,47 +6150,47 @@ msgstr "Meddelande"
msgid "Moderate" msgid "Moderate"
msgstr "Moderera" msgstr "Moderera"
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "ett par sekunder sedan" msgstr "ett par sekunder sedan"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "för nån minut sedan" msgstr "för nån minut sedan"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "för %d minuter sedan" msgstr "för %d minuter sedan"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "för en timma sedan" msgstr "för en timma sedan"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "för %d timmar sedan" msgstr "för %d timmar sedan"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "för en dag sedan" msgstr "för en dag sedan"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "för %d dagar sedan" msgstr "för %d dagar sedan"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "för en månad sedan" msgstr "för en månad sedan"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "för %d månader sedan" msgstr "för %d månader sedan"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "för ett år sedan" msgstr "för ett år sedan"

View File

@ -8,12 +8,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:22:10+0000\n" "PO-Revision-Date: 2010-02-11 08:16:03+0000\n"
"Language-Team: Telugu\n" "Language-Team: Telugu\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: te\n" "X-Language-Code: te\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -174,22 +174,23 @@ msgstr ""
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "నిర్ధారణ సంకేతం కనబడలేదు." msgstr "నిర్ధారణ సంకేతం కనబడలేదు."
@ -556,7 +557,8 @@ msgstr "ఖాతా"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "పేరు" msgstr "పేరు"
@ -592,14 +594,12 @@ msgid "No such notice."
msgstr "అటువంటి సందేశమేమీ లేదు." msgstr "అటువంటి సందేశమేమీ లేదు."
#: actions/apistatusesretweet.php:83 #: actions/apistatusesretweet.php:83
#, fuzzy
msgid "Cannot repeat your own notice." msgid "Cannot repeat your own notice."
msgstr "ఈ లైసెన్సుకి అంగీకరించకపోతే మీరు నమోదుచేసుకోలేరు." msgstr "మీ నోటీసుని మీరే పునరావృతించలేరు."
#: actions/apistatusesretweet.php:91 #: actions/apistatusesretweet.php:91
#, fuzzy
msgid "Already repeated that notice." msgid "Already repeated that notice."
msgstr "ఈ నోటీసుని తొలగించు" msgstr "ఇప్పటికే ఆ నోటీసుని పునరావృతించారు."
#: actions/apistatusesshow.php:138 #: actions/apistatusesshow.php:138
msgid "Status deleted." msgid "Status deleted."
@ -746,7 +746,7 @@ msgstr "అసలు"
msgid "Preview" msgid "Preview"
msgstr "మునుజూపు" msgstr "మునుజూపు"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "తొలగించు" msgstr "తొలగించు"
@ -810,7 +810,7 @@ msgstr "ఈ వాడుకరిని నిరోధించకు"
msgid "Yes" msgid "Yes"
msgstr "అవును" msgstr "అవును"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "ఈ వాడుకరిని నిరోధించు" msgstr "ఈ వాడుకరిని నిరోధించు"
@ -913,14 +913,12 @@ msgid "Notices"
msgstr "సందేశాలు" msgstr "సందేశాలు"
#: actions/deleteapplication.php:63 #: actions/deleteapplication.php:63
#, fuzzy
msgid "You must be logged in to delete an application." msgid "You must be logged in to delete an application."
msgstr "ఉపకరణాలని మార్చడానికి మీరు ప్రవేశించి ఉండాలి." msgstr "ఉపకరణాలని తొలగించడానికి మీరు ప్రవేశించి ఉండాలి."
#: actions/deleteapplication.php:71 #: actions/deleteapplication.php:71
#, fuzzy
msgid "Application not found." msgid "Application not found."
msgstr "ఉపకరణ సమాచారం" msgstr "ఉపకరణ కనబడలేదు."
#: actions/deleteapplication.php:78 actions/editapplication.php:77 #: actions/deleteapplication.php:78 actions/editapplication.php:77
#: actions/showapplication.php:94 #: actions/showapplication.php:94
@ -934,29 +932,25 @@ msgid "There was a problem with your session token."
msgstr "" msgstr ""
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 #: actions/deleteapplication.php:123 actions/deleteapplication.php:147
#, fuzzy
msgid "Delete application" msgid "Delete application"
msgstr "ఉపకరణాన్ని మార్చు" msgstr "ఉపకరణ తొలగింపు"
#: actions/deleteapplication.php:149 #: actions/deleteapplication.php:149
#, fuzzy
msgid "" msgid ""
"Are you sure you want to delete this application? This will clear all data " "Are you sure you want to delete this application? This will clear all data "
"about the application from the database, including all existing user " "about the application from the database, including all existing user "
"connections." "connections."
msgstr "" msgstr ""
"మీరు నిజంగానే ఈ వాడుకరిని తొలగించాలనుకుంటున్నారా? ఇది ఆ వాడుకరి భోగట్టాని డాటాబేసు నుండి తొలగిస్తుంది, " "మీరు నిజంగానే ఈ ఉపకరణాన్ని తొలగించాలనుకుంటున్నారా? ఇది ఆ ఉపకరణం గురించి భోగట్టాని, ప్రస్తుత "
"వెనక్కి తేలేకుండా." "వాడుకరుల అనుసంధానాలతో సహా, డాటాబేసు నుండి తొలగిస్తుంది."
#: actions/deleteapplication.php:156 #: actions/deleteapplication.php:156
#, fuzzy
msgid "Do not delete this application" msgid "Do not delete this application"
msgstr "ఈ నోటీసుని తొలగించకు" msgstr "ఈ ఉపకరణాన్ని తొలగించకు"
#: actions/deleteapplication.php:160 #: actions/deleteapplication.php:160
#, fuzzy
msgid "Delete this application" msgid "Delete this application"
msgstr "ఈ ఉపకరణానికి ప్రతీకం" msgstr "ఈ ఉపకరణాన్ని తొలగించు"
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 #: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 #: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
@ -1424,7 +1418,7 @@ msgstr "ఈ నోటీసు ఇప్పటికే మీ ఇష్టా
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "" msgstr ""
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "ప్రాచుర్య నోటీసులు" msgstr "ప్రాచుర్య నోటీసులు"
@ -1567,7 +1561,7 @@ msgstr "వాడుకరిని ఇప్పటికే గుంపున
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "వాడుకరి ఈ గుంపులో సభ్యులు కాదు." msgstr "వాడుకరి ఈ గుంపులో సభ్యులు కాదు."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
msgid "Block user from group" msgid "Block user from group"
msgstr "వాడుకరిని గుంపు నుండి నిరోధించు" msgstr "వాడుకరిని గుంపు నుండి నిరోధించు"
@ -1667,19 +1661,19 @@ msgstr "ఈ గుంపులో వాడుకరులు జాబితా
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "నిరోధించు" msgstr "నిరోధించు"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "వాడుకరిని గుంపుకి ఒక నిర్వాహకునిగా చేయి" msgstr "వాడుకరిని గుంపుకి ఒక నిర్వాహకునిగా చేయి"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "నిర్వాహకున్ని చేయి" msgstr "నిర్వాహకున్ని చేయి"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "ఈ వాడుకరిని నిర్వాహకున్ని చేయి" msgstr "ఈ వాడుకరిని నిర్వాహకున్ని చేయి"
@ -1707,6 +1701,10 @@ msgid ""
"for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup" "for one](%%%%action.groupsearch%%%%) or [start your own!](%%%%action.newgroup"
"%%%%)" "%%%%)"
msgstr "" msgstr ""
"ఒకే రకమైన ఆసక్తులు ఉన్న వ్యక్తులు కలుసుకోడానికి మరియు మాట్లాడుకోడానికి %%%%site.name%%%% "
"గుంపులు వీలుకల్పిస్తాయి. ఒక గుంపులో చేరిన తర్వాత మీరు \"!groupname\" అన్న సంకేతం ద్వారా ఆ "
"గుంపు లోని సభ్యులందరికీ సందేశాలని పంపించవచ్చు. మీకు నచ్చిన గుంపు కనబడలేదా? [దాని కోసం వెతకండి](%%"
"%%action.groupsearch%%%%) లేదా [మీరే కొత్తది సృష్టించండి!](%%%%action.newgroup%%%%)"
#: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122 #: actions/groups.php:107 actions/usergroups.php:124 lib/groupeditform.php:122
msgid "Create a new group" msgid "Create a new group"
@ -2035,21 +2033,21 @@ msgstr ""
"మీ వాడుకరిపేరు మరియు సంకేతపదాలతో ప్రవేశించండి. మీకు ఇంకా వాడుకరిపేరు లేదా? కొత్త ఖాతాని [నమోదుచేసుకోండి]" "మీ వాడుకరిపేరు మరియు సంకేతపదాలతో ప్రవేశించండి. మీకు ఇంకా వాడుకరిపేరు లేదా? కొత్త ఖాతాని [నమోదుచేసుకోండి]"
"(%%action.register%%)." "(%%action.register%%)."
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "నిర్వాహకులు మాత్రమే మరొక వాడుకరిని నిర్వాహకునిగా చేయగలరు." msgstr "నిర్వాహకులు మాత్రమే మరొక వాడుకరిని నిర్వాహకునిగా చేయగలరు."
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, php-format #, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "%1$s ఇప్పటికే \"%2$s\" గుంపు యొక్క ఒక నిర్వాకులు." msgstr "%1$s ఇప్పటికే \"%2$s\" గుంపు యొక్క ఒక నిర్వాకులు."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "వాడుకరి %sని %s గుంపు నుండి తొలగించలేకపోయాం" msgstr "వాడుకరి %sని %s గుంపు నుండి తొలగించలేకపోయాం"
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "%s ఇప్పటికే \"%s\" గుంపు యొక్క ఒక నిర్వాకులు." msgstr "%s ఇప్పటికే \"%s\" గుంపు యొక్క ఒక నిర్వాకులు."
@ -2248,8 +2246,8 @@ msgstr "విషయ రకం "
msgid "Only " msgid "Only "
msgstr "మాత్రమే " msgstr "మాత్రమే "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -2633,7 +2631,7 @@ msgstr "స్వపరిచయం"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "ప్రాంతం" msgstr "ప్రాంతం"
@ -2812,7 +2810,7 @@ msgid ""
"one!" "one!"
msgstr "[ఒక ఖాతాని నమోదుచేసుకుని](%%action.register%%) మీరే మొదట వ్రాసేవారు ఎందుకు కాకూడదు!" msgstr "[ఒక ఖాతాని నమోదుచేసుకుని](%%action.register%%) మీరే మొదట వ్రాసేవారు ఎందుకు కాకూడదు!"
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "ట్యాగు మేఘం" msgstr "ట్యాగు మేఘం"
@ -3239,77 +3237,82 @@ msgstr "సైటు అమరికలను భద్రపరచు"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "గుంపుని వదిలివెళ్ళడానికి మీరు ప్రవేశించి ఉండాలి." msgstr "గుంపుని వదిలివెళ్ళడానికి మీరు ప్రవేశించి ఉండాలి."
#: actions/showapplication.php:158 #: actions/showapplication.php:157
msgid "Application profile" msgid "Application profile"
msgstr "" msgstr ""
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "ప్రతీకం" msgstr "ప్రతీకం"
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
msgid "Name" msgid "Name"
msgstr "పేరు" msgstr "పేరు"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
msgid "Organization" msgid "Organization"
msgstr "సంస్ధ" msgstr "సంస్ధ"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "వివరణ" msgstr "వివరణ"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "గణాంకాలు" msgstr "గణాంకాలు"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "ఉపకరణ చర్యలు" msgstr "ఉపకరణ చర్యలు"
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "ఉపకరణ సమాచారం" msgstr "ఉపకరణ సమాచారం"
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
#, fuzzy #, fuzzy
msgid "Authorize URL" msgid "Authorize URL"
msgstr "రచయిత" msgstr "రచయిత"
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "మీరు నిజంగానే ఈ నోటీసుని తొలగించాలనుకుంటున్నారా?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, php-format #, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3374,12 +3377,12 @@ msgid "Group profile"
msgstr "గుంపు ప్రొఫైలు" msgstr "గుంపు ప్రొఫైలు"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "" msgstr ""
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "గమనిక" msgstr "గమనిక"
@ -3825,12 +3828,12 @@ msgstr "%1$s చందాదార్లు, పేజీ %2$d"
#: actions/subscribers.php:63 #: actions/subscribers.php:63
msgid "These are the people who listen to your notices." msgid "These are the people who listen to your notices."
msgstr "" msgstr "వీళ్ళు మీ నోటీసులని వినే ప్రజలు."
#: actions/subscribers.php:67 #: actions/subscribers.php:67
#, php-format #, php-format
msgid "These are the people who listen to %s's notices." msgid "These are the people who listen to %s's notices."
msgstr "" msgstr "వీళ్ళు %s యొక్క నోటీసులని వినే ప్రజలు."
#: actions/subscribers.php:108 #: actions/subscribers.php:108
msgid "" msgid ""
@ -3927,7 +3930,8 @@ msgstr ""
msgid "User profile" msgid "User profile"
msgstr "వాడుకరి ప్రొఫైలు" msgstr "వాడుకరి ప్రొఫైలు"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "ఫొటో" msgstr "ఫొటో"
@ -3985,7 +3989,7 @@ msgstr ""
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "చందాదార్లు" msgstr "చందాదార్లు"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4061,7 +4065,7 @@ msgstr "వాడుకరులను కొత్త వారిని ఆహ
#: actions/userauthorization.php:105 #: actions/userauthorization.php:105
msgid "Authorize subscription" msgid "Authorize subscription"
msgstr "" msgstr "చందాని అధీకరించండి"
#: actions/userauthorization.php:110 #: actions/userauthorization.php:110
msgid "" msgid ""
@ -4070,84 +4074,84 @@ msgid ""
"click “Reject”." "click “Reject”."
msgstr "" msgstr ""
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "లైసెన్సు" msgstr "లైసెన్సు"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "అంగీకరించు" msgstr "అంగీకరించు"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "ఈ వాడుకరికి చందాచేరు" msgstr "ఈ వాడుకరికి చందాచేరు"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "తిరస్కరించు" msgstr "తిరస్కరించు"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "ఈ చందాని తిరస్కరించు" msgstr "ఈ చందాని తిరస్కరించు"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "" msgstr ""
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "" msgstr ""
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
"with the sites instructions for details on how to authorize the " "with the sites instructions for details on how to authorize the "
"subscription. Your subscription token is:" "subscription. Your subscription token is:"
msgstr "" msgstr ""
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "చందాని తిరస్కరించారు." msgstr "చందాని తిరస్కరించారు."
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
"with the sites instructions for details on how to fully reject the " "with the sites instructions for details on how to fully reject the "
"subscription." "subscription."
msgstr "" msgstr ""
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, fuzzy, php-format #, fuzzy, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "'%s' అనే అవతారపు URL తప్పు" msgstr "'%s' అనే అవతారపు URL తప్పు"
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, fuzzy, php-format #, fuzzy, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "'%s' కొరకు తప్పుడు బొమ్మ రకం" msgstr "'%s' కొరకు తప్పుడు బొమ్మ రకం"
@ -4326,7 +4330,7 @@ msgstr "సందేశాన్ని భద్రపరచడంలో పొ
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "" msgstr ""
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -4612,11 +4616,11 @@ msgstr "SMS నిర్ధారణ"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "రూపకల్పన స్వరూపణం" msgstr "రూపకల్పన స్వరూపణం"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5631,11 +5635,11 @@ msgstr "దూరపు ప్రొపైలుని చేర్చటంల
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "కొత్త సందేశం" msgstr "కొత్త సందేశం"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "చందాచేరడం నుండి మిమ్మల్ని నిషేధించారు." msgstr "చందాచేరడం నుండి మిమ్మల్ని నిషేధించారు."
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "" msgstr ""
@ -5920,47 +5924,47 @@ msgstr "సందేశం"
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "కొన్ని క్షణాల క్రితం" msgstr "కొన్ని క్షణాల క్రితం"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "ఓ నిమిషం క్రితం" msgstr "ఓ నిమిషం క్రితం"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "%d నిమిషాల క్రితం" msgstr "%d నిమిషాల క్రితం"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "ఒక గంట క్రితం" msgstr "ఒక గంట క్రితం"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "%d గంటల క్రితం" msgstr "%d గంటల క్రితం"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "ఓ రోజు క్రితం" msgstr "ఓ రోజు క్రితం"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "%d రోజుల క్రితం" msgstr "%d రోజుల క్రితం"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "ఓ నెల క్రితం" msgstr "ఓ నెల క్రితం"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "%d నెలల క్రితం" msgstr "%d నెలల క్రితం"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "ఒక సంవత్సరం క్రితం" msgstr "ఒక సంవత్సరం క్రితం"

View File

@ -9,12 +9,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:22:13+0000\n" "PO-Revision-Date: 2010-02-11 08:16:08+0000\n"
"Language-Team: Turkish\n" "Language-Team: Turkish\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tr\n" "X-Language-Code: tr\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -180,22 +180,23 @@ msgstr ""
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "Onay kodu bulunamadı." msgstr "Onay kodu bulunamadı."
@ -573,7 +574,8 @@ msgstr "Hakkında"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Takma ad" msgstr "Takma ad"
@ -768,7 +770,7 @@ msgstr ""
msgid "Preview" msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -836,7 +838,7 @@ msgstr "Böyle bir kullanıcı yok."
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
#, fuzzy #, fuzzy
msgid "Block this user" msgid "Block this user"
msgstr "Böyle bir kullanıcı yok." msgstr "Böyle bir kullanıcı yok."
@ -1473,7 +1475,7 @@ msgstr ""
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "" msgstr ""
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
#, fuzzy #, fuzzy
msgid "Popular notices" msgid "Popular notices"
@ -1626,7 +1628,7 @@ msgstr "Kullanıcının profili yok."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Bize o profili yollamadınız" msgstr "Bize o profili yollamadınız"
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
#, fuzzy #, fuzzy
msgid "Block user from group" msgid "Block user from group"
msgstr "Böyle bir kullanıcı yok." msgstr "Böyle bir kullanıcı yok."
@ -1730,19 +1732,19 @@ msgstr ""
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "" msgstr ""
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "" msgstr ""
@ -2118,21 +2120,21 @@ msgstr ""
"duruyorsunuz, hemen bir [yeni hesap oluşturun](%%action.register%%) ya da " "duruyorsunuz, hemen bir [yeni hesap oluşturun](%%action.register%%) ya da "
"[OpenID](%%action.openidlogin%%) ile giriş yapın." "[OpenID](%%action.openidlogin%%) ile giriş yapın."
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "" msgstr ""
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "Kullanıcının profili yok." msgstr "Kullanıcının profili yok."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "OpenID formu yaratılamadı: %s" msgstr "OpenID formu yaratılamadı: %s"
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "Kullanıcının profili yok." msgstr "Kullanıcının profili yok."
@ -2331,8 +2333,8 @@ msgstr "Bağlan"
msgid "Only " msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -2729,7 +2731,7 @@ msgstr "Hakkında"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Yer" msgstr "Yer"
@ -2907,7 +2909,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -3327,80 +3329,84 @@ msgstr "Ayarlar"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "" msgstr ""
#: actions/showapplication.php:158 #: actions/showapplication.php:157
#, fuzzy #, fuzzy
msgid "Application profile" msgid "Application profile"
msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok" msgstr "Bu durum mesajının ait oldugu kullanıcı profili yok"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
#, fuzzy #, fuzzy
msgid "Name" msgid "Name"
msgstr "Takma ad" msgstr "Takma ad"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
#, fuzzy #, fuzzy
msgid "Organization" msgid "Organization"
msgstr "Yer" msgstr "Yer"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
#, fuzzy #, fuzzy
msgid "Description" msgid "Description"
msgstr "Abonelikler" msgstr "Abonelikler"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "İstatistikler" msgstr "İstatistikler"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "" msgstr ""
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3466,12 +3472,12 @@ msgid "Group profile"
msgstr "Böyle bir durum mesajı yok." msgstr "Böyle bir durum mesajı yok."
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "" msgstr ""
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
#, fuzzy #, fuzzy
msgid "Note" msgid "Note"
msgstr "Durum mesajları" msgstr "Durum mesajları"
@ -4029,7 +4035,8 @@ msgstr ""
msgid "User profile" msgid "User profile"
msgstr "Kullanıcının profili yok." msgstr "Kullanıcının profili yok."
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "" msgstr ""
@ -4091,7 +4098,7 @@ msgstr "Yetkilendirme isteği yok!"
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "Aboneliği sonlandır" msgstr "Aboneliği sonlandır"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4182,86 +4189,86 @@ msgstr ""
"detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde " "detayları gözden geçirin. Kimsenin durumunu taki etme isteğinde "
"bulunmadıysanız \"İptal\" tuşuna basın. " "bulunmadıysanız \"İptal\" tuşuna basın. "
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "" msgstr ""
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Kabul et" msgstr "Kabul et"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
#, fuzzy #, fuzzy
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Takip talebine izin verildi" msgstr "Takip talebine izin verildi"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "Reddet" msgstr "Reddet"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
#, fuzzy #, fuzzy
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "Bütün abonelikler" msgstr "Bütün abonelikler"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "Yetkilendirme isteği yok!" msgstr "Yetkilendirme isteği yok!"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "Takip talebine izin verildi" msgstr "Takip talebine izin verildi"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
"with the sites instructions for details on how to authorize the " "with the sites instructions for details on how to authorize the "
"subscription. Your subscription token is:" "subscription. Your subscription token is:"
msgstr "" msgstr ""
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "Abonelik reddedildi." msgstr "Abonelik reddedildi."
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
"with the sites instructions for details on how to fully reject the " "with the sites instructions for details on how to fully reject the "
"subscription." "subscription."
msgstr "" msgstr ""
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, fuzzy, php-format #, fuzzy, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "Avatar URLi '%s' okunamıyor" msgstr "Avatar URLi '%s' okunamıyor"
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, fuzzy, php-format #, fuzzy, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "%s için yanlış resim türü" msgstr "%s için yanlış resim türü"
@ -4445,7 +4452,7 @@ msgstr "Durum mesajını kaydederken hata oluştu."
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Cevap eklenirken veritabanı hatası: %s" msgstr "Cevap eklenirken veritabanı hatası: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -4744,11 +4751,11 @@ msgstr "Eposta adresi onayı"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "Eposta adresi onayı" msgstr "Eposta adresi onayı"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5765,11 +5772,11 @@ msgstr "Uzak profil eklemede hata oluştu"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Yeni durum mesajı" msgstr "Yeni durum mesajı"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "" msgstr ""
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Yeni abonelik eklenemedi." msgstr "Yeni abonelik eklenemedi."
@ -6060,47 +6067,47 @@ msgstr ""
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "birkaç saniye önce" msgstr "birkaç saniye önce"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "yaklaşık bir dakika önce" msgstr "yaklaşık bir dakika önce"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "yaklaşık %d dakika önce" msgstr "yaklaşık %d dakika önce"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "yaklaşık bir saat önce" msgstr "yaklaşık bir saat önce"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "yaklaşık %d saat önce" msgstr "yaklaşık %d saat önce"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "yaklaşık bir gün önce" msgstr "yaklaşık bir gün önce"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "yaklaşık %d gün önce" msgstr "yaklaşık %d gün önce"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "yaklaşık bir ay önce" msgstr "yaklaşık bir ay önce"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "yaklaşık %d ay önce" msgstr "yaklaşık %d ay önce"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "yaklaşık bir yıl önce" msgstr "yaklaşık bir yıl önce"

View File

@ -10,12 +10,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:22:16+0000\n" "PO-Revision-Date: 2010-02-11 08:16:16+0000\n"
"Language-Team: Ukrainian\n" "Language-Team: Ukrainian\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n" "X-Language-Code: uk\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -182,22 +182,23 @@ msgstr "Оновлення від %1$s та друзів на %2$s!"
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "API метод не знайдено." msgstr "API метод не знайдено."
@ -481,12 +482,11 @@ msgstr "групи на %s"
#: actions/apioauthauthorize.php:101 #: actions/apioauthauthorize.php:101
msgid "No oauth_token parameter provided." msgid "No oauth_token parameter provided."
msgstr "" msgstr "Жодного параметру oauth_token не забезпечено."
#: actions/apioauthauthorize.php:106 #: actions/apioauthauthorize.php:106
#, fuzzy
msgid "Invalid token." msgid "Invalid token."
msgstr "Недійсний розмір." msgstr "Невірний токен."
#: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268 #: actions/apioauthauthorize.php:123 actions/avatarsettings.php:268
#: actions/deletenotice.php:157 actions/disfavor.php:74 #: actions/deletenotice.php:157 actions/disfavor.php:74
@ -529,9 +529,9 @@ msgstr ""
"доступу." "доступу."
#: actions/apioauthauthorize.php:227 #: actions/apioauthauthorize.php:227
#, fuzzy, php-format #, php-format
msgid "The request token %s has been denied and revoked." msgid "The request token %s has been denied and revoked."
msgstr "Токен запиту %s було відхилено." msgstr "Токен запиту %s було скасовано і відхилено."
#: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281 #: actions/apioauthauthorize.php:232 actions/avatarsettings.php:281
#: actions/designadminpanel.php:103 actions/editapplication.php:139 #: actions/designadminpanel.php:103 actions/editapplication.php:139
@ -557,6 +557,10 @@ msgid ""
"the ability to <strong>%3$s</strong> your %4$s account data. You should only " "the ability to <strong>%3$s</strong> your %4$s account data. You should only "
"give access to your %4$s account to third parties you trust." "give access to your %4$s account to third parties you trust."
msgstr "" msgstr ""
"Додаток <strong>%1$s</strong> від <strong>%2$s</strong> запитує дозвіл на "
"<strong>%3$s</strong> дані Вашого акаунту %4$s. Ви повинні надавати дозвіл "
"на доступ до Вашого акаунту %4$s лише тим стороннім додаткам, яким Ви "
"довіряєте."
#: actions/apioauthauthorize.php:310 lib/action.php:441 #: actions/apioauthauthorize.php:310 lib/action.php:441
msgid "Account" msgid "Account"
@ -564,7 +568,8 @@ msgstr "Акаунт"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Ім’я користувача" msgstr "Ім’я користувача"
@ -753,7 +758,7 @@ msgstr "Оригінал"
msgid "Preview" msgid "Preview"
msgstr "Перегляд" msgstr "Перегляд"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "Видалити" msgstr "Видалити"
@ -820,7 +825,7 @@ msgstr "Не блокувати цього користувача"
msgid "Yes" msgid "Yes"
msgstr "Так" msgstr "Так"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
msgid "Block this user" msgid "Block this user"
msgstr "Блокувати користувача" msgstr "Блокувати користувача"
@ -921,14 +926,12 @@ msgid "Notices"
msgstr "Дописи" msgstr "Дописи"
#: actions/deleteapplication.php:63 #: actions/deleteapplication.php:63
#, fuzzy
msgid "You must be logged in to delete an application." msgid "You must be logged in to delete an application."
msgstr "Ви маєте спочатку увійти, аби мати змогу керувати додатком." msgstr "Ви маєте спочатку увійти, аби мати змогу видалити додаток."
#: actions/deleteapplication.php:71 #: actions/deleteapplication.php:71
#, fuzzy
msgid "Application not found." msgid "Application not found."
msgstr "Інфо додатку" msgstr "Додаток не виявлено."
#: actions/deleteapplication.php:78 actions/editapplication.php:77 #: actions/deleteapplication.php:78 actions/editapplication.php:77
#: actions/showapplication.php:94 #: actions/showapplication.php:94
@ -942,29 +945,26 @@ msgid "There was a problem with your session token."
msgstr "Виникли певні проблеми з токеном поточної сесії." msgstr "Виникли певні проблеми з токеном поточної сесії."
#: actions/deleteapplication.php:123 actions/deleteapplication.php:147 #: actions/deleteapplication.php:123 actions/deleteapplication.php:147
#, fuzzy
msgid "Delete application" msgid "Delete application"
msgstr "Керувати додатками" msgstr "Видалити додаток"
#: actions/deleteapplication.php:149 #: actions/deleteapplication.php:149
#, fuzzy
msgid "" msgid ""
"Are you sure you want to delete this application? This will clear all data " "Are you sure you want to delete this application? This will clear all data "
"about the application from the database, including all existing user " "about the application from the database, including all existing user "
"connections." "connections."
msgstr "" msgstr ""
"Впевнені, що бажаєте видалити цього користувача? Усі дані буде знищено без " "Впевнені, що бажаєте видалити цей додаток? У базі даних буде знищено всю "
"можливості відновлення." "інформацію стосовно нього, включно із даними про під’єднаних до цього "
"додатку користувачів."
#: actions/deleteapplication.php:156 #: actions/deleteapplication.php:156
#, fuzzy
msgid "Do not delete this application" msgid "Do not delete this application"
msgstr "Не видаляти цей допис" msgstr "Не видаляти додаток"
#: actions/deleteapplication.php:160 #: actions/deleteapplication.php:160
#, fuzzy
msgid "Delete this application" msgid "Delete this application"
msgstr "Іконка для цього додатку" msgstr "Видалити додаток"
#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 #: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62
#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 #: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69
@ -1173,7 +1173,6 @@ msgid "Name is too long (max 255 chars)."
msgstr "Ім’я задовге (255 знаків максимум)." msgstr "Ім’я задовге (255 знаків максимум)."
#: actions/editapplication.php:183 actions/newapplication.php:162 #: actions/editapplication.php:183 actions/newapplication.php:162
#, fuzzy
msgid "Name already in use. Try another one." msgid "Name already in use. Try another one."
msgstr "Це ім’я вже використовується. Спробуйте інше." msgstr "Це ім’я вже використовується. Спробуйте інше."
@ -1436,7 +1435,7 @@ msgstr "Цей допис вже є обраним!"
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "Видалити з обраних" msgstr "Видалити з обраних"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "Популярні дописи" msgstr "Популярні дописи"
@ -1582,7 +1581,7 @@ msgstr "Користувача заблоковано в цій групі."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Користувач не є учасником групи." msgstr "Користувач не є учасником групи."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
msgid "Block user from group" msgid "Block user from group"
msgstr "Блокувати користувача в групі" msgstr "Блокувати користувача в групі"
@ -1684,19 +1683,19 @@ msgstr "Список учасників цієї групи."
msgid "Admin" msgid "Admin"
msgstr "Адмін" msgstr "Адмін"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "Блок" msgstr "Блок"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Надати користувачеві права адміністратора" msgstr "Надати користувачеві права адміністратора"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "Зробити адміном" msgstr "Зробити адміном"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Надати цьому користувачеві права адміністратора" msgstr "Надати цьому користувачеві права адміністратора"
@ -2107,22 +2106,22 @@ msgstr ""
"Увійти викристовуючи ім’я та пароль. Ще не маєте імені користувача? " "Увійти викристовуючи ім’я та пароль. Ще не маєте імені користувача? "
"[Зареєструвати](%%action.register%%) новий акаунт." "[Зареєструвати](%%action.register%%) новий акаунт."
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "" msgstr ""
"Лише користувач з правами адміністратора може призначити інших адмінів групи." "Лише користувач з правами адміністратора може призначити інших адмінів групи."
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, php-format #, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "%1$s вже є адміном у групі «%2$s»." msgstr "%1$s вже є адміном у групі «%2$s»."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, php-format #, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "Не можна отримати запис для %1$s щодо членства у групі %2$s." msgstr "Не можна отримати запис для %1$s щодо членства у групі %2$s."
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, php-format #, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "Не можна надати %1$s права адміна в групі %2$s." msgstr "Не можна надати %1$s права адміна в групі %2$s."
@ -2324,8 +2323,8 @@ msgstr "тип змісту "
msgid "Only " msgid "Only "
msgstr "Лише " msgstr "Лише "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Такий формат даних не підтримується." msgstr "Такий формат даних не підтримується."
@ -2701,7 +2700,7 @@ msgstr "Про себе"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Розташування" msgstr "Розташування"
@ -2889,7 +2888,7 @@ msgstr ""
"Чому б не [зареєструватись](%%%%action.register%%%%) і не написати щось " "Чому б не [зареєструватись](%%%%action.register%%%%) і не написати щось "
"цікаве!" "цікаве!"
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Хмарка теґів" msgstr "Хмарка теґів"
@ -3329,71 +3328,71 @@ msgstr "Зберегти налаштування сайту"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "Ви повинні спочатку увійти, аби переглянути додаток." msgstr "Ви повинні спочатку увійти, аби переглянути додаток."
#: actions/showapplication.php:158 #: actions/showapplication.php:157
msgid "Application profile" msgid "Application profile"
msgstr "Профіль додатку" msgstr "Профіль додатку"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "Іконка" msgstr "Іконка"
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
msgid "Name" msgid "Name"
msgstr "Ім’я" msgstr "Ім’я"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
msgid "Organization" msgid "Organization"
msgstr "Організація" msgstr "Організація"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "Опис" msgstr "Опис"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "Статистика" msgstr "Статистика"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, fuzzy, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "створено %1$s — %2$s доступ за замовч. — %3$d користувачів" msgstr "Створено %1$s — %2$s доступ за замовч. — %3$d користувачів"
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "Можливості додатку" msgstr "Можливості додатку"
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "Призначити новий ключ і таємне слово" msgstr "Призначити новий ключ і таємне слово"
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "Інфо додатку" msgstr "Інфо додатку"
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "Ключ споживача" msgstr "Ключ споживача"
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "Таємно слово споживача" msgstr "Таємно слово споживача"
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "URL-адреса токена запиту" msgstr "URL-адреса токена запиту"
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "URL-адреса токена дозволу" msgstr "URL-адреса токена дозволу"
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "Авторизувати URL-адресу" msgstr "Авторизувати URL-адресу"
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
@ -3401,6 +3400,10 @@ msgstr ""
"До уваги: Всі підписи шифруються за методом HMAC-SHA1. Ми не підтримуємо " "До уваги: Всі підписи шифруються за методом HMAC-SHA1. Ми не підтримуємо "
"шифрування підписів відкритим текстом." "шифрування підписів відкритим текстом."
#: actions/showapplication.php:309
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Ви впевнені, що бажаєте скинути Ваш ключ споживача і таємну фразу?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, php-format #, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3473,12 +3476,12 @@ msgid "Group profile"
msgstr "Профіль групи" msgstr "Профіль групи"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "URL" msgstr "URL"
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "Зауваження" msgstr "Зауваження"
@ -4059,7 +4062,8 @@ msgstr "Позначити %s"
msgid "User profile" msgid "User profile"
msgstr "Профіль користувача." msgstr "Профіль користувача."
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "Фото" msgstr "Фото"
@ -4118,7 +4122,7 @@ msgstr "У запиті відсутній ID профілю."
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "Відписано" msgstr "Відписано"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4206,36 +4210,36 @@ msgstr ""
"підписатись на дописи цього користувача. Якщо Ви не збирались підписуватись " "підписатись на дописи цього користувача. Якщо Ви не збирались підписуватись "
"ні на чиї дописи, просто натисніть «Відмінити»." "ні на чиї дописи, просто натисніть «Відмінити»."
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "Ліцензія" msgstr "Ліцензія"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Погодитись" msgstr "Погодитись"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Підписатись до цього користувача" msgstr "Підписатись до цього користувача"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "Забраковано" msgstr "Забраковано"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "Відмінити цю підписку" msgstr "Відмінити цю підписку"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "Немає запиту на авторизацію!" msgstr "Немає запиту на авторизацію!"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "Підписку авторизовано" msgstr "Підписку авторизовано"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
"with the sites instructions for details on how to authorize the " "with the sites instructions for details on how to authorize the "
@ -4245,11 +4249,11 @@ msgstr ""
"Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як " "Звіртесь з інструкціями на сайті для більш конкретної інформації про те, як "
"авторизувати підписку. Ваш підписний токен:" "авторизувати підписку. Ваш підписний токен:"
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "Підписку скинуто" msgstr "Підписку скинуто"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
"with the sites instructions for details on how to fully reject the " "with the sites instructions for details on how to fully reject the "
@ -4259,37 +4263,37 @@ msgstr ""
"з інструкціями на сайті для більш конкретної інформації про те, як скинути " "з інструкціями на сайті для більш конкретної інформації про те, як скинути "
"підписку." "підписку."
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "URI слухача «%s» тут не знайдено" msgstr "URI слухача «%s» тут не знайдено"
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "URI слухача %s задовге." msgstr "URI слухача %s задовге."
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "URI слухача %s це локальний користувач" msgstr "URI слухача %s це локальний користувач"
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "URL-адреса профілю %s для локального користувача." msgstr "URL-адреса профілю %s для локального користувача."
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "URL-адреса автари %s помилкова." msgstr "URL-адреса автари %s помилкова."
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, php-format #, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "Не можна прочитати URL аватари %s." msgstr "Не можна прочитати URL аватари %s."
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, php-format #, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "Неправильний тип зображення для URL-адреси аватари %s." msgstr "Неправильний тип зображення для URL-адреси аватари %s."
@ -4486,7 +4490,7 @@ msgstr "Проблема при збереженні вхідних дописі
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Помилка бази даних при додаванні відповіді: %s" msgstr "Помилка бази даних при додаванні відповіді: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -4766,13 +4770,13 @@ msgstr "Конфігурація шляху"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "Конфігурація сесій" msgstr "Конфігурація сесій"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
"API-ресурс вимагає дозвіл типу «читання-запис», але у вас є лише доступ для " "API-ресурс вимагає дозвіл типу «читання-запис», але у вас є лише доступ для "
"читання." "читання."
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5877,11 +5881,11 @@ msgstr "Помилка при додаванні віддаленого проф
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Дублікат допису" msgstr "Дублікат допису"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "Вас позбавлено можливості підписатись." msgstr "Вас позбавлено можливості підписатись."
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Не вдалося додати нову підписку." msgstr "Не вдалося додати нову підписку."
@ -5988,7 +5992,7 @@ msgstr "Вторувати цьому допису"
#: lib/router.php:665 #: lib/router.php:665
msgid "No single user defined for single-user mode." msgid "No single user defined for single-user mode."
msgstr "" msgstr "Користувача для однокористувацького режиму не визначено."
#: lib/sandboxform.php:67 #: lib/sandboxform.php:67
msgid "Sandbox" msgid "Sandbox"
@ -6155,47 +6159,47 @@ msgstr "Повідомлення"
msgid "Moderate" msgid "Moderate"
msgstr "Модерувати" msgstr "Модерувати"
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "мить тому" msgstr "мить тому"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "хвилину тому" msgstr "хвилину тому"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "близько %d хвилин тому" msgstr "близько %d хвилин тому"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "годину тому" msgstr "годину тому"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "близько %d годин тому" msgstr "близько %d годин тому"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "день тому" msgstr "день тому"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "близько %d днів тому" msgstr "близько %d днів тому"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "місяць тому" msgstr "місяць тому"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "близько %d місяців тому" msgstr "близько %d місяців тому"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "рік тому" msgstr "рік тому"

View File

@ -7,12 +7,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:22:19+0000\n" "PO-Revision-Date: 2010-02-11 08:16:19+0000\n"
"Language-Team: Vietnamese\n" "Language-Team: Vietnamese\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: vi\n" "X-Language-Code: vi\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -179,22 +179,23 @@ msgstr ""
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "Phương thức API không tìm thấy!" msgstr "Phương thức API không tìm thấy!"
@ -575,7 +576,8 @@ msgstr "Giới thiệu"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "Biệt danh" msgstr "Biệt danh"
@ -771,7 +773,7 @@ msgstr ""
msgid "Preview" msgid "Preview"
msgstr "Xem trước" msgstr "Xem trước"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
#, fuzzy #, fuzzy
msgid "Delete" msgid "Delete"
@ -841,7 +843,7 @@ msgstr "Bỏ chặn người dùng này"
msgid "Yes" msgid "Yes"
msgstr "Có" msgstr "Có"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
#, fuzzy #, fuzzy
msgid "Block this user" msgid "Block this user"
msgstr "Ban user" msgstr "Ban user"
@ -1509,7 +1511,7 @@ msgstr "Tin nhắn này đã có trong danh sách tin nhắn ưa thích của b
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "Không thích" msgstr "Không thích"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
#, fuzzy #, fuzzy
msgid "Popular notices" msgid "Popular notices"
@ -1666,7 +1668,7 @@ msgstr "Người dùng không có thông tin."
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Bạn chưa cập nhật thông tin riêng" msgstr "Bạn chưa cập nhật thông tin riêng"
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
#, fuzzy #, fuzzy
msgid "Block user from group" msgid "Block user from group"
msgstr "Ban user" msgstr "Ban user"
@ -1773,20 +1775,20 @@ msgstr ""
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "" msgstr ""
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
#, fuzzy #, fuzzy
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những "
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
#, fuzzy #, fuzzy
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Kênh mà bạn tham gia" msgstr "Kênh mà bạn tham gia"
@ -2198,21 +2200,21 @@ msgstr ""
"khoản, [hãy đăng ký](%%action.register%%) tài khoản mới, hoặc thử đăng nhập " "khoản, [hãy đăng ký](%%action.register%%) tài khoản mới, hoặc thử đăng nhập "
"bằng [OpenID](%%action.openidlogin%%). " "bằng [OpenID](%%action.openidlogin%%). "
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "" msgstr ""
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "Người dùng không có thông tin." msgstr "Người dùng không có thông tin."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi." msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè của bạn rồi."
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những "
@ -2420,8 +2422,8 @@ msgstr "Kết nối"
msgid "Only " msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Không hỗ trợ định dạng dữ liệu này." msgstr "Không hỗ trợ định dạng dữ liệu này."
@ -2825,7 +2827,7 @@ msgstr "Lý lịch"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "Thành phố" msgstr "Thành phố"
@ -3006,7 +3008,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -3447,79 +3449,84 @@ msgstr "Thay đổi hình đại diện"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những " msgstr "Bạn phải đăng nhập vào mới có thể gửi thư mời những "
#: actions/showapplication.php:158 #: actions/showapplication.php:157
#, fuzzy #, fuzzy
msgid "Application profile" msgid "Application profile"
msgstr "Tin nhắn không có hồ sơ cá nhân" msgstr "Tin nhắn không có hồ sơ cá nhân"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
#, fuzzy #, fuzzy
msgid "Name" msgid "Name"
msgstr "Biệt danh" msgstr "Biệt danh"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
#, fuzzy #, fuzzy
msgid "Organization" msgid "Organization"
msgstr "Thư mời đã gửi" msgstr "Thư mời đã gửi"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
msgid "Description" msgid "Description"
msgstr "Mô tả" msgstr "Mô tả"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "Số liệu thống kê" msgstr "Số liệu thống kê"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "" msgstr ""
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Bạn có chắc chắn là muốn xóa tin nhắn này không?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3585,12 +3592,12 @@ msgid "Group profile"
msgstr "Thông tin nhóm" msgstr "Thông tin nhóm"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "" msgstr ""
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
#, fuzzy #, fuzzy
msgid "Note" msgid "Note"
msgstr "Tin nhắn" msgstr "Tin nhắn"
@ -4167,7 +4174,8 @@ msgstr "Từ khóa"
msgid "User profile" msgid "User profile"
msgstr "Hồ sơ" msgstr "Hồ sơ"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "" msgstr ""
@ -4230,7 +4238,7 @@ msgstr "Không có URL cho hồ sơ để quay về."
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "Hết theo" msgstr "Hết theo"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4323,38 +4331,38 @@ msgstr ""
"nhắn của các thành viên này. Nếu bạn không yêu cầu đăng nhận xem tin nhắn " "nhắn của các thành viên này. Nếu bạn không yêu cầu đăng nhận xem tin nhắn "
"của họ, hãy nhấn \"Hủy bỏ\"" "của họ, hãy nhấn \"Hủy bỏ\""
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "" msgstr ""
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "Chấp nhận" msgstr "Chấp nhận"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
#, fuzzy #, fuzzy
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "Theo nhóm này" msgstr "Theo nhóm này"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "Từ chối" msgstr "Từ chối"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
#, fuzzy #, fuzzy
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "Tất cả đăng nhận" msgstr "Tất cả đăng nhận"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "Không có yêu cầu!" msgstr "Không có yêu cầu!"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "Đăng nhận được phép" msgstr "Đăng nhận được phép"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
@ -4365,11 +4373,11 @@ msgstr ""
"hướng dẫn chi tiết trên site để biết cách cho phép đăng ký. Đăng nhận token " "hướng dẫn chi tiết trên site để biết cách cho phép đăng ký. Đăng nhận token "
"của bạn là:" "của bạn là:"
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "Đăng nhận từ chối" msgstr "Đăng nhận từ chối"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
@ -4379,37 +4387,37 @@ msgstr ""
"Đăng nhận này đã bị từ chối, nhưng không có URL nào để quay về. Hãy kiểm tra " "Đăng nhận này đã bị từ chối, nhưng không có URL nào để quay về. Hãy kiểm tra "
"các hướng dẫn chi tiết trên site để " "các hướng dẫn chi tiết trên site để "
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, fuzzy, php-format #, fuzzy, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "Không thể đọc URL cho hình đại diện '%s'" msgstr "Không thể đọc URL cho hình đại diện '%s'"
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, fuzzy, php-format #, fuzzy, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "Kiểu file ảnh không phù hợp với '%s'" msgstr "Kiểu file ảnh không phù hợp với '%s'"
@ -4596,7 +4604,7 @@ msgstr "Có lỗi xảy ra khi lưu tin nhắn."
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Lỗi cơ sở dữ liệu khi chèn trả lời: %s" msgstr "Lỗi cơ sở dữ liệu khi chèn trả lời: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%s (%s)" msgstr "%s (%s)"
@ -4903,11 +4911,11 @@ msgstr "Xác nhận SMS"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "Xác nhận SMS" msgstr "Xác nhận SMS"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5993,11 +6001,11 @@ msgstr "Lỗi xảy ra khi thêm mới hồ sơ cá nhân"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Xóa tin nhắn" msgstr "Xóa tin nhắn"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "" msgstr ""
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Không thể chèn thêm vào đăng nhận." msgstr "Không thể chèn thêm vào đăng nhận."
@ -6301,47 +6309,47 @@ msgstr "Tin mới nhất"
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "vài giây trước" msgstr "vài giây trước"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "1 phút trước" msgstr "1 phút trước"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "%d phút trước" msgstr "%d phút trước"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "1 giờ trước" msgstr "1 giờ trước"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "%d giờ trước" msgstr "%d giờ trước"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "1 ngày trước" msgstr "1 ngày trước"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "%d ngày trước" msgstr "%d ngày trước"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "1 tháng trước" msgstr "1 tháng trước"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "%d tháng trước" msgstr "%d tháng trước"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "1 năm trước" msgstr "1 năm trước"

View File

@ -10,12 +10,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:22:22+0000\n" "PO-Revision-Date: 2010-02-11 08:16:22+0000\n"
"Language-Team: Simplified Chinese\n" "Language-Team: Simplified Chinese\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hans\n" "X-Language-Code: zh-hans\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -181,22 +181,23 @@ msgstr "来自%2$s 上 %1$s 和好友的更新!"
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "API 方法未实现!" msgstr "API 方法未实现!"
@ -572,7 +573,8 @@ msgstr "帐号"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "昵称" msgstr "昵称"
@ -766,7 +768,7 @@ msgstr "原来的"
msgid "Preview" msgid "Preview"
msgstr "预览" msgstr "预览"
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
#, fuzzy #, fuzzy
msgid "Delete" msgid "Delete"
@ -835,7 +837,7 @@ msgstr "取消阻止次用户"
msgid "Yes" msgid "Yes"
msgstr "是" msgstr "是"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
#, fuzzy #, fuzzy
msgid "Block this user" msgid "Block this user"
msgstr "阻止该用户" msgstr "阻止该用户"
@ -1485,7 +1487,7 @@ msgstr "已收藏此通告!"
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "取消收藏" msgstr "取消收藏"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
#, fuzzy #, fuzzy
msgid "Popular notices" msgid "Popular notices"
@ -1644,7 +1646,7 @@ msgstr "用户没有个人信息。"
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "您未告知此个人信息" msgstr "您未告知此个人信息"
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
#, fuzzy #, fuzzy
msgid "Block user from group" msgid "Block user from group"
msgstr "阻止用户" msgstr "阻止用户"
@ -1750,21 +1752,21 @@ msgstr "该组成员列表。"
msgid "Admin" msgid "Admin"
msgstr "admin管理员" msgstr "admin管理员"
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "阻止" msgstr "阻止"
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
#, fuzzy #, fuzzy
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "只有admin才能编辑这个组" msgstr "只有admin才能编辑这个组"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
#, fuzzy #, fuzzy
msgid "Make Admin" msgid "Make Admin"
msgstr "admin管理员" msgstr "admin管理员"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "" msgstr ""
@ -2153,21 +2155,21 @@ msgstr ""
"请使用你的帐号和密码登入。没有帐号?[注册](%%action.register%%) 一个新帐号, " "请使用你的帐号和密码登入。没有帐号?[注册](%%action.register%%) 一个新帐号, "
"或使用 [OpenID](%%action.openidlogin%%). " "或使用 [OpenID](%%action.openidlogin%%). "
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "" msgstr ""
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "用户没有个人信息。" msgstr "用户没有个人信息。"
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "无法订阅用户:未找到。" msgstr "无法订阅用户:未找到。"
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "只有admin才能编辑这个组" msgstr "只有admin才能编辑这个组"
@ -2370,8 +2372,8 @@ msgstr "连接"
msgid "Only " msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "不支持的数据格式。" msgstr "不支持的数据格式。"
@ -2766,7 +2768,7 @@ msgstr "自述"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "位置" msgstr "位置"
@ -2947,7 +2949,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "标签云聚集" msgstr "标签云聚集"
@ -3381,80 +3383,85 @@ msgstr "头像设置"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "您必须登录才能邀请其他人使用 %s" msgstr "您必须登录才能邀请其他人使用 %s"
#: actions/showapplication.php:158 #: actions/showapplication.php:157
#, fuzzy #, fuzzy
msgid "Application profile" msgid "Application profile"
msgstr "通告没有关联个人信息" msgstr "通告没有关联个人信息"
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
#, fuzzy #, fuzzy
msgid "Name" msgid "Name"
msgstr "昵称" msgstr "昵称"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
#, fuzzy #, fuzzy
msgid "Organization" msgid "Organization"
msgstr "分页" msgstr "分页"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
#, fuzzy #, fuzzy
msgid "Description" msgid "Description"
msgstr "描述" msgstr "描述"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "统计" msgstr "统计"
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "" msgstr ""
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "确定要删除这条消息吗?"
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3520,12 +3527,12 @@ msgid "Group profile"
msgstr "组资料" msgstr "组资料"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "URL 互联网地址" msgstr "URL 互联网地址"
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
#, fuzzy #, fuzzy
msgid "Note" msgid "Note"
msgstr "通告" msgstr "通告"
@ -4096,7 +4103,8 @@ msgstr "标签"
msgid "User profile" msgid "User profile"
msgstr "用户没有个人信息。" msgstr "用户没有个人信息。"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "相片" msgstr "相片"
@ -4160,7 +4168,7 @@ msgstr "服务器没有返回个人信息URL。"
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "退订" msgstr "退订"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4252,39 +4260,39 @@ msgstr ""
"请检查详细信息,确认希望订阅此用户的通告。如果您刚才没有要求订阅任何人的通" "请检查详细信息,确认希望订阅此用户的通告。如果您刚才没有要求订阅任何人的通"
"告,请点击\"取消\"。" "告,请点击\"取消\"。"
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
#, fuzzy #, fuzzy
msgid "License" msgid "License"
msgstr "注册证" msgstr "注册证"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "接受" msgstr "接受"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
#, fuzzy #, fuzzy
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "订阅 %s" msgstr "订阅 %s"
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "拒绝" msgstr "拒绝"
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
#, fuzzy #, fuzzy
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "所有订阅" msgstr "所有订阅"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "未收到认证请求!" msgstr "未收到认证请求!"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "订阅已确认" msgstr "订阅已确认"
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
@ -4293,11 +4301,11 @@ msgid ""
msgstr "" msgstr ""
"订阅已确认但是没有回传URL。请到此网站查看如何确认订阅。您的订阅标识是" "订阅已确认但是没有回传URL。请到此网站查看如何确认订阅。您的订阅标识是"
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "订阅被拒绝" msgstr "订阅被拒绝"
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
#, fuzzy #, fuzzy
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
@ -4305,37 +4313,37 @@ msgid ""
"subscription." "subscription."
msgstr "订阅已被拒绝但是没有回传URL。请到此网站查看如何拒绝订阅。" msgstr "订阅已被拒绝但是没有回传URL。请到此网站查看如何拒绝订阅。"
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, fuzzy, php-format #, fuzzy, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "无法访问头像URL '%s'" msgstr "无法访问头像URL '%s'"
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, fuzzy, php-format #, fuzzy, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "'%s' 图像格式错误" msgstr "'%s' 图像格式错误"
@ -4522,7 +4530,7 @@ msgstr "保存通告时出错。"
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "添加回复时数据库出错:%s" msgstr "添加回复时数据库出错:%s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -4826,11 +4834,11 @@ msgstr "SMS短信确认"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "SMS短信确认" msgstr "SMS短信确认"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5859,12 +5867,12 @@ msgstr "添加远程的个人信息出错"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "删除通告" msgstr "删除通告"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
#, fuzzy #, fuzzy
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "那个用户阻止了你的订阅。" msgstr "那个用户阻止了你的订阅。"
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "无法添加新的订阅。" msgstr "无法添加新的订阅。"
@ -6166,47 +6174,47 @@ msgstr "新消息"
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "几秒前" msgstr "几秒前"
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "一分钟前" msgstr "一分钟前"
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "%d 分钟前" msgstr "%d 分钟前"
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "一小时前" msgstr "一小时前"
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "%d 小时前" msgstr "%d 小时前"
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "一天前" msgstr "一天前"
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "%d 天前" msgstr "%d 天前"
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "一个月前" msgstr "一个月前"
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "%d 个月前" msgstr "%d 个月前"
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "一年前" msgstr "一年前"

View File

@ -7,12 +7,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2010-02-02 19:19+0000\n" "POT-Creation-Date: 2010-02-11 08:14+0000\n"
"PO-Revision-Date: 2010-02-02 19:22:25+0000\n" "PO-Revision-Date: 2010-02-11 08:16:25+0000\n"
"Language-Team: Traditional Chinese\n" "Language-Team: Traditional Chinese\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r61864); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.16alpha (r62295); Translate extension (2010-01-16)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hant\n" "X-Language-Code: zh-hant\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -177,22 +177,23 @@ msgstr ""
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#: actions/apidirectmessage.php:156 actions/apifavoritecreate.php:99 #: actions/apiaccountverifycredentials.php:70 actions/apidirectmessage.php:156
#: actions/apifavoritedestroy.php:100 actions/apifriendshipscreate.php:100 #: actions/apifavoritecreate.php:99 actions/apifavoritedestroy.php:100
#: actions/apifriendshipsdestroy.php:100 actions/apifriendshipsshow.php:128 #: actions/apifriendshipscreate.php:100 actions/apifriendshipsdestroy.php:100
#: actions/apigroupcreate.php:136 actions/apigroupismember.php:114 #: actions/apifriendshipsshow.php:128 actions/apigroupcreate.php:136
#: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigroupismember.php:114 actions/apigroupjoin.php:155
#: actions/apigrouplist.php:132 actions/apigrouplistall.php:120 #: actions/apigroupleave.php:141 actions/apigrouplist.php:132
#: actions/apigroupmembership.php:106 actions/apigroupshow.php:115 #: actions/apigrouplistall.php:120 actions/apigroupmembership.php:106
#: actions/apihelptest.php:88 actions/apistatusesdestroy.php:102 #: actions/apigroupshow.php:115 actions/apihelptest.php:88
#: actions/apistatusesretweets.php:112 actions/apistatusesshow.php:108 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusnetconfig.php:133 actions/apistatusnetversion.php:93 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apisubscriptions.php:111 actions/apitimelinefavorites.php:146 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefriends.php:155 actions/apitimelinegroup.php:150 #: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155
#: actions/apitimelinehome.php:156 actions/apitimelinementions.php:151 #: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156
#: actions/apitimelinepublic.php:131 actions/apitimelineretweetedtome.php:121 #: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131
#: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141
#: actions/apitimelineuser.php:165 actions/apiusershow.php:101 #: actions/apitimelineuser.php:166 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "確認碼遺失" msgstr "確認碼遺失"
@ -565,7 +566,8 @@ msgstr "關於"
#: actions/apioauthauthorize.php:313 actions/login.php:230 #: actions/apioauthauthorize.php:313 actions/login.php:230
#: actions/profilesettings.php:106 actions/register.php:424 #: actions/profilesettings.php:106 actions/register.php:424
#: actions/showgroup.php:236 actions/tagother.php:94 lib/groupeditform.php:152 #: actions/showgroup.php:236 actions/tagother.php:94
#: actions/userauthorization.php:145 lib/groupeditform.php:152
#: lib/userprofile.php:131 #: lib/userprofile.php:131
msgid "Nickname" msgid "Nickname"
msgstr "暱稱" msgstr "暱稱"
@ -758,7 +760,7 @@ msgstr ""
msgid "Preview" msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:247 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:624
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -826,7 +828,7 @@ msgstr "無此使用者"
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #: actions/block.php:144 actions/groupmembers.php:348 lib/blockform.php:80
#, fuzzy #, fuzzy
msgid "Block this user" msgid "Block this user"
msgstr "無此使用者" msgstr "無此使用者"
@ -1460,7 +1462,7 @@ msgstr ""
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "" msgstr ""
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
#, fuzzy #, fuzzy
msgid "Popular notices" msgid "Popular notices"
@ -1610,7 +1612,7 @@ msgstr ""
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "" msgstr ""
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:316
#, fuzzy #, fuzzy
msgid "Block user from group" msgid "Block user from group"
msgstr "無此使用者" msgstr "無此使用者"
@ -1712,19 +1714,19 @@ msgstr ""
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:346 lib/blockform.php:69 #: actions/groupmembers.php:348 lib/blockform.php:69
msgid "Block" msgid "Block"
msgstr "" msgstr ""
#: actions/groupmembers.php:441 #: actions/groupmembers.php:443
msgid "Make user an admin of the group" msgid "Make user an admin of the group"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make Admin" msgid "Make Admin"
msgstr "" msgstr ""
#: actions/groupmembers.php:473 #: actions/groupmembers.php:475
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "" msgstr ""
@ -2080,21 +2082,21 @@ msgid ""
"(%%action.register%%) a new account." "(%%action.register%%) a new account."
msgstr "" msgstr ""
#: actions/makeadmin.php:91 #: actions/makeadmin.php:92
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "" msgstr ""
#: actions/makeadmin.php:95 #: actions/makeadmin.php:96
#, php-format #, php-format
msgid "%1$s is already an admin for group \"%2$s\"." msgid "%1$s is already an admin for group \"%2$s\"."
msgstr "" msgstr ""
#: actions/makeadmin.php:132 #: actions/makeadmin.php:133
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't get membership record for %1$s in group %2$s." msgid "Can't get membership record for %1$s in group %2$s."
msgstr "無法從 %s 建立OpenID" msgstr "無法從 %s 建立OpenID"
#: actions/makeadmin.php:145 #: actions/makeadmin.php:146
#, fuzzy, php-format #, fuzzy, php-format
msgid "Can't make %1$s an admin for group %2$s." msgid "Can't make %1$s an admin for group %2$s."
msgstr "無法從 %s 建立OpenID" msgstr "無法從 %s 建立OpenID"
@ -2290,8 +2292,8 @@ msgstr "連結"
msgid "Only " msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1039 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1067 lib/api.php:1177 #: lib/api.php:1068 lib/api.php:1178
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -2675,7 +2677,7 @@ msgstr "自我介紹"
#: actions/profilesettings.php:132 actions/register.php:471 #: actions/profilesettings.php:132 actions/register.php:471
#: actions/showgroup.php:256 actions/tagother.php:112 #: actions/showgroup.php:256 actions/tagother.php:112
#: actions/userauthorization.php:158 lib/groupeditform.php:177 #: actions/userauthorization.php:166 lib/groupeditform.php:177
#: lib/userprofile.php:164 #: lib/userprofile.php:164
msgid "Location" msgid "Location"
msgstr "地點" msgstr "地點"
@ -2850,7 +2852,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:131 #: actions/publictagcloud.php:134
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -3262,79 +3264,83 @@ msgstr "線上即時通設定"
msgid "You must be logged in to view an application." msgid "You must be logged in to view an application."
msgstr "" msgstr ""
#: actions/showapplication.php:158 #: actions/showapplication.php:157
msgid "Application profile" msgid "Application profile"
msgstr "" msgstr ""
#: actions/showapplication.php:160 lib/applicationeditform.php:180 #: actions/showapplication.php:159 lib/applicationeditform.php:180
msgid "Icon" msgid "Icon"
msgstr "" msgstr ""
#: actions/showapplication.php:170 actions/version.php:195 #: actions/showapplication.php:169 actions/version.php:195
#: lib/applicationeditform.php:195 #: lib/applicationeditform.php:195
#, fuzzy #, fuzzy
msgid "Name" msgid "Name"
msgstr "暱稱" msgstr "暱稱"
#: actions/showapplication.php:179 lib/applicationeditform.php:222 #: actions/showapplication.php:178 lib/applicationeditform.php:222
#, fuzzy #, fuzzy
msgid "Organization" msgid "Organization"
msgstr "地點" msgstr "地點"
#: actions/showapplication.php:188 actions/version.php:198 #: actions/showapplication.php:187 actions/version.php:198
#: lib/applicationeditform.php:209 lib/groupeditform.php:172 #: lib/applicationeditform.php:209 lib/groupeditform.php:172
#, fuzzy #, fuzzy
msgid "Description" msgid "Description"
msgstr "所有訂閱" msgstr "所有訂閱"
#: actions/showapplication.php:193 actions/showgroup.php:429 #: actions/showapplication.php:192 actions/showgroup.php:429
#: lib/profileaction.php:174 #: lib/profileaction.php:174
msgid "Statistics" msgid "Statistics"
msgstr "" msgstr ""
#: actions/showapplication.php:204 #: actions/showapplication.php:203
#, php-format #, php-format
msgid "Created by %1$s - %2$s access by default - %3$d users" msgid "Created by %1$s - %2$s access by default - %3$d users"
msgstr "" msgstr ""
#: actions/showapplication.php:214 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
msgstr "" msgstr ""
#: actions/showapplication.php:232 #: actions/showapplication.php:236
msgid "Reset key & secret" msgid "Reset key & secret"
msgstr "" msgstr ""
#: actions/showapplication.php:256 #: actions/showapplication.php:261
msgid "Application info" msgid "Application info"
msgstr "" msgstr ""
#: actions/showapplication.php:258 #: actions/showapplication.php:263
msgid "Consumer key" msgid "Consumer key"
msgstr "" msgstr ""
#: actions/showapplication.php:263 #: actions/showapplication.php:268
msgid "Consumer secret" msgid "Consumer secret"
msgstr "" msgstr ""
#: actions/showapplication.php:268 #: actions/showapplication.php:273
msgid "Request token URL" msgid "Request token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:273 #: actions/showapplication.php:278
msgid "Access token URL" msgid "Access token URL"
msgstr "" msgstr ""
#: actions/showapplication.php:278 #: actions/showapplication.php:283
msgid "Authorize URL" msgid "Authorize URL"
msgstr "" msgstr ""
#: actions/showapplication.php:283 #: actions/showapplication.php:288
msgid "" msgid ""
"Note: We support HMAC-SHA1 signatures. We do not support the plaintext " "Note: We support HMAC-SHA1 signatures. We do not support the plaintext "
"signature method." "signature method."
msgstr "" msgstr ""
#: actions/showapplication.php:309
msgid "Are you sure you want to reset your consumer key and secret?"
msgstr ""
#: actions/showfavorites.php:79 #: actions/showfavorites.php:79
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s's favorite notices, page %2$d" msgid "%1$s's favorite notices, page %2$d"
@ -3400,12 +3406,12 @@ msgid "Group profile"
msgstr "無此通知" msgstr "無此通知"
#: actions/showgroup.php:263 actions/tagother.php:118 #: actions/showgroup.php:263 actions/tagother.php:118
#: actions/userauthorization.php:167 lib/userprofile.php:177 #: actions/userauthorization.php:175 lib/userprofile.php:177
msgid "URL" msgid "URL"
msgstr "" msgstr ""
#: actions/showgroup.php:274 actions/tagother.php:128 #: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194 #: actions/userauthorization.php:187 lib/userprofile.php:194
msgid "Note" msgid "Note"
msgstr "" msgstr ""
@ -3960,7 +3966,8 @@ msgstr ""
msgid "User profile" msgid "User profile"
msgstr "無此通知" msgstr "無此通知"
#: actions/tagother.php:81 lib/userprofile.php:102 #: actions/tagother.php:81 actions/userauthorization.php:132
#: lib/userprofile.php:102
msgid "Photo" msgid "Photo"
msgstr "" msgstr ""
@ -4020,7 +4027,7 @@ msgstr "無確認請求"
msgid "Unsubscribed" msgid "Unsubscribed"
msgstr "此帳號已註冊" msgstr "此帳號已註冊"
#: actions/updateprofile.php:62 actions/userauthorization.php:330 #: actions/updateprofile.php:62 actions/userauthorization.php:337
#, php-format #, php-format
msgid "" msgid ""
"Listenee stream license %1$s is not compatible with site license %2$s." "Listenee stream license %1$s is not compatible with site license %2$s."
@ -4106,85 +4113,85 @@ msgid ""
"click “Reject”." "click “Reject”."
msgstr "" msgstr ""
#: actions/userauthorization.php:188 actions/version.php:165 #: actions/userauthorization.php:196 actions/version.php:165
msgid "License" msgid "License"
msgstr "" msgstr ""
#: actions/userauthorization.php:209 #: actions/userauthorization.php:217
msgid "Accept" msgid "Accept"
msgstr "接受" msgstr "接受"
#: actions/userauthorization.php:210 lib/subscribeform.php:115 #: actions/userauthorization.php:218 lib/subscribeform.php:115
#: lib/subscribeform.php:139 #: lib/subscribeform.php:139
msgid "Subscribe to this user" msgid "Subscribe to this user"
msgstr "" msgstr ""
#: actions/userauthorization.php:211 #: actions/userauthorization.php:219
msgid "Reject" msgid "Reject"
msgstr "" msgstr ""
#: actions/userauthorization.php:212 #: actions/userauthorization.php:220
#, fuzzy #, fuzzy
msgid "Reject this subscription" msgid "Reject this subscription"
msgstr "所有訂閱" msgstr "所有訂閱"
#: actions/userauthorization.php:225 #: actions/userauthorization.php:232
msgid "No authorization request!" msgid "No authorization request!"
msgstr "無確認請求" msgstr "無確認請求"
#: actions/userauthorization.php:247 #: actions/userauthorization.php:254
msgid "Subscription authorized" msgid "Subscription authorized"
msgstr "" msgstr ""
#: actions/userauthorization.php:249 #: actions/userauthorization.php:256
msgid "" msgid ""
"The subscription has been authorized, but no callback URL was passed. Check " "The subscription has been authorized, but no callback URL was passed. Check "
"with the sites instructions for details on how to authorize the " "with the sites instructions for details on how to authorize the "
"subscription. Your subscription token is:" "subscription. Your subscription token is:"
msgstr "" msgstr ""
#: actions/userauthorization.php:259 #: actions/userauthorization.php:266
msgid "Subscription rejected" msgid "Subscription rejected"
msgstr "" msgstr ""
#: actions/userauthorization.php:261 #: actions/userauthorization.php:268
msgid "" msgid ""
"The subscription has been rejected, but no callback URL was passed. Check " "The subscription has been rejected, but no callback URL was passed. Check "
"with the sites instructions for details on how to fully reject the " "with the sites instructions for details on how to fully reject the "
"subscription." "subscription."
msgstr "" msgstr ""
#: actions/userauthorization.php:296 #: actions/userauthorization.php:303
#, php-format #, php-format
msgid "Listener URI %s not found here." msgid "Listener URI %s not found here."
msgstr "" msgstr ""
#: actions/userauthorization.php:301 #: actions/userauthorization.php:308
#, php-format #, php-format
msgid "Listenee URI %s is too long." msgid "Listenee URI %s is too long."
msgstr "" msgstr ""
#: actions/userauthorization.php:307 #: actions/userauthorization.php:314
#, php-format #, php-format
msgid "Listenee URI %s is a local user." msgid "Listenee URI %s is a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:322 #: actions/userauthorization.php:329
#, php-format #, php-format
msgid "Profile URL %s is for a local user." msgid "Profile URL %s is for a local user."
msgstr "" msgstr ""
#: actions/userauthorization.php:338 #: actions/userauthorization.php:345
#, php-format #, php-format
msgid "Avatar URL %s is not valid." msgid "Avatar URL %s is not valid."
msgstr "" msgstr ""
#: actions/userauthorization.php:343 #: actions/userauthorization.php:350
#, fuzzy, php-format #, fuzzy, php-format
msgid "Cant read avatar URL %s." msgid "Cant read avatar URL %s."
msgstr "無法讀取此%sURL的圖像" msgstr "無法讀取此%sURL的圖像"
#: actions/userauthorization.php:348 #: actions/userauthorization.php:355
#, php-format #, php-format
msgid "Wrong image type for avatar URL %s." msgid "Wrong image type for avatar URL %s."
msgstr "" msgstr ""
@ -4367,7 +4374,7 @@ msgstr "儲存使用者發生錯誤"
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "增加回覆時,資料庫發生錯誤: %s" msgstr "增加回覆時,資料庫發生錯誤: %s"
#: classes/Notice.php:1231 #: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -4660,11 +4667,11 @@ msgstr "確認信箱"
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "確認信箱" msgstr "確認信箱"
#: lib/apiauth.php:99 #: lib/apiauth.php:95
msgid "API resource requires read-write access, but you only have read access." msgid "API resource requires read-write access, but you only have read access."
msgstr "" msgstr ""
#: lib/apiauth.php:279 #: lib/apiauth.php:273
#, php-format #, php-format
msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s" msgid "Failed API auth attempt, nickname = %1$s, proxy = %2$s, ip = %3$s"
msgstr "" msgstr ""
@ -5664,11 +5671,11 @@ msgstr "新增外部個人資料發生錯誤(Error inserting remote profile)"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "新訊息" msgstr "新訊息"
#: lib/oauthstore.php:466 lib/subs.php:48 #: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing." msgid "You have been banned from subscribing."
msgstr "" msgstr ""
#: lib/oauthstore.php:491 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "無法新增訂閱" msgstr "無法新增訂閱"
@ -5955,47 +5962,47 @@ msgstr ""
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:867 #: lib/util.php:870
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "" msgstr ""
#: lib/util.php:869 #: lib/util.php:872
msgid "about a minute ago" msgid "about a minute ago"
msgstr "" msgstr ""
#: lib/util.php:871 #: lib/util.php:874
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "" msgstr ""
#: lib/util.php:873 #: lib/util.php:876
msgid "about an hour ago" msgid "about an hour ago"
msgstr "" msgstr ""
#: lib/util.php:875 #: lib/util.php:878
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "" msgstr ""
#: lib/util.php:877 #: lib/util.php:880
msgid "about a day ago" msgid "about a day ago"
msgstr "" msgstr ""
#: lib/util.php:879 #: lib/util.php:882
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "" msgstr ""
#: lib/util.php:881 #: lib/util.php:884
msgid "about a month ago" msgid "about a month ago"
msgstr "" msgstr ""
#: lib/util.php:883 #: lib/util.php:886
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "" msgstr ""
#: lib/util.php:885 #: lib/util.php:888
msgid "about a year ago" msgid "about a year ago"
msgstr "" msgstr ""

View File

@ -1,115 +0,0 @@
<?php
/*
StatusNet Plugin: 0.9
Plugin Name: FeedSub
Plugin URI: http://status.net/wiki/Feed_subscription
Description: FeedSub allows subscribing to real-time updates from external feeds supporting PubHubSubbub protocol.
Version: 0.1
Author: Brion Vibber <brion@status.net>
Author URI: http://status.net/
*/
/*
* StatusNet - the distributed open-source microblogging tool
* Copyright (C) 2009, StatusNet, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @package FeedSubPlugin
* @maintainer Brion Vibber <brion@status.net>
*/
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
define('FEEDSUB_SERVICE', 100); // fixme -- avoid hardcoding these?
// We bundle the XML_Parse_Feed library...
set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/extlib');
class FeedSubException extends Exception
{
}
class FeedSubPlugin extends Plugin
{
/**
* Hook for RouterInitialized event.
*
* @param Net_URL_Mapper $m path-to-action mapper
* @return boolean hook return
*/
function onRouterInitialized($m)
{
$m->connect('feedsub/callback/:feed',
array('action' => 'feedsubcallback'),
array('feed' => '[0-9]+'));
$m->connect('settings/feedsub',
array('action' => 'feedsubsettings'));
return true;
}
/**
* Add the feed settings page to the Connect Settings menu
*
* @param Action &$action The calling page
*
* @return boolean hook return
*/
function onEndConnectSettingsNav(&$action)
{
$action_name = $action->trimmed('action');
$action->menuItem(common_local_url('feedsubsettings'),
_m('Feeds'),
_m('Feed subscription options'),
$action_name === 'feedsubsettings');
return true;
}
/**
* Automatically load the actions and libraries used by the plugin
*
* @param Class $cls the class
*
* @return boolean hook return
*
*/
function onAutoload($cls)
{
$base = dirname(__FILE__);
$lower = strtolower($cls);
$files = array("$base/$lower.php");
if (substr($lower, -6) == 'action') {
$files[] = "$base/actions/" . substr($lower, 0, -6) . ".php";
}
foreach ($files as $file) {
if (file_exists($file)) {
include_once $file;
return false;
}
}
return true;
}
function onCheckSchema() {
// warning: the autoincrement doesn't seem to set.
// alter table feedinfo change column id id int(11) not null auto_increment;
$schema = Schema::get();
$schema->ensureTable('feedinfo', Feedinfo::schemaDef());
return true;
}
}

View File

@ -1,268 +0,0 @@
<?php
/*
Subscription flow:
$feedinfo->subscribe()
generate random verification token
save to verify_token
sends a sub request to the hub...
feedsub/callback
hub sends confirmation back to us via GET
We verify the request, then echo back the challenge.
On our end, we save the time we subscribed and the lease expiration
feedsub/callback
hub sends us updates via POST
?
*/
class FeedDBException extends FeedSubException
{
public $obj;
function __construct($obj)
{
parent::__construct('Database insert failure');
$this->obj = $obj;
}
}
class Feedinfo extends Memcached_DataObject
{
public $__table = 'feedinfo';
public $id;
public $profile_id;
public $feeduri;
public $homeuri;
public $huburi;
// PuSH subscription data
public $verify_token;
public $sub_start;
public $sub_end;
public $created;
public $lastupdate;
public /*static*/ function staticGet($k, $v=null)
{
return parent::staticGet(__CLASS__, $k, $v);
}
/**
* return table definition for DB_DataObject
*
* DB_DataObject needs to know something about the table to manipulate
* instances. This method provides all the DB_DataObject needs to know.
*
* @return array array of column definitions
*/
function table()
{
return array('id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
'profile_id' => DB_DATAOBJECT_INT + DB_DATAOBJECT_NOTNULL,
'feeduri' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
'homeuri' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
'huburi' => DB_DATAOBJECT_STR + DB_DATAOBJECT_NOTNULL,
'verify_token' => DB_DATAOBJECT_STR,
'sub_start' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME,
'sub_end' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME,
'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL,
'lastupdate' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME + DB_DATAOBJECT_NOTNULL);
}
static function schemaDef()
{
return array(new ColumnDef('id', 'integer',
/*size*/ null,
/*nullable*/ false,
/*key*/ 'PRI',
/*default*/ '0',
/*extra*/ null,
/*auto_increment*/ true),
new ColumnDef('profile_id', 'integer',
null, false),
new ColumnDef('feeduri', 'varchar',
255, false, 'UNI'),
new ColumnDef('homeuri', 'varchar',
255, false),
new ColumnDef('huburi', 'varchar',
255, false),
new ColumnDef('verify_token', 'varchar',
32, true),
new ColumnDef('sub_start', 'datetime',
null, true),
new ColumnDef('sub_end', 'datetime',
null, true),
new ColumnDef('created', 'datetime',
null, false),
new ColumnDef('lastupdate', 'datetime',
null, false));
}
/**
* return key definitions for DB_DataObject
*
* DB_DataObject needs to know about keys that the table has; this function
* defines them.
*
* @return array key definitions
*/
function keys()
{
return array('id' => 'P'); //?
}
/**
* return key definitions for Memcached_DataObject
*
* Our caching system uses the same key definitions, but uses a different
* method to get them.
*
* @return array key definitions
*/
function keyTypes()
{
return $this->keys();
}
/**
* Fetch the StatusNet-side profile for this feed
* @return Profile
*/
public function getProfile()
{
return Profile::staticGet('id', $this->profile_id);
}
/**
* @param FeedMunger $munger
* @return Feedinfo
*/
public static function ensureProfile($munger)
{
$feedinfo = $munger->feedinfo();
$current = self::staticGet('feeduri', $feedinfo->feeduri);
if ($current) {
// @fixme we should probably update info as necessary
return $current;
}
$feedinfo->query('BEGIN');
try {
$profile = $munger->profile();
$result = $profile->insert();
if (empty($result)) {
throw new FeedDBException($profile);
}
$feedinfo->profile_id = $profile->id;
$result = $feedinfo->insert();
if (empty($result)) {
throw new FeedDBException($feedinfo);
}
$feedinfo->query('COMMIT');
} catch (FeedDBException $e) {
common_log_db_error($e->obj, 'INSERT', __FILE__);
$feedinfo->query('ROLLBACK');
return false;
}
return $feedinfo;
}
/**
* Send a subscription request to the hub for this feed.
* The hub will later send us a confirmation POST to /feedsub/callback.
*
* @return bool true on success, false on failure
*/
public function subscribe()
{
// @fixme use the verification token
#$token = md5(mt_rand() . ':' . $this->feeduri);
#$this->verify_token = $token;
#$this->update(); // @fixme
try {
$callback = common_local_url('feedsubcallback', array('feed' => $this->id));
$headers = array('Content-Type: application/x-www-form-urlencoded');
$post = array('hub.mode' => 'subscribe',
'hub.callback' => $callback,
'hub.verify' => 'async',
//'hub.verify_token' => $token,
//'hub.lease_seconds' => 0,
'hub.topic' => $this->feeduri);
$client = new HTTPClient();
$response = $client->post($this->huburi, $headers, $post);
if ($response->getStatus() >= 200 && $response->getStatus() < 300) {
common_log(LOG_INFO, __METHOD__ . ': sub req ok');
return true;
} else {
common_log(LOG_INFO, __METHOD__ . ': sub req failed');
return false;
}
} catch (Exception $e) {
// wtf!
common_log(LOG_ERR, __METHOD__ . ": error \"{$e->getMessage()}\" hitting hub $this->huburi subscribing to $this->feeduri");
return false;
}
}
/**
* Read and post notices for updates from the feed.
* Currently assumes that all items in the feed are new,
* coming from a PuSH hub.
*
* @param string $xml source of Atom or RSS feed
*/
public function postUpdates($xml)
{
common_log(LOG_INFO, __METHOD__ . ": packet for \"$this->feeduri\"! $xml");
require_once "XML/Feed/Parser.php";
$feed = new XML_Feed_Parser($xml, false, false, true);
$munger = new FeedMunger($feed);
$hits = 0;
foreach ($feed as $index => $entry) {
// @fixme this might sort in wrong order if we get multiple updates
$notice = $munger->notice($index);
$notice->profile_id = $this->profile_id;
// Double-check for oldies
// @fixme this could explode horribly for multiple feeds on a blog. sigh
$dupe = new Notice();
$dupe->uri = $notice->uri;
$dupe->find();
if ($dupe->fetch()) {
common_log(LOG_WARNING, __METHOD__ . ": tried to save dupe notice for entry {$notice->uri} of feed {$this->feeduri}");
continue;
}
if (Event::handle('StartNoticeSave', array(&$notice))) {
$id = $notice->insert();
Event::handle('EndNoticeSave', array($notice));
}
$notice->addToInboxes();
common_log(LOG_INFO, __METHOD__ . ": saved notice {$notice->id} for entry $index of update to \"{$this->feeduri}\"");
$hits++;
}
if ($hits == 0) {
common_log(LOG_INFO, __METHOD__ . ": no updates in packet for \"$this->feeduri\"! $xml");
}
}
}

View File

@ -1,14 +0,0 @@
CREATE TABLE `feedinfo` (
`id` int(11) NOT NULL auto_increment,
`profile_id` int(11) NOT NULL,
`feeduri` varchar(255) NOT NULL,
`homeuri` varchar(255) NOT NULL,
`huburi` varchar(255) NOT NULL,
`verify_token` varchar(32) default NULL,
`sub_start` datetime default NULL,
`sub_end` datetime default NULL,
`created` datetime NOT NULL,
`lastupdate` datetime NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `feedinfo_feeduri_idx` (`feeduri`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;

View File

@ -102,7 +102,7 @@ class MemcachePlugin extends Plugin
* *
* @param string &$key in; Key to use for lookups * @param string &$key in; Key to use for lookups
* @param mixed &$value in; Value to associate * @param mixed &$value in; Value to associate
* @param integer &$flag in; Flag (passed through to Memcache) * @param integer &$flag in; Flag empty or Cache::COMPRESSED
* @param integer &$expiry in; Expiry (passed through to Memcache) * @param integer &$expiry in; Expiry (passed through to Memcache)
* @param boolean &$success out; Whether the set was successful * @param boolean &$success out; Whether the set was successful
* *
@ -115,7 +115,7 @@ class MemcachePlugin extends Plugin
if ($expiry === null) { if ($expiry === null) {
$expiry = $this->defaultExpiry; $expiry = $this->defaultExpiry;
} }
$success = $this->_conn->set($key, $value, $flag, $expiry); $success = $this->_conn->set($key, $value, $this->flag(intval($flag)), $expiry);
Event::handle('EndCacheSet', array($key, $value, $flag, Event::handle('EndCacheSet', array($key, $value, $flag,
$expiry)); $expiry));
return false; return false;
@ -197,6 +197,20 @@ class MemcachePlugin extends Plugin
} }
} }
/**
* Translate general flags to Memcached-specific flags
* @param int $flag
* @return int
*/
protected function flag($flag)
{
$out = 0;
if ($flag & Cache::COMPRESSED == Cache::COMPRESSED) {
$out |= MEMCACHE_COMPRESSED;
}
return $out;
}
function onPluginVersion(&$versions) function onPluginVersion(&$versions)
{ {
$versions[] = array('name' => 'Memcache', $versions[] = array('name' => 'Memcache',

View File

@ -240,6 +240,8 @@ class MobileProfilePlugin extends WAP20Plugin
return true; return true;
} }
$action->cssLink('css/display.css');
if (file_exists(Theme::file('css/mp-screen.css'))) { if (file_exists(Theme::file('css/mp-screen.css'))) {
$action->cssLink('css/mp-screen.css', null, 'screen'); $action->cssLink('css/mp-screen.css', null, 'screen');
} else { } else {
@ -256,6 +258,14 @@ class MobileProfilePlugin extends WAP20Plugin
} }
function onStartShowUAStyles($action) {
if (!$this->serveMobile) {
return true;
}
return false;
}
function onStartShowHeader($action) function onStartShowHeader($action)
{ {
if (!$this->serveMobile) { if (!$this->serveMobile) {

View File

@ -1,15 +1,12 @@
/** theme: mobile profile screen /** theme: mobile profile screen
* *
* @package StatusNet * @package StatusNet
* @author Sarven Capadisli <csarven@status.net> * @author Sarven Capadisli <csarven@status.net>
* @copyright 2009 StatusNet, Inc. * @copyright 2009 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/ * @link http://status.net/
*/ */
@import url(../../theme/base/css/display.css);
@import url(../../theme/identica/css/display.css);
#wrap { #wrap {
min-width:0; min-width:0;
max-width:100%; max-width:100%;

View File

@ -0,0 +1,276 @@
<?php
/*
StatusNet Plugin: 0.9
Plugin Name: FeedSub
Plugin URI: http://status.net/wiki/Feed_subscription
Description: FeedSub allows subscribing to real-time updates from external feeds supporting PubHubSubbub protocol.
Version: 0.1
Author: Brion Vibber <brion@status.net>
Author URI: http://status.net/
*/
/*
* StatusNet - the distributed open-source microblogging tool
* Copyright (C) 2009, StatusNet, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @package FeedSubPlugin
* @maintainer Brion Vibber <brion@status.net>
*/
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
define('FEEDSUB_SERVICE', 100); // fixme -- avoid hardcoding these?
// We bundle the XML_Parse_Feed library...
set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/extlib');
class FeedSubException extends Exception
{
}
class OStatusPlugin extends Plugin
{
/**
* Hook for RouterInitialized event.
*
* @param Net_URL_Mapper $m path-to-action mapper
* @return boolean hook return
*/
function onRouterInitialized($m)
{
// Discovery actions
$m->connect('.well-known/host-meta',
array('action' => 'hostmeta'));
$m->connect('main/webfinger',
array('action' => 'webfinger'));
$m->connect('main/ostatus',
array('action' => 'ostatusinit'));
$m->connect('main/ostatus?nickname=:nickname',
array('action' => 'ostatusinit'), array('nickname' => '[A-Za-z0-9_-]+'));
$m->connect('main/ostatussub',
array('action' => 'ostatussub'));
$m->connect('main/ostatussub',
array('action' => 'ostatussub'), array('feed' => '[A-Za-z0-9\.\/\:]+'));
// PuSH actions
$m->connect('main/push/hub', array('action' => 'pushhub'));
$m->connect('main/push/callback/:feed',
array('action' => 'pushcallback'),
array('feed' => '[0-9]+'));
$m->connect('settings/feedsub',
array('action' => 'feedsubsettings'));
// Salmon endpoint
$m->connect('main/salmon/user/:id',
array('action' => 'salmon'),
array('id' => '[0-9]+'));
$m->connect('main/salmon/group/:id',
array('action' => 'salmongroup'),
array('id' => '[0-9]+'));
return true;
}
/**
* Set up queue handlers for outgoing hub pushes
* @param QueueManager $qm
* @return boolean hook return
*/
function onEndInitializeQueueManager(QueueManager $qm)
{
$qm->connect('hubverify', 'HubVerifyQueueHandler');
$qm->connect('hubdistrib', 'HubDistribQueueHandler');
$qm->connect('hubout', 'HubOutQueueHandler');
return true;
}
/**
* Put saved notices into the queue for pubsub distribution.
*/
function onStartEnqueueNotice($notice, &$transports)
{
$transports[] = 'hubdistrib';
return true;
}
/**
* Set up a PuSH hub link to our internal link for canonical timeline
* Atom feeds for users and groups.
*/
function onStartApiAtom(Action $action)
{
if ($action instanceof ApiTimelineUserAction) {
$salmonAction = 'salmon';
} else if ($action instanceof ApiTimelineGroupAction) {
$salmonAction = 'salmongroup';
} else {
return;
}
$id = $action->arg('id');
if (strval(intval($id)) === strval($id)) {
// Canonical form of id in URL? These are used for OStatus syndication.
$hub = common_config('ostatus', 'hub');
if (empty($hub)) {
// Updates will be handled through our internal PuSH hub.
$hub = common_local_url('pushhub');
}
$action->element('link', array('rel' => 'hub',
'href' => $hub));
// Also, we'll add in the salmon link
$salmon = common_local_url($salmonAction, array('id' => $id));
$action->element('link', array('rel' => 'salmon',
'href' => $salmon));
}
}
/**
* Add the feed settings page to the Connect Settings menu
*
* @param Action &$action The calling page
*
* @return boolean hook return
*/
function onEndConnectSettingsNav(&$action)
{
$action_name = $action->trimmed('action');
$action->menuItem(common_local_url('feedsubsettings'),
_m('Feeds'),
_m('Feed subscription options'),
$action_name === 'feedsubsettings');
return true;
}
/**
* Automatically load the actions and libraries used by the plugin
*
* @param Class $cls the class
*
* @return boolean hook return
*
*/
function onAutoload($cls)
{
$base = dirname(__FILE__);
$lower = strtolower($cls);
$files = array("$base/classes/$cls.php",
"$base/lib/$lower.php");
if (substr($lower, -6) == 'action') {
$files[] = "$base/actions/" . substr($lower, 0, -6) . ".php";
}
foreach ($files as $file) {
if (file_exists($file)) {
include_once $file;
return false;
}
}
return true;
}
/**
* Add in an OStatus subscribe button
*/
function onStartProfilePageActionsElements($output, $profile)
{
$cur = common_current_user();
if (empty($cur)) {
// Add an OStatus subscribe
$output->elementStart('li', 'entity_subscribe');
$url = common_local_url('ostatusinit',
array('nickname' => $profile->nickname));
$output->element('a', array('href' => $url,
'class' => 'entity_remote_subscribe'),
_m('OStatus'));
$output->elementEnd('li');
}
}
/**
* Check if we've got remote replies to send via Salmon.
*
* @fixme push webfinger lookup & sending to a background queue
* @fixme also detect short-form name for remote subscribees where not ambiguous
*/
function onEndNoticeSave($notice)
{
$count = preg_match_all('/(\w+\.)*\w+@(\w+\.)*\w+(\w+\-\w+)*\.\w+/', $notice->content, $matches);
if ($count) {
foreach ($matches[0] as $webfinger) {
// Check to see if we've got an actual webfinger
$w = new Webfinger;
$endpoint_uri = '';
$result = $w->lookup($webfinger);
if (empty($result)) {
continue;
}
foreach ($result->links as $link) {
if ($link['rel'] == 'salmon') {
$endpoint_uri = $link['href'];
}
}
if (empty($endpoint_uri)) {
continue;
}
$xml = '<?xml version="1.0" encoding="UTF-8" ?>';
$xml .= $notice->asAtomEntry();
$salmon = new Salmon();
$salmon->post($endpoint_uri, $xml);
}
}
}
/**
* Garbage collect unused feeds on unsubscribe
*/
function onEndUnsubscribe($user, $other)
{
$profile = Ostatus_profile::staticGet('profile_id', $other->id);
if ($feed) {
$sub = new Subscription();
$sub->subscribed = $other->id;
$sub->limit(1);
if (!$sub->find(true)) {
common_log(LOG_INFO, "Unsubscribing from now-unused feed $feed->feeduri on hub $feed->huburi");
$profile->unsubscribe();
}
}
return true;
}
/**
* Make sure necessary tables are filled out.
*/
function onCheckSchema() {
$schema = Schema::get();
$schema->ensureTable('ostatus_profile', Ostatus_profile::schemaDef());
$schema->ensureTable('hubsub', HubSub::schemaDef());
return true;
}
}

View File

@ -182,9 +182,9 @@ class FeedSubSettingsAction extends ConnectSettingsAction
} }
$this->munger = $discover->feedMunger(); $this->munger = $discover->feedMunger();
$this->feedinfo = $this->munger->feedInfo(); $this->profile = $this->munger->ostatusProfile();
if ($this->feedinfo->huburi == '') { if ($this->profile->huburi == '' && !common_config('feedsub', 'nohub')) {
$this->showForm(_m('Feed is not PuSH-enabled; cannot subscribe.')); $this->showForm(_m('Feed is not PuSH-enabled; cannot subscribe.'));
return false; return false;
} }
@ -196,30 +196,44 @@ class FeedSubSettingsAction extends ConnectSettingsAction
{ {
if ($this->validateFeed()) { if ($this->validateFeed()) {
$this->preview = true; $this->preview = true;
$this->feedinfo = Feedinfo::ensureProfile($this->munger); $this->profile = Ostatus_profile::ensureProfile($this->munger);
if (!$this->profile) {
throw new ServerException("Feed profile was not saved properly.");
}
// If not already in use, subscribe to updates via the hub // If not already in use, subscribe to updates via the hub
if ($this->feedinfo->sub_start) { if ($this->profile->sub_start) {
common_log(LOG_INFO, __METHOD__ . ": double the fun! new sub for {$this->feedinfo->feeduri} last subbed {$this->feedinfo->sub_start}"); common_log(LOG_INFO, __METHOD__ . ": double the fun! new sub for {$this->profile->feeduri} last subbed {$this->profile->sub_start}");
} else { } else {
$ok = $this->feedinfo->subscribe(); $ok = $this->profile->subscribe();
common_log(LOG_INFO, __METHOD__ . ": sub was $ok"); common_log(LOG_INFO, __METHOD__ . ": sub was $ok");
if (!$ok) { if (!$ok) {
$this->showForm(_m('Feed subscription failed! Bad response from hub.')); $this->showForm(_m('Feed subscription failed! Bad response from hub.'));
return; return;
} }
} }
// And subscribe the current user to the local profile // And subscribe the current user to the local profile
$user = common_current_user(); $user = common_current_user();
$profile = $this->feedinfo->getProfile();
if ($this->profile->isGroup()) {
if ($user->isSubscribed($profile)) { $group = $this->profile->localGroup();
$this->showForm(_m('Already subscribed!')); if ($user->isMember($group)) {
} elseif ($user->subscribeTo($profile)) { $this->showForm(_m('Already a member!'));
$this->showForm(_m('Feed subscribed!')); } elseif (Group_member::join($this->profile->group_id, $user->id)) {
$this->showForm(_m('Joined remote group!'));
} else {
$this->showForm(_m('Remote group join failed!'));
}
} else { } else {
$this->showForm(_m('Feed subscription failed!')); $local = $this->profile->localProfile();
if ($user->isSubscribed($local)) {
$this->showForm(_m('Already subscribed!'));
} elseif ($user->subscribeTo($local)) {
$this->showForm(_m('Feed subscribed!'));
} else {
$this->showForm(_m('Feed subscription failed!'));
}
} }
} }
} }
@ -234,7 +248,7 @@ class FeedSubSettingsAction extends ConnectSettingsAction
function previewFeed() function previewFeed()
{ {
$feedinfo = $this->munger->feedinfo(); $profile = $this->munger->ostatusProfile();
$notice = $this->munger->notice(0, true); // preview $notice = $this->munger->notice(0, true); // preview
if ($notice) { if ($notice) {

View File

@ -0,0 +1,42 @@
<?php
/*
* StatusNet - the distributed open-source microblogging tool
* Copyright (C) 2010, StatusNet, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @package OStatusPlugin
* @maintainer James Walker <james@status.net>
*/
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
class HostMetaAction extends Action
{
function handle()
{
parent::handle();
$w = new Webfinger();
$domain = common_config('site', 'server');
$url = common_local_url('webfinger');
$url.= '?uri={uri}';
print $w->getHostMeta($domain, $url);
}
}

Some files were not shown because too many files have changed in this diff Show More