Merge branch '0.9.x' into 1.0.x

Conflicts:
	EVENTS.txt
	db/statusnet.sql
	lib/queuemanager.php
This commit is contained in:
Craig Andrews 2010-02-24 20:52:45 -05:00
commit c187bf5597
189 changed files with 17090 additions and 13972 deletions

View File

@ -1,4 +1,4 @@
\InitializePlugin: a chance to initialize a plugin in a complete environment InitializePlugin: a chance to initialize a plugin in a complete environment
CleanupPlugin: a chance to cleanup a plugin at the end of a program CleanupPlugin: a chance to cleanup a plugin at the end of a program
@ -739,3 +739,51 @@ StartRobotsTxt: Before outputting the robots.txt page
EndRobotsTxt: After the default robots.txt page (good place for customization) EndRobotsTxt: After the default robots.txt page (good place for customization)
- &$action: RobotstxtAction being shown - &$action: RobotstxtAction being shown
StartGetProfileUri: When determining the canonical URI for a given profile
- $profile: the current profile
- &$uri: the URI
EndGetProfileUri: After determining the canonical URI for a given profile
- $profile: the current profile
- &$uri: the URI
StartFavorNotice: Saving a notice as a favorite
- $profile: profile of the person faving (can be remote!)
- $notice: notice being faved
- &$fave: Favor object; null to start off with, but feel free to override.
EndFavorNotice: After saving a notice as a favorite
- $profile: profile of the person faving (can be remote!)
- $notice: notice being faved
StartDisfavorNotice: Saving a notice as a favorite
- $profile: profile of the person faving (can be remote!)
- $notice: notice being faved
- &$result: result of the disfavoring (if you override)
EndDisfavorNotice: After saving a notice as a favorite
- $profile: profile of the person faving (can be remote!)
- $notice: notice being faved
StartFindMentions: start finding mentions in a block of text
- $sender: sender profile
- $text: plain text version of the notice
- &$mentions: mentions found so far. Array of arrays; each array
has 'mentioned' (array of mentioned profiles), 'url' (url to link as),
'title' (title of the link), 'position' (position of the text to
replace), 'text' (text to replace)
EndFindMentions: end finding mentions in a block of text
- $sender: sender profile
- $text: plain text version of the notice
- &$mentions: mentions found so far. Array of arrays; each array
has 'mentioned' (array of mentioned profiles), 'url' (url to link as),
'title' (title of the link), 'position' (position of the text to
replace), 'text' (text to replace)
StartShowSubscriptionsContent: before showing the subscriptions content
- $action: the current action
EndShowSubscriptionsContent: after showing the subscriptions content
- $action: the current action

View File

@ -79,7 +79,7 @@ class ApiDirectMessageAction extends ApiAuthAction
} }
$server = common_root_url(); $server = common_root_url();
$taguribase = common_config('integration', 'taguri'); $taguribase = TagURI::base();
if ($this->arg('sent')) { if ($this->arg('sent')) {

View File

@ -124,12 +124,9 @@ class ApiFriendshipsDestroyAction extends ApiAuthAction
return; return;
} }
$result = subs_unsubscribe_user($this->user, $this->other->nickname); // throws an exception on error
Subscription::cancel($this->user->getProfile(),
if (is_string($result)) { $this->other->getProfile());
$this->clientError($result, 403, $this->format);
return;
}
$this->initDocument($this->format); $this->initDocument($this->format);
$this->showProfile($this->other, $this->format); $this->showProfile($this->other, $this->format);

View File

@ -93,7 +93,7 @@ class ApiGroupListAction extends ApiBareAuthAction
$sitename = common_config('site', 'name'); $sitename = common_config('site', 'name');
$title = sprintf(_("%s's groups"), $this->user->nickname); $title = sprintf(_("%s's groups"), $this->user->nickname);
$taguribase = common_config('integration', 'taguri'); $taguribase = TagURI::base();
$id = "tag:$taguribase:Groups"; $id = "tag:$taguribase:Groups";
$link = common_local_url( $link = common_local_url(
'usergroups', 'usergroups',

View File

@ -88,7 +88,7 @@ class ApiGroupListAllAction extends ApiPrivateAuthAction
$sitename = common_config('site', 'name'); $sitename = common_config('site', 'name');
$title = sprintf(_("%s groups"), $sitename); $title = sprintf(_("%s groups"), $sitename);
$taguribase = common_config('integration', 'taguri'); $taguribase = TagURI::base();
$id = "tag:$taguribase:Groups"; $id = "tag:$taguribase:Groups";
$link = common_local_url('groups'); $link = common_local_url('groups');
$subtitle = sprintf(_("groups on %s"), $sitename); $subtitle = sprintf(_("groups on %s"), $sitename);

View File

@ -110,7 +110,7 @@ class ApiTimelineFavoritesAction extends ApiBareAuthAction
$this->user->nickname $this->user->nickname
); );
$taguribase = common_config('integration', 'taguri'); $taguribase = TagURI::base();
$id = "tag:$taguribase:Favorites:" . $this->user->id; $id = "tag:$taguribase:Favorites:" . $this->user->id;
$subtitle = sprintf( $subtitle = sprintf(

View File

@ -112,7 +112,7 @@ class ApiTimelineFriendsAction extends ApiBareAuthAction
$avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE); $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
$sitename = common_config('site', 'name'); $sitename = common_config('site', 'name');
$title = sprintf(_("%s and friends"), $this->user->nickname); $title = sprintf(_("%s and friends"), $this->user->nickname);
$taguribase = common_config('integration', 'taguri'); $taguribase = TagURI::base();
$id = "tag:$taguribase:FriendsTimeline:" . $this->user->id; $id = "tag:$taguribase:FriendsTimeline:" . $this->user->id;
$subtitle = sprintf( $subtitle = sprintf(

View File

@ -107,7 +107,7 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction
$sitename = common_config('site', 'name'); $sitename = common_config('site', 'name');
$avatar = $this->group->homepage_logo; $avatar = $this->group->homepage_logo;
$title = sprintf(_("%s timeline"), $this->group->nickname); $title = sprintf(_("%s timeline"), $this->group->nickname);
$taguribase = common_config('integration', 'taguri'); $taguribase = TagURI::base();
$id = "tag:$taguribase:GroupTimeline:" . $this->group->id; $id = "tag:$taguribase:GroupTimeline:" . $this->group->id;
$subtitle = sprintf( $subtitle = sprintf(
@ -176,7 +176,8 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction
$atom->addEntryFromNotices($this->notices); $atom->addEntryFromNotices($this->notices);
$this->raw($atom->getString()); //$this->raw($atom->getString());
print $atom->getString(); // temp hack until PuSH feeds are redone cleanly
} catch (Atom10FeedException $e) { } catch (Atom10FeedException $e) {
$this->serverError( $this->serverError(

View File

@ -113,7 +113,7 @@ class ApiTimelineHomeAction extends ApiBareAuthAction
$avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE); $avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
$sitename = common_config('site', 'name'); $sitename = common_config('site', 'name');
$title = sprintf(_("%s and friends"), $this->user->nickname); $title = sprintf(_("%s and friends"), $this->user->nickname);
$taguribase = common_config('integration', 'taguri'); $taguribase = TagURI::base();
$id = "tag:$taguribase:HomeTimeline:" . $this->user->id; $id = "tag:$taguribase:HomeTimeline:" . $this->user->id;
$subtitle = sprintf( $subtitle = sprintf(

View File

@ -117,7 +117,7 @@ class ApiTimelineMentionsAction extends ApiBareAuthAction
_('%1$s / Updates mentioning %2$s'), _('%1$s / Updates mentioning %2$s'),
$sitename, $this->user->nickname $sitename, $this->user->nickname
); );
$taguribase = common_config('integration', 'taguri'); $taguribase = TagURI::base();
$id = "tag:$taguribase:Mentions:" . $this->user->id; $id = "tag:$taguribase:Mentions:" . $this->user->id;
$link = common_local_url( $link = common_local_url(
'replies', 'replies',

View File

@ -109,7 +109,7 @@ class ApiTimelinePublicAction 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(_("%s public timeline"), $sitename); $title = sprintf(_("%s public timeline"), $sitename);
$taguribase = common_config('integration', 'taguri'); $taguribase = TagURI::base();
$id = "tag:$taguribase:PublicTimeline"; $id = "tag:$taguribase:PublicTimeline";
$link = common_root_url(); $link = common_root_url();
$subtitle = sprintf(_("%s updates from everyone!"), $sitename); $subtitle = sprintf(_("%s updates from everyone!"), $sitename);

View File

@ -109,7 +109,7 @@ class ApiTimelineRetweetedToMeAction extends ApiAuthAction
$profile = $this->auth_user->getProfile(); $profile = $this->auth_user->getProfile();
$title = sprintf(_("Repeated to %s"), $this->auth_user->nickname); $title = sprintf(_("Repeated to %s"), $this->auth_user->nickname);
$taguribase = common_config('integration', 'taguri'); $taguribase = TagURI::base();
$id = "tag:$taguribase:RepeatedToMe:" . $this->auth_user->id; $id = "tag:$taguribase:RepeatedToMe:" . $this->auth_user->id;
$link = common_local_url('all', $link = common_local_url('all',
array('nickname' => $this->auth_user->nickname)); array('nickname' => $this->auth_user->nickname));

View File

@ -112,7 +112,7 @@ class ApiTimelineRetweetsOfMeAction extends ApiAuthAction
$profile = $this->auth_user->getProfile(); $profile = $this->auth_user->getProfile();
$title = sprintf(_("Repeats of %s"), $this->auth_user->nickname); $title = sprintf(_("Repeats of %s"), $this->auth_user->nickname);
$taguribase = common_config('integration', 'taguri'); $taguribase = TagURI::base();
$id = "tag:$taguribase:RepeatsOfMe:" . $this->auth_user->id; $id = "tag:$taguribase:RepeatsOfMe:" . $this->auth_user->id;
header('Content-Type: application/atom+xml; charset=utf-8'); header('Content-Type: application/atom+xml; charset=utf-8');

View File

@ -105,7 +105,7 @@ class ApiTimelineTagAction extends ApiPrivateAuthAction
$this->tag, $this->tag,
$sitename $sitename
); );
$taguribase = common_config('integration', 'taguri'); $taguribase = TagURI::base();
$id = "tag:$taguribase:TagTimeline:".$tag; $id = "tag:$taguribase:TagTimeline:".$tag;
switch($this->format) { switch($this->format) {

View File

@ -116,7 +116,7 @@ class ApiTimelineUserAction extends ApiBareAuthAction
$sitename = common_config('site', 'name'); $sitename = common_config('site', 'name');
$title = sprintf(_("%s timeline"), $this->user->nickname); $title = sprintf(_("%s timeline"), $this->user->nickname);
$taguribase = common_config('integration', 'taguri'); $taguribase = TagURI::base();
$id = "tag:$taguribase:UserTimeline:" . $this->user->id; $id = "tag:$taguribase:UserTimeline:" . $this->user->id;
$link = common_local_url( $link = common_local_url(
'showstream', 'showstream',
@ -196,7 +196,8 @@ class ApiTimelineUserAction extends ApiBareAuthAction
$atom->addEntryFromNotices($this->notices); $atom->addEntryFromNotices($this->notices);
$this->raw($atom->getString()); #$this->raw($atom->getString());
print $atom->getString(); // temporary for output buffering
break; break;
case 'json': case 'json':

View File

@ -173,6 +173,10 @@ class DocAction extends Action
} }
$local = glob(INSTALLDIR.'/local/doc-src/'.$this->title.'.*'); $local = glob(INSTALLDIR.'/local/doc-src/'.$this->title.'.*');
if ($local === false) {
// Some systems return false, others array(), if dir didn't exist.
$local = array();
}
if (count($local) || isset($localDef)) { if (count($local) || isset($localDef)) {
return $this->negotiateLanguage($local, $localDef); return $this->negotiateLanguage($local, $localDef);
@ -183,6 +187,9 @@ class DocAction extends Action
} }
$dist = glob(INSTALLDIR.'/doc-src/'.$this->title.'.*'); $dist = glob(INSTALLDIR.'/doc-src/'.$this->title.'.*');
if ($dist === false) {
$dist = array();
}
if (count($dist) || isset($distDef)) { if (count($dist) || isset($distDef)) {
return $this->negotiateLanguage($dist, $distDef); return $this->negotiateLanguage($dist, $distDef);

View File

@ -79,7 +79,7 @@ class FavorAction extends Action
$this->clientError(_('This notice is already a favorite!')); $this->clientError(_('This notice is already a favorite!'));
return; return;
} }
$fave = Fave::addNew($user, $notice); $fave = Fave::addNew($user->getProfile(), $notice);
if (!$fave) { if (!$fave) {
$this->serverError(_('Could not create favorite.')); $this->serverError(_('Could not create favorite.'));
return; return;

View File

@ -285,6 +285,10 @@ class ProfilesettingsAction extends AccountSettingsAction
} else { } else {
// Re-initialize language environment if it changed // Re-initialize language environment if it changed
common_init_language(); common_init_language();
// Clear the site owner, in case nickname changed
if ($user->hasRole(Profile_role::OWNER)) {
User::blow('user:site_owner');
}
} }
} }

View File

@ -1,7 +1,9 @@
<?php <?php
/* /**
* StatusNet - the distributed open-source microblogging tool * StatusNet - the distributed open-source microblogging tool
* Copyright (C) 2008, 2009, StatusNet, Inc. * Copyright (C) 2008-2010, StatusNet, Inc.
*
* Subscription action.
* *
* This program is free software: you can redistribute it and/or modify * 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 * it under the terms of the GNU Affero General Public License as published by
@ -15,68 +17,142 @@
* *
* You should have received a copy of the GNU Affero General Public License * 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/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* PHP version 5
*
* @category Action
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @copyright 2008-2010 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
* @link http://status.net/
*/ */
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } if (!defined('STATUSNET')) {
exit(1);
}
/**
* Subscription action
*
* Subscribing to a profile. Does not work for OMB 0.1 remote subscriptions,
* but may work for other remote subscription protocols, like OStatus.
*
* Takes parameters:
*
* - subscribeto: a profile ID
* - token: session token to prevent CSRF attacks
* - ajax: boolean; whether to return Ajax or full-browser results
*
* Only works if the current user is logged in.
*
* @category Action
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @copyright 2008-2010 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
* @link http://status.net/
*/
class SubscribeAction extends Action class SubscribeAction extends Action
{ {
var $user;
var $other;
function handle($args) /**
* Check pre-requisites and instantiate attributes
*
* @param Array $args array of arguments (URL, GET, POST)
*
* @return boolean success flag
*/
function prepare($args)
{ {
parent::handle($args); parent::prepare($args);
if (!common_logged_in()) { // Only allow POST requests
$this->clientError(_('Not logged in.'));
return;
}
$user = common_current_user();
if ($_SERVER['REQUEST_METHOD'] != 'POST') { if ($_SERVER['REQUEST_METHOD'] != 'POST') {
common_redirect(common_local_url('subscriptions', array('nickname' => $user->nickname))); $this->clientError(_('This action only accepts POST requests.'));
return; return false;
} }
# CSRF protection // CSRF protection
$token = $this->trimmed('token'); $token = $this->trimmed('token');
if (!$token || $token != common_session_token()) { if (!$token || $token != common_session_token()) {
$this->clientError(_('There was a problem with your session token. Try again, please.')); $this->clientError(_('There was a problem with your session token.'.
return; ' Try again, please.'));
return false;
} }
// Only for logged-in users
$this->user = common_current_user();
if (empty($this->user)) {
$this->clientError(_('Not logged in.'));
return false;
}
// Profile to subscribe to
$other_id = $this->arg('subscribeto'); $other_id = $this->arg('subscribeto');
$other = User::staticGet('id', $other_id); $this->other = Profile::staticGet('id', $other_id);
if (!$other) { if (empty($this->other)) {
$this->clientError(_('Not a local user.')); $this->clientError(_('No such profile.'));
return; return false;
} }
$result = subs_subscribe_to($user, $other); // OMB 0.1 doesn't have a mechanism for local-server-
// originated subscription.
if (is_string($result)) { $omb01 = Remote_profile::staticGet('id', $other_id);
$this->clientError($result);
return; if (!empty($omb01)) {
$this->clientError(_('You cannot subscribe to an OMB 0.1'.
' remote profile with this action.'));
return false;
} }
return true;
}
/**
* Handle request
*
* Does the subscription and returns results.
*
* @param Array $args unused.
*
* @return void
*/
function handle($args)
{
// Throws exception on error
Subscription::start($this->user->getProfile(),
$this->other);
if ($this->boolean('ajax')) { if ($this->boolean('ajax')) {
$this->startHTML('text/xml;charset=utf-8'); $this->startHTML('text/xml;charset=utf-8');
$this->elementStart('head'); $this->elementStart('head');
$this->element('title', null, _('Subscribed')); $this->element('title', null, _('Subscribed'));
$this->elementEnd('head'); $this->elementEnd('head');
$this->elementStart('body'); $this->elementStart('body');
$unsubscribe = new UnsubscribeForm($this, $other->getProfile()); $unsubscribe = new UnsubscribeForm($this, $this->other->getProfile());
$unsubscribe->show(); $unsubscribe->show();
$this->elementEnd('body'); $this->elementEnd('body');
$this->elementEnd('html'); $this->elementEnd('html');
} else { } else {
common_redirect(common_local_url('subscriptions', array('nickname' => $url = common_local_url('subscriptions',
$user->nickname)), array('nickname' => $this->user->nickname));
303); common_redirect($url, 303);
} }
} }
} }

View File

@ -79,6 +79,7 @@ class SubscriptionsAction extends GalleryAction
function showContent() function showContent()
{ {
if (Event::handle('StartShowSubscriptionsContent', array($this))) {
parent::showContent(); parent::showContent();
$offset = ($this->page-1) * PROFILES_PER_PAGE; $offset = ($this->page-1) * PROFILES_PER_PAGE;
@ -105,6 +106,10 @@ class SubscriptionsAction extends GalleryAction
$this->pagination($this->page > 1, $cnt > PROFILES_PER_PAGE, $this->pagination($this->page > 1, $cnt > PROFILES_PER_PAGE,
$this->page, 'subscriptions', $this->page, 'subscriptions',
array('nickname' => $this->user->nickname)); array('nickname' => $this->user->nickname));
Event::handle('EndShowSubscriptionsContent', array($this));
}
} }
function showScripts() function showScripts()

View File

@ -66,10 +66,12 @@ class SupAction extends Action
$divider = common_sql_date(time() - $seconds); $divider = common_sql_date(time() - $seconds);
$notice->query('SELECT profile_id, max(id) AS max_id ' . $notice->query('SELECT profile_id, max(id) AS max_id ' .
'FROM notice ' . 'FROM ( ' .
'SELECT profile_id, id FROM notice ' .
((common_config('db','type') == 'pgsql') ? ((common_config('db','type') == 'pgsql') ?
'WHERE extract(epoch from created) > (extract(epoch from now()) - ' . $seconds . ') ' : 'WHERE extract(epoch from created) > (extract(epoch from now()) - ' . $seconds . ') ' :
'WHERE created > "'.$divider.'" ' ) . 'WHERE created > "'.$divider.'" ' ) .
') AS latest ' .
'GROUP BY profile_id'); 'GROUP BY profile_id');
$updates = array(); $updates = array();

View File

@ -245,7 +245,7 @@ class TwitapisearchatomAction extends ApiAction
'xmlns:twitter' => 'http://api.twitter.com/', 'xmlns:twitter' => 'http://api.twitter.com/',
'xml:lang' => 'en-US')); // XXX Other locales ? 'xml:lang' => 'en-US')); // XXX Other locales ?
$taguribase = common_config('integration', 'taguri'); $taguribase = TagURI::base();
$this->element('id', null, "tag:$taguribase:search/$server"); $this->element('id', null, "tag:$taguribase:search/$server");
$site_uri = common_path(false); $site_uri = common_path(false);
@ -329,7 +329,7 @@ class TwitapisearchatomAction extends ApiAction
$this->elementStart('entry'); $this->elementStart('entry');
$taguribase = common_config('integration', 'taguri'); $taguribase = TagURI::base();
$this->element('id', null, "tag:$taguribase:$notice->id"); $this->element('id', null, "tag:$taguribase:$notice->id");
$this->element('published', null, common_date_w3dtf($notice->created)); $this->element('published', null, common_date_w3dtf($notice->created));

78
classes/Conversation.php Executable file
View File

@ -0,0 +1,78 @@
<?php
/**
* StatusNet, the distributed open-source microblogging tool
*
* Data class for Conversations
*
* 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 Data
* @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/
*/
require_once INSTALLDIR . '/classes/Memcached_DataObject.php';
class Conversation extends Memcached_DataObject
{
###START_AUTOCODE
/* the code below is auto generated do not remove the above tag */
public $__table = 'conversation'; // table name
public $id; // int(4) primary_key not_null
public $uri; // varchar(225) unique_key
public $created; // datetime not_null
public $modified; // timestamp not_null default_CURRENT_TIMESTAMP
/* Static get */
function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('conversation',$k,$v); }
/* the code above is auto generated do not remove the tag below */
###END_AUTOCODE
/**
* Factory method for creating a new conversation
*
* @return Conversation the new conversation DO
*/
static function create()
{
$conv = new Conversation();
$conv->created = common_sql_now();
$id = $conv->insert();
if (empty($id)) {
common_log_db_error($conv, 'INSERT', __FILE__);
return null;
}
$orig = clone($conv);
$orig->uri = common_local_url('conversation', array('id' => $id));
$result = $orig->update($conv);
if (empty($result)) {
common_log_db_error($conv, 'UPDATE', __FILE__);
return null;
}
return $conv;
}
}

View File

@ -21,17 +21,47 @@ class Fave 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
static function addNew($user, $notice) { static function addNew($profile, $notice) {
$fave = null;
if (Event::handle('StartFavorNotice', array($profile, $notice, &$fave))) {
$fave = new Fave(); $fave = new Fave();
$fave->user_id = $user->id;
$fave->user_id = $profile->id;
$fave->notice_id = $notice->id; $fave->notice_id = $notice->id;
if (!$fave->insert()) { if (!$fave->insert()) {
common_log_db_error($fave, 'INSERT', __FILE__); common_log_db_error($fave, 'INSERT', __FILE__);
return false; return false;
} }
Event::handle('EndFavorNotice', array($profile, $notice));
}
return $fave; return $fave;
} }
function delete()
{
$profile = Profile::staticGet('id', $this->user_id);
$notice = Notice::staticGet('id', $this->notice_id);
$result = null;
if (Event::handle('StartDisfavorNotice', array($profile, $notice, &$result))) {
$result = parent::delete();
if ($result) {
Event::handle('EndDisfavorNotice', array($profile, $notice));
}
}
return $result;
}
function pkeyGet($kv) function pkeyGet($kv)
{ {
return Memcached_DataObject::pkeyGet('Fave', $kv); return Memcached_DataObject::pkeyGet('Fave', $kv);

View File

@ -501,7 +501,11 @@ class Memcached_DataObject extends Safe_DataObject
function raiseError($message, $type = null, $behaviour = null) function raiseError($message, $type = null, $behaviour = null)
{ {
throw new ServerException("DB_DataObject error [$type]: $message"); $id = get_class($this);
if ($this->id) {
$id .= ':' . $this->id;
}
throw new ServerException("[$id] DB_DataObject error [$type]: $message");
} }
static function cacheGet($keyPart) static function cacheGet($keyPart)

View File

@ -187,13 +187,21 @@ class Notice extends Memcached_DataObject
* int 'location_ns' geoname namespace to interpret location_id * int 'location_ns' geoname namespace to interpret location_id
* int 'reply_to'; notice ID this is a reply to * int 'reply_to'; notice ID this is a reply to
* int 'repeat_of'; notice ID this is a repeat of * int 'repeat_of'; notice ID this is a repeat of
* string 'uri' permalink to notice; defaults to local notice URL * string 'uri' unique ID for notice; defaults to local notice URL
* string 'url' permalink to notice; defaults to local notice URL
* string 'rendered' rendered HTML version of content
* array 'replies' list of profile URIs for reply delivery in
* place of extracting @-replies from content.
* array 'groups' list of group IDs to deliver to, in place of
* extracting ! tags from content
* @fixme tag override
* *
* @return Notice * @return Notice
* @throws ClientException * @throws ClientException
*/ */
static function saveNew($profile_id, $content, $source, $options=null) { static function saveNew($profile_id, $content, $source, $options=null) {
$defaults = array('uri' => null, $defaults = array('uri' => null,
'url' => null,
'reply_to' => null, 'reply_to' => null,
'repeat_of' => null); 'repeat_of' => null);
@ -256,9 +264,16 @@ class Notice extends Memcached_DataObject
} }
$notice->content = $final; $notice->content = $final;
if (!empty($rendered)) {
$notice->rendered = $rendered;
} else {
$notice->rendered = common_render_content($final, $notice); $notice->rendered = common_render_content($final, $notice);
}
$notice->source = $source; $notice->source = $source;
$notice->uri = $uri; $notice->uri = $uri;
$notice->url = $url;
// Handle repeat case // Handle repeat case
@ -309,7 +324,8 @@ class Notice extends Memcached_DataObject
// the beginning of a new conversation. // the beginning of a new conversation.
if (empty($notice->conversation)) { if (empty($notice->conversation)) {
$notice->conversation = $notice->id; $conv = Conversation::create();
$notice->conversation = $conv->id;
$changed = true; $changed = true;
} }
@ -324,21 +340,35 @@ class Notice extends Memcached_DataObject
# Clear the cache for subscribed users, so they'll update at next request # Clear the cache for subscribed users, so they'll update at next request
# XXX: someone clever could prepend instead of clearing the cache # XXX: someone clever could prepend instead of clearing the cache
$notice->blowOnInsert(); $notice->blowOnInsert();
if (isset($replies)) {
$notice->saveKnownReplies($replies);
} else {
$notice->saveReplies();
}
if (isset($groups)) {
$notice->saveKnownGroups($groups);
} else {
$notice->saveGroups();
}
$notice->distribute(); $notice->distribute();
return $notice; return $notice;
} }
function blowOnInsert() function blowOnInsert($conversation = false)
{ {
self::blow('profile:notice_ids:%d', $this->profile_id); self::blow('profile:notice_ids:%d', $this->profile_id);
self::blow('public'); self::blow('public');
if ($this->conversation != $this->id) { // XXX: Before we were blowing the casche only if the notice id
// was not the root of the conversation. What to do now?
self::blow('notice:conversation_ids:%d', $this->conversation); self::blow('notice:conversation_ids:%d', $this->conversation);
}
if (!empty($this->repeat_of)) { if (!empty($this->repeat_of)) {
self::blow('notice:repeats:%d', $this->repeat_of); self::blow('notice:repeats:%d', $this->repeat_of);
@ -675,11 +705,39 @@ class Notice extends Memcached_DataObject
return $ni; return $ni;
} }
function addToInboxes($groups, $recipients) /**
* Adds this notice to the inboxes of each local user who should receive
* it, based on author subscriptions, group memberships, and @-replies.
*
* Warning: running a second time currently will make items appear
* multiple times in users' inboxes.
*
* @fixme make more robust against errors
* @fixme break up massive deliveries to smaller background tasks
*
* @param array $groups optional list of Group objects;
* if left empty, will be loaded from group_inbox records
* @param array $recipient optional list of reply profile ids
* if left empty, will be loaded from reply records
*/
function addToInboxes($groups=null, $recipients=null)
{ {
$ni = $this->whoGets($groups, $recipients); $ni = $this->whoGets($groups, $recipients);
Inbox::bulkInsert($this->id, array_keys($ni)); $ids = array_keys($ni);
// We remove the author (if they're a local user),
// since we'll have already done this in distribute()
$i = array_search($this->profile_id, $ids);
if ($i !== false) {
unset($ids[$i]);
}
// Bulk insert
Inbox::bulkInsert($this->id, $ids);
return; return;
} }
@ -712,6 +770,42 @@ class Notice extends Memcached_DataObject
} }
/** /**
* Record this notice to the given group inboxes for delivery.
* Overrides the regular parsing of !group markup.
*
* @param string $group_ids
* @fixme might prefer URIs as identifiers, as for replies?
* best with generalizations on user_group to support
* remote groups better.
*/
function saveKnownGroups($group_ids)
{
if (!is_array($group_ids)) {
throw new ServerException("Bad type provided to saveKnownGroups");
}
$groups = array();
foreach ($group_ids as $id) {
$group = User_group::staticGet('id', $id);
if ($group) {
common_log(LOG_ERR, "Local delivery to group id $id, $group->nickname");
$result = $this->addToGroupInbox($group);
if (!$result) {
common_log_db_error($gi, 'INSERT', __FILE__);
}
// @fixme should we save the tags here or not?
$groups[] = clone($group);
} else {
common_log(LOG_ERR, "Local delivery to group id $id skipped, doesn't exist");
}
}
return $groups;
}
/**
* Parse !group delivery and record targets into group_inbox.
* @return array of Group objects * @return array of Group objects
*/ */
function saveGroups() function saveGroups()
@ -795,8 +889,49 @@ class Notice extends Memcached_DataObject
} }
/** /**
* Save reply records indicating that this notice needs to be
* delivered to the local users with the given URIs.
*
* Since this is expected to be used when saving foreign-sourced
* messages, we won't deliver to any remote targets as that's the
* source service's responsibility.
*
* @fixme Unlike saveReplies() there's no mail notification here.
* Move that to distrib queue handler?
*
* @param array of unique identifier URIs for recipients
*/
function saveKnownReplies($uris)
{
foreach ($uris as $uri) {
$user = User::staticGet('uri', $uri);
if (!empty($user)) {
$reply = new Reply();
$reply->notice_id = $this->id;
$reply->profile_id = $user->id;
$id = $reply->insert();
}
}
return;
}
/**
* Pull @-replies from this message's content in StatusNet markup format
* and save reply records indicating that this message needs to be
* delivered to those users.
*
* Side effect: local recipients get e-mail notifications here.
* @fixme move mail notifications to distrib?
*
* @return array of integer profile IDs * @return array of integer profile IDs
*/ */
function saveReplies() function saveReplies()
{ {
// Don't save reply data for repeats // Don't save reply data for repeats
@ -805,76 +940,44 @@ class Notice extends Memcached_DataObject
return array(); return array();
} }
// Alternative reply format
$tname = false;
if (preg_match('/^T ([A-Z0-9]{1,64}) /', $this->content, $match)) {
$tname = $match[1];
}
// extract all @messages
$cnt = preg_match_all('/(?:^|\s)@([a-z0-9]{1,64})/', $this->content, $match);
$names = array();
if ($cnt || $tname) {
// XXX: is there another way to make an array copy?
$names = ($tname) ? array_unique(array_merge(array(strtolower($tname)), $match[1])) : array_unique($match[1]);
}
$sender = Profile::staticGet($this->profile_id); $sender = Profile::staticGet($this->profile_id);
$mentions = common_find_mentions($this->profile_id, $this->content);
$replied = array(); $replied = array();
// store replied only for first @ (what user/notice what the reply directed, // store replied only for first @ (what user/notice what the reply directed,
// we assume first @ is it) // we assume first @ is it)
for ($i=0; $i<count($names); $i++) { foreach ($mentions as $mention) {
$nickname = $names[$i];
$recipient = common_relative_profile($sender, $nickname, $this->created); foreach ($mention['mentioned'] as $mentioned) {
if (empty($recipient)) {
// skip if they're already covered
if (!empty($replied[$mentioned->id])) {
continue; continue;
} }
// Don't save replies from blocked profile to local user
$recipient_user = User::staticGet('id', $recipient->id);
if (!empty($recipient_user) && $recipient_user->hasBlocked($sender)) {
continue;
}
$reply = new Reply();
$reply->notice_id = $this->id;
$reply->profile_id = $recipient->id;
$id = $reply->insert();
if (!$id) {
$last_error = &PEAR::getStaticProperty('DB_DataObject','lastError');
common_log(LOG_ERR, 'DB error inserting reply: ' . $last_error->message);
common_server_error(sprintf(_('DB error inserting reply: %s'), $last_error->message));
return array();
} else {
$replied[$recipient->id] = 1;
}
}
// Hash format replies, too
$cnt = preg_match_all('/(?:^|\s)@#([a-z0-9]{1,64})/', $this->content, $match);
if ($cnt) {
foreach ($match[1] as $tag) {
$tagged = Profile_tag::getTagged($sender->id, $tag);
foreach ($tagged as $t) {
if (!$replied[$t->id]) {
// Don't save replies from blocked profile to local user // Don't save replies from blocked profile to local user
$t_user = User::staticGet('id', $t->id);
if ($t_user && $t_user->hasBlocked($sender)) { $mentioned_user = User::staticGet('id', $mentioned->id);
if (!empty($mentioned_user) && $mentioned_user->hasBlocked($sender)) {
continue; continue;
} }
$reply = new Reply(); $reply = new Reply();
$reply->notice_id = $this->id; $reply->notice_id = $this->id;
$reply->profile_id = $t->id; $reply->profile_id = $mentioned->id;
$id = $reply->insert(); $id = $reply->insert();
if (!$id) { if (!$id) {
common_log_db_error($reply, 'INSERT', __FILE__); common_log_db_error($reply, 'INSERT', __FILE__);
return array(); throw new ServerException("Couldn't save reply for {$this->id}, {$mentioned->id}");
} else { } else {
$replied[$recipient->id] = 1; $replied[$mentioned->id] = 1;
}
}
} }
} }
} }
@ -915,9 +1018,10 @@ class Notice extends Memcached_DataObject
} }
/** /**
* Same calculation as saveGroups but without the saving * Pull list of groups this notice needs to be delivered to,
* @fixme merge the functions * as previously recorded by saveGroups() or saveKnownGroups().
* @return array of Group_inbox objects *
* @return array of Group objects
*/ */
function getGroups() function getGroups()
{ {
@ -940,7 +1044,10 @@ class Notice extends Memcached_DataObject
if ($gi->find()) { if ($gi->find()) {
while ($gi->fetch()) { while ($gi->fetch()) {
$groups[] = clone($gi); $group = User_group::staticGet('id', $gi->group_id);
if ($group) {
$groups[] = $group;
}
} }
} }
@ -960,6 +1067,7 @@ class Notice extends Memcached_DataObject
'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:georss' => 'http://www.georss.org/georss',
'xmlns:activity' => 'http://activitystrea.ms/spec/1.0/', 'xmlns:activity' => 'http://activitystrea.ms/spec/1.0/',
'xmlns:poco' => 'http://portablecontacts.net/spec/1.0',
'xmlns:ostatus' => 'http://ostatus.org/schema/1.0'); 'xmlns:ostatus' => 'http://ostatus.org/schema/1.0');
} else { } else {
$attrs = array(); $attrs = array();
@ -997,6 +1105,7 @@ class Notice extends Memcached_DataObject
$xs->raw($profile->asActivityActor()); $xs->raw($profile->asActivityActor());
$xs->element('link', array('rel' => 'alternate', $xs->element('link', array('rel' => 'alternate',
'type' => 'text/html',
'href' => $this->bestUrl())); 'href' => $this->bestUrl()));
$xs->element('id', null, $this->uri); $xs->element('id', null, $this->uri);
@ -1015,18 +1124,19 @@ class Notice extends Memcached_DataObject
} }
} }
if (!empty($this->conversation) if (!empty($this->conversation)) {
&& $this->conversation != $this->id) {
$conv = Conversation::staticGet('id', $this->conversation);
if (!empty($conv)) {
$xs->element( $xs->element(
'link', array( 'link', array(
'rel' => 'ostatus:conversation', 'rel' => 'ostatus:conversation',
'href' => common_local_url( 'href' => $conv->uri
'conversation',
array('id' => $this->conversation)
)
) )
); );
} }
}
$reply_ids = $this->getReplies(); $reply_ids = $this->getReplies();
@ -1036,12 +1146,23 @@ class Notice extends Memcached_DataObject
$xs->element( $xs->element(
'link', array( 'link', array(
'rel' => 'ostatus:attention', 'rel' => 'ostatus:attention',
'href' => $profile->getAcctUri() 'href' => $profile->getUri()
) )
); );
} }
} }
$groups = $this->getGroups();
foreach ($groups as $group) {
$xs->element(
'link', array(
'rel' => 'ostatus:attention',
'href' => $group->permalink()
)
);
}
if (!empty($this->repeat_of)) { if (!empty($this->repeat_of)) {
$repeat = Notice::staticGet('id', $this->repeat_of); $repeat = Notice::staticGet('id', $this->repeat_of);
if (!empty($repeat)) { if (!empty($repeat)) {
@ -1087,6 +1208,21 @@ class Notice extends Memcached_DataObject
return $xs->getString(); return $xs->getString();
} }
/**
* Returns an XML string fragment with a reference to a notice as an
* Activity Streams noun object with the given element type.
*
* Assumes that 'activity' namespace has been previously defined.
*
* @param string $element one of 'subject', 'object', 'target'
* @return string
*/
function asActivityNoun($element)
{
$noun = ActivityObject::fromNotice($this);
return $noun->asString('activity:' . $element);
}
function bestUrl() function bestUrl()
{ {
if (!empty($this->url)) { if (!empty($this->url)) {
@ -1484,6 +1620,14 @@ class Notice extends Memcached_DataObject
function distribute() function distribute()
{ {
// We always insert for the author so they don't
// have to wait
$user = User::staticGet('id', $this->profile_id);
if (!empty($user)) {
Inbox::insertNotice($user->id, $this->id);
}
if (common_config('queue', 'inboxes')) { if (common_config('queue', 'inboxes')) {
// If there's a failure, we want to _force_ // If there's a failure, we want to _force_
// distribution at this point. // distribution at this point.

View File

@ -769,7 +769,7 @@ class Profile extends Memcached_DataObject
$xs->elementStart('author'); $xs->elementStart('author');
$xs->element('name', null, $this->nickname); $xs->element('name', null, $this->nickname);
$xs->element('uri', null, $this->profileurl); $xs->element('uri', null, $this->getUri());
$xs->elementEnd('author'); $xs->elementEnd('author');
return $xs->getString(); return $xs->getString();
@ -792,51 +792,59 @@ class Profile extends Memcached_DataObject
* Returns an XML string fragment with profile information as an * Returns an XML string fragment with profile information as an
* Activity Streams noun object with the given element type. * Activity Streams noun object with the given element type.
* *
* Assumes that 'activity' namespace has been previously defined. * Assumes that 'activity', 'georss', and 'poco' namespace has been
* previously defined.
* *
* @param string $element one of 'actor', 'subject', 'object', 'target' * @param string $element one of 'actor', 'subject', 'object', 'target'
*
* @return string * @return string
*/ */
function asActivityNoun($element) function asActivityNoun($element)
{ {
$xs = new XMLStringer(true); $noun = ActivityObject::fromProfile($this);
return $noun->asString('activity:' . $element);
$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() /**
* Returns the best URI for a profile. Plugins may override.
*
* @return string $uri
*/
function getUri()
{ {
return $this->nickname . '@' . common_config('site', 'server'); $uri = null;
// give plugins a chance to set the URI
if (Event::handle('StartGetProfileUri', array($this, &$uri))) {
// check for a local user first
$user = User::staticGet('id', $this->id);
if (!empty($user)) {
$uri = $user->uri;
} else {
// return OMB profile if any
$remote = Remote_profile::staticGet('id', $this->id);
if (!empty($remote)) {
$uri = $remote->uri;
}
}
Event::handle('EndGetProfileUri', array($this, &$uri));
} }
return $uri;
}
function hasBlocked($other)
{
$block = Profile_block::get($this->id, $other->id);
if (empty($block)) {
$result = false;
} else {
$result = true;
}
return $result;
}
} }

View File

@ -50,4 +50,150 @@ class Subscription extends Memcached_DataObject
{ {
return Memcached_DataObject::pkeyGet('Subscription', $kv); return Memcached_DataObject::pkeyGet('Subscription', $kv);
} }
/**
* Make a new subscription
*
* @param Profile $subscriber party to receive new notices
* @param Profile $other party sending notices; publisher
*
* @return Subscription new subscription
*/
static function start($subscriber, $other)
{
if (!$subscriber->hasRight(Right::SUBSCRIBE)) {
throw new Exception(_('You have been banned from subscribing.'));
}
if (self::exists($subscriber, $other)) {
throw new Exception(_('Already subscribed!'));
}
if ($other->hasBlocked($subscriber)) {
throw new Exception(_('User has blocked you.'));
}
if (Event::handle('StartSubscribe', array($subscriber, $other))) {
$sub = new Subscription();
$sub->subscriber = $subscriber->id;
$sub->subscribed = $other->id;
$sub->created = common_sql_now();
$result = $sub->insert();
if (!$result) {
common_log_db_error($sub, 'INSERT', __FILE__);
throw new Exception(_('Could not save subscription.'));
}
$sub->notify();
self::blow('user:notices_with_friends:%d', $subscriber->id);
$subscriber->blowSubscriptionsCount();
$other->blowSubscribersCount();
$otherUser = User::staticGet('id', $other->id);
if (!empty($otherUser) &&
$otherUser->autosubscribe &&
!self::exists($other, $subscriber) &&
!$subscriber->hasBlocked($other)) {
$auto = new Subscription();
$auto->subscriber = $subscriber->id;
$auto->subscribed = $other->id;
$auto->created = common_sql_now();
$result = $auto->insert();
if (!$result) {
common_log_db_error($auto, 'INSERT', __FILE__);
throw new Exception(_('Could not save subscription.'));
}
$auto->notify();
}
Event::handle('EndSubscribe', array($subscriber, $other));
}
return true;
}
function notify()
{
# XXX: add other notifications (Jabber, SMS) here
# XXX: queue this and handle it offline
# XXX: Whatever happens, do it in Twitter-like API, too
$this->notifyEmail();
}
function notifyEmail()
{
$subscribedUser = User::staticGet('id', $this->subscribed);
if (!empty($subscribedUser)) {
$subscriber = Profile::staticGet('id', $this->subscriber);
mail_subscribe_notify_profile($subscribedUser, $subscriber);
}
}
/**
* Cancel a subscription
*
*/
function cancel($subscriber, $other)
{
if (!self::exists($subscriber, $other)) {
throw new Exception(_('Not subscribed!'));
}
// Don't allow deleting self subs
if ($subscriber->id == $other->id) {
throw new Exception(_('Couldn\'t delete self-subscription.'));
}
if (Event::handle('StartUnsubscribe', array($subscriber, $other))) {
$sub = Subscription::pkeyGet(array('subscriber' => $subscriber->id,
'subscribed' => $other->id));
// note we checked for existence above
assert(!empty($sub));
$result = $sub->delete();
if (!$result) {
common_log_db_error($sub, 'DELETE', __FILE__);
throw new Exception(_('Couldn\'t delete subscription.'));
}
self::blow('user:notices_with_friends:%d', $subscriber->id);
$subscriber->blowSubscriptionsCount();
$other->blowSubscribersCount();
Event::handle('EndUnsubscribe', array($subscriber, $other));
}
return;
}
function exists($subscriber, $other)
{
$sub = Subscription::pkeyGet(array('subscriber' => $subscriber->id,
'subscribed' => $other->id));
return (empty($sub)) ? false : true;
}
} }

View File

@ -75,11 +75,7 @@ class User extends Memcached_DataObject
function isSubscribed($other) function isSubscribed($other)
{ {
assert(!is_null($other)); return Subscription::exists($this->getProfile(), $other);
// XXX: cache results of this query
$sub = Subscription::pkeyGet(array('subscriber' => $this->id,
'subscribed' => $other->id));
return (is_null($sub)) ? false : true;
} }
// 'update' won't write key columns, so we have to do it ourselves. // 'update' won't write key columns, so we have to do it ourselves.
@ -162,17 +158,8 @@ class User extends Memcached_DataObject
function hasBlocked($other) function hasBlocked($other)
{ {
$profile = $this->getProfile();
$block = Profile_block::get($this->id, $other->id); return $profile->hasBlocked($other);
if (is_null($block)) {
$result = false;
} else {
$result = true;
$block->free();
}
return $result;
} }
/** /**

View File

@ -39,15 +39,25 @@ class User_group extends Memcached_DataObject
function homeUrl() function homeUrl()
{ {
return common_local_url('showgroup', $url = null;
if (Event::handle('StartUserGroupHomeUrl', array($this, &$url))) {
$url = common_local_url('showgroup',
array('nickname' => $this->nickname)); array('nickname' => $this->nickname));
} }
Event::handle('EndUserGroupHomeUrl', array($this, &$url));
return $url;
}
function permalink() function permalink()
{ {
return common_local_url('groupbyid', $url = null;
if (Event::handle('StartUserGroupPermalink', array($this, &$url))) {
$url = common_local_url('groupbyid',
array('id' => $this->id)); array('id' => $this->id));
} }
Event::handle('EndUserGroupPermalink', array($this, &$url));
return $url;
}
function getNotices($offset, $limit, $since_id=null, $max_id=null) function getNotices($offset, $limit, $since_id=null, $max_id=null)
{ {

View File

@ -47,6 +47,16 @@ modified = 384
[consumer__keys] [consumer__keys]
consumer_key = K consumer_key = K
[conversation]
id = 129
uri = 2
created = 142
modified = 384
[conversation__keys]
id = N
uri = U
[deleted_notice] [deleted_notice]
id = 129 id = 129
profile_id = 129 profile_id = 129

View File

@ -643,3 +643,10 @@ create table user_im_prefs (
constraint primary key (user_id, transport), constraint primary key (user_id, transport),
constraint unique key `transport_screenname_key` ( `transport` , `screenname` ) constraint unique key `transport_screenname_key` ( `transport` , `screenname` )
); );
create table conversation (
id integer auto_increment primary key comment 'unique identifier',
uri varchar(225) unique comment 'URI of the conversation',
created datetime not null comment 'date this record was created',
modified timestamp comment 'date this record was modified'
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;

View File

@ -1,12 +1,14 @@
/* /*
* jQuery Form Plugin * jQuery Form Plugin
* version: 2.36 (07-NOV-2009) * version: 2.17 (06-NOV-2008)
* @requires jQuery v1.2.6 or later * @requires jQuery v1.2.2 or later
* *
* Examples and documentation at: http://malsup.com/jquery/form/ * Examples and documentation at: http://malsup.com/jquery/form/
* Dual licensed under the MIT and GPL licenses: * Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php * http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html * http://www.gnu.org/licenses/gpl.html
*
* Revision: $Id$
*/ */
;(function($) { ;(function($) {
@ -53,17 +55,9 @@ $.fn.ajaxSubmit = function(options) {
if (typeof options == 'function') if (typeof options == 'function')
options = { success: options }; options = { success: options };
var url = $.trim(this.attr('action'));
if (url) {
// clean url (don't include hash vaue)
url = (url.match(/^([^#]+)/)||[])[1];
}
url = url || window.location.href || '';
options = $.extend({ options = $.extend({
url: url, url: this.attr('action') || window.location.toString(),
type: this.attr('method') || 'GET', type: this.attr('method') || 'GET'
iframeSrc: /^https/i.test(window.location.href || '') ? 'javascript:false' : 'about:blank'
}, options || {}); }, options || {});
// hook for manipulating the form data before it is extracted; // hook for manipulating the form data before it is extracted;
@ -87,7 +81,7 @@ $.fn.ajaxSubmit = function(options) {
for (var n in options.data) { for (var n in options.data) {
if(options.data[n] instanceof Array) { if(options.data[n] instanceof Array) {
for (var k in options.data[n]) for (var k in options.data[n])
a.push( { name: n, value: options.data[n][k] } ); a.push( { name: n, value: options.data[n][k] } )
} }
else else
a.push( { name: n, value: options.data[n] } ); a.push( { name: n, value: options.data[n] } );
@ -142,16 +136,11 @@ $.fn.ajaxSubmit = function(options) {
if (files[j]) if (files[j])
found = true; found = true;
var multipart = false;
// var mp = 'multipart/form-data';
// multipart = ($form.attr('enctype') == mp || $form.attr('encoding') == mp);
// options.iframe allows user to force iframe mode // options.iframe allows user to force iframe mode
// 06-NOV-09: now defaulting to iframe mode if file input is detected if (options.iframe || found) {
if ((files.length && options.iframe !== false) || options.iframe || found || multipart) {
// hack to fix Safari hang (thanks to Tim Molendijk for this) // hack to fix Safari hang (thanks to Tim Molendijk for this)
// see: http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d // see: http://groups.google.com/group/jquery-dev/browse_thread/thread/36395b7ab510dd5d
if (options.closeKeepAlive) if ($.browser.safari && options.closeKeepAlive)
$.get(options.closeKeepAlive, fileUpload); $.get(options.closeKeepAlive, fileUpload);
else else
fileUpload(); fileUpload();
@ -174,12 +163,14 @@ $.fn.ajaxSubmit = function(options) {
} }
var opts = $.extend({}, $.ajaxSettings, options); var opts = $.extend({}, $.ajaxSettings, options);
var s = $.extend(true, {}, $.extend(true, {}, $.ajaxSettings), opts); var s = jQuery.extend(true, {}, $.extend(true, {}, $.ajaxSettings), opts);
var id = 'jqFormIO' + (new Date().getTime()); var id = 'jqFormIO' + (new Date().getTime());
var $io = $('<iframe id="' + id + '" name="' + id + '" src="'+ opts.iframeSrc +'" />'); var $io = $('<iframe id="' + id + '" name="' + id + '" />');
var io = $io[0]; var io = $io[0];
if ($.browser.msie || $.browser.opera)
io.src = 'javascript:false;document.write("");';
$io.css({ position: 'absolute', top: '-1000px', left: '-1000px' }); $io.css({ position: 'absolute', top: '-1000px', left: '-1000px' });
var xhr = { // mock object var xhr = { // mock object
@ -193,7 +184,7 @@ $.fn.ajaxSubmit = function(options) {
setRequestHeader: function() {}, setRequestHeader: function() {},
abort: function() { abort: function() {
this.aborted = 1; this.aborted = 1;
$io.attr('src', opts.iframeSrc); // abort op in progress $io.attr('src','about:blank'); // abort op in progress
} }
}; };
@ -203,7 +194,7 @@ $.fn.ajaxSubmit = function(options) {
if (g) $.event.trigger("ajaxSend", [xhr, opts]); if (g) $.event.trigger("ajaxSend", [xhr, opts]);
if (s.beforeSend && s.beforeSend(xhr, s) === false) { if (s.beforeSend && s.beforeSend(xhr, s) === false) {
s.global && $.active--; s.global && jQuery.active--;
return; return;
} }
if (xhr.aborted) if (xhr.aborted)
@ -230,13 +221,11 @@ $.fn.ajaxSubmit = function(options) {
setTimeout(function() { setTimeout(function() {
// make sure form attrs are set // make sure form attrs are set
var t = $form.attr('target'), a = $form.attr('action'); var t = $form.attr('target'), a = $form.attr('action');
$form.attr({
// update form attrs in IE friendly way target: id,
form.setAttribute('target',id); method: 'POST',
if (form.getAttribute('method') != 'POST') action: opts.url
form.setAttribute('method', 'POST'); });
if (form.getAttribute('action') != opts.url)
form.setAttribute('action', opts.url);
// ie borks in some cases when setting encoding // ie borks in some cases when setting encoding
if (! options.skipEncodingOverride) { if (! options.skipEncodingOverride) {
@ -266,19 +255,18 @@ $.fn.ajaxSubmit = function(options) {
} }
finally { finally {
// reset attrs and remove "extra" input elements // reset attrs and remove "extra" input elements
form.setAttribute('action',a); $form.attr('action', a);
t ? form.setAttribute('target', t) : $form.removeAttr('target'); t ? $form.attr('target', t) : $form.removeAttr('target');
$(extraInputs).remove(); $(extraInputs).remove();
} }
}, 10); }, 10);
var domCheckCount = 50;
function cb() { function cb() {
if (cbInvoked++) return; if (cbInvoked++) return;
io.detachEvent ? io.detachEvent('onload', cb) : io.removeEventListener('load', cb, false); io.detachEvent ? io.detachEvent('onload', cb) : io.removeEventListener('load', cb, false);
var operaHack = 0;
var ok = true; var ok = true;
try { try {
if (timedOut) throw 'timeout'; if (timedOut) throw 'timeout';
@ -287,19 +275,14 @@ $.fn.ajaxSubmit = function(options) {
doc = io.contentWindow ? io.contentWindow.document : io.contentDocument ? io.contentDocument : io.document; doc = io.contentWindow ? io.contentWindow.document : io.contentDocument ? io.contentDocument : io.document;
var isXml = opts.dataType == 'xml' || doc.XMLDocument || $.isXMLDoc(doc); if (doc.body == null && !operaHack && $.browser.opera) {
log('isXml='+isXml); // In Opera 9.2.x the iframe DOM is not always traversable when
if (!isXml && (doc.body == null || doc.body.innerHTML == '')) { // the onload callback fires so we give Opera 100ms to right itself
if (--domCheckCount) { operaHack = 1;
// in some browsers (Opera) the iframe DOM is not always traversable when cbInvoked--;
// the onload callback fires, so we loop a bit to accommodate
cbInvoked = 0;
setTimeout(cb, 100); setTimeout(cb, 100);
return; return;
} }
log('Could not access iframe DOM after 50 tries.');
return;
}
xhr.responseText = doc.body ? doc.body.innerHTML : null; xhr.responseText = doc.body ? doc.body.innerHTML : null;
xhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc; xhr.responseXML = doc.XMLDocument ? doc.XMLDocument : doc;
@ -309,16 +292,8 @@ $.fn.ajaxSubmit = function(options) {
}; };
if (opts.dataType == 'json' || opts.dataType == 'script') { if (opts.dataType == 'json' || opts.dataType == 'script') {
// see if user embedded response in textarea
var ta = doc.getElementsByTagName('textarea')[0]; var ta = doc.getElementsByTagName('textarea')[0];
if (ta) xhr.responseText = ta ? ta.value : xhr.responseText;
xhr.responseText = ta.value;
else {
// account for browsers injecting pre around json response
var pre = doc.getElementsByTagName('pre')[0];
if (pre)
xhr.responseText = pre.innerHTML;
}
} }
else if (opts.dataType == 'xml' && !xhr.responseXML && xhr.responseText != null) { else if (opts.dataType == 'xml' && !xhr.responseXML && xhr.responseText != null) {
xhr.responseXML = toXml(xhr.responseText); xhr.responseXML = toXml(xhr.responseText);
@ -378,39 +353,37 @@ $.fn.ajaxForm = function(options) {
return this.ajaxFormUnbind().bind('submit.form-plugin',function() { return this.ajaxFormUnbind().bind('submit.form-plugin',function() {
$(this).ajaxSubmit(options); $(this).ajaxSubmit(options);
return false; return false;
}).bind('click.form-plugin', function(e) { }).each(function() {
var target = e.target; // store options in hash
var $el = $(target); $(":submit,input:image", this).bind('click.form-plugin',function(e) {
if (!($el.is(":submit,input:image"))) { var form = this.form;
// is this a child element of the submit el? (ex: a span within a button) form.clk = this;
var t = $el.closest(':submit'); if (this.type == 'image') {
if (t.length == 0)
return;
target = t[0];
}
var form = this;
form.clk = target;
if (target.type == 'image') {
if (e.offsetX != undefined) { if (e.offsetX != undefined) {
form.clk_x = e.offsetX; form.clk_x = e.offsetX;
form.clk_y = e.offsetY; form.clk_y = e.offsetY;
} else if (typeof $.fn.offset == 'function') { // try to use dimensions plugin } else if (typeof $.fn.offset == 'function') { // try to use dimensions plugin
var offset = $el.offset(); var offset = $(this).offset();
form.clk_x = e.pageX - offset.left; form.clk_x = e.pageX - offset.left;
form.clk_y = e.pageY - offset.top; form.clk_y = e.pageY - offset.top;
} else { } else {
form.clk_x = e.pageX - target.offsetLeft; form.clk_x = e.pageX - this.offsetLeft;
form.clk_y = e.pageY - target.offsetTop; form.clk_y = e.pageY - this.offsetTop;
} }
} }
// clear form vars // clear form vars
setTimeout(function() { form.clk = form.clk_x = form.clk_y = null; }, 100); setTimeout(function() { form.clk = form.clk_x = form.clk_y = null; }, 10);
});
}); });
}; };
// ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm // ajaxFormUnbind unbinds the event handlers that were bound by ajaxForm
$.fn.ajaxFormUnbind = function() { $.fn.ajaxFormUnbind = function() {
return this.unbind('submit.form-plugin click.form-plugin'); this.unbind('submit.form-plugin');
return this.each(function() {
$(":submit,input:image", this).unbind('click.form-plugin');
});
}; };
/** /**
@ -438,10 +411,8 @@ $.fn.formToArray = function(semantic) {
if (semantic && form.clk && el.type == "image") { if (semantic && form.clk && el.type == "image") {
// handle image inputs on the fly when semantic == true // handle image inputs on the fly when semantic == true
if(!el.disabled && form.clk == el) { if(!el.disabled && form.clk == el)
a.push({name: n, value: $(el).val()});
a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y}); a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
}
continue; continue;
} }
@ -455,10 +426,12 @@ $.fn.formToArray = function(semantic) {
} }
if (!semantic && form.clk) { if (!semantic && form.clk) {
// input type=='image' are not found in elements array! handle it here // input type=='image' are not found in elements array! handle them here
var $input = $(form.clk), input = $input[0], n = input.name; var inputs = form.getElementsByTagName("input");
if (n && !input.disabled && input.type == 'image') { for(var i=0, max=inputs.length; i < max; i++) {
a.push({name: n, value: $input.val()}); var input = inputs[i];
var n = input.name;
if(n && !input.disabled && input.type == "image" && form.clk == input)
a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y}); a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
} }
} }
@ -566,9 +539,8 @@ $.fieldValue = function(el, successful) {
for(var i=(one ? index : 0); i < max; i++) { for(var i=(one ? index : 0); i < max; i++) {
var op = ops[i]; var op = ops[i];
if (op.selected) { if (op.selected) {
var v = op.value; // extra pain for IE...
if (!v) // extra pain for IE... var v = $.browser.msie && !(op.attributes['value'].specified) ? op.text : op.value;
v = (op.attributes && op.attributes['value'] && !(op.attributes['value'].specified)) ? op.text : op.value;
if (one) return v; if (one) return v;
a.push(v); a.push(v);
} }
@ -598,7 +570,7 @@ $.fn.clearForm = function() {
$.fn.clearFields = $.fn.clearInputs = function() { $.fn.clearFields = $.fn.clearInputs = function() {
return this.each(function() { return this.each(function() {
var t = this.type, tag = this.tagName.toLowerCase(); var t = this.type, tag = this.tagName.toLowerCase();
if (t == 'text' || t == 'password' || tag == 'textarea') if (t == 'file' || t == 'text' || t == 'password' || tag == 'textarea')
this.value = ''; this.value = '';
else if (t == 'checkbox' || t == 'radio') else if (t == 'checkbox' || t == 'radio')
this.checked = false; this.checked = false;
@ -625,7 +597,7 @@ $.fn.resetForm = function() {
$.fn.enable = function(b) { $.fn.enable = function(b) {
if (b == undefined) b = true; if (b == undefined) b = true;
return this.each(function() { return this.each(function() {
this.disabled = !b; this.disabled = !b
}); });
}; };

View File

@ -54,7 +54,8 @@ var SN = { // StatusNet
NoticeGeoName: 'notice_data-geo_name', NoticeGeoName: 'notice_data-geo_name',
NoticeDataGeo: 'notice_data-geo', NoticeDataGeo: 'notice_data-geo',
NoticeDataGeoCookie: 'notice_data-geo_cookie', NoticeDataGeoCookie: 'notice_data-geo_cookie',
NoticeDataGeoSelected: 'notice_data-geo_selected' NoticeDataGeoSelected: 'notice_data-geo_selected',
StatusNetInstance:'StatusNetInstance'
} }
}, },
@ -670,6 +671,35 @@ var SN = { // StatusNet
date.setFullYear(year, month, day); date.setFullYear(year, month, day);
return date; return date;
},
StatusNetInstance: {
Set: function(value) {
var SNI = SN.U.StatusNetInstance.Get();
if (SNI !== null) {
value = $.extend(SNI, value);
}
$.cookie(
SN.C.S.StatusNetInstance,
JSON.stringify(value),
{
path: '/',
expires: SN.U.GetFullYear(2029, 0, 1)
});
},
Get: function() {
var cookieValue = $.cookie(SN.C.S.StatusNetInstance);
if (cookieValue !== null) {
return JSON.parse(cookieValue);
}
return null;
},
Delete: function() {
$.cookie(SN.C.S.StatusNetInstance, null);
}
} }
}, },
@ -707,6 +737,20 @@ var SN = { // StatusNet
SN.U.NewDirectMessage(); SN.U.NewDirectMessage();
} }
},
Login: function() {
if (SN.U.StatusNetInstance.Get() !== null) {
var nickname = SN.U.StatusNetInstance.Get().Nickname;
if (nickname !== null) {
$('#form_login #nickname').val(nickname);
}
}
$('#form_login').bind('submit', function() {
SN.U.StatusNetInstance.Set({Nickname: $('#form_login #nickname').val()});
return true;
});
} }
} }
}; };
@ -721,5 +765,8 @@ $(document).ready(function(){
if ($('#content .entity_actions').length > 0) { if ($('#content .entity_actions').length > 0) {
SN.Init.EntityActions(); SN.Init.EntityActions();
} }
if ($('#form_login').length > 0) {
SN.Init.Login();
}
}); });

View File

@ -249,7 +249,7 @@ class Action extends HTMLOutputter // lawsuit
$this->script('jquery.min.js'); $this->script('jquery.min.js');
$this->script('jquery.form.js'); $this->script('jquery.form.js');
$this->script('jquery.cookie.js'); $this->script('jquery.cookie.js');
$this->script('json2.js'); $this->inlineScript('if (typeof window.JSON !== "object") { $.getScript("'.common_path('js/json2.js').'"); }');
$this->script('jquery.joverlay.min.js'); $this->script('jquery.joverlay.min.js');
Event::handle('EndShowJQueryScripts', array($this)); Event::handle('EndShowJQueryScripts', array($this));
} }
@ -259,8 +259,7 @@ class Action extends HTMLOutputter // lawsuit
$this->script('util.js'); $this->script('util.js');
$this->script('geometa.js'); $this->script('geometa.js');
// Frame-busting code to avoid clickjacking attacks. // Frame-busting code to avoid clickjacking attacks.
$this->element('script', array('type' => 'text/javascript'), $this->inlineScript('if (window.top !== window.self) { window.top.location.href = window.self.location.href; }');
'if (window.top !== window.self) { window.top.location.href = window.self.location.href; }');
Event::handle('EndShowStatusNetScripts', array($this)); Event::handle('EndShowStatusNetScripts', array($this));
Event::handle('EndShowLaconicaScripts', array($this)); Event::handle('EndShowLaconicaScripts', array($this));
} }

993
lib/activity.php Normal file
View File

@ -0,0 +1,993 @@
<?php
/**
* StatusNet, the distributed open-source microblogging tool
*
* An activity
*
* 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 Evan Prodromou <evan@status.net>
* @author Zach Copley <zach@status.net>
* @copyright 2010 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
* @link http://status.net/
*/
if (!defined('STATUSNET')) {
exit(1);
}
class PoCoURL
{
const URLS = 'urls';
const TYPE = 'type';
const VALUE = 'value';
const PRIMARY = 'primary';
public $type;
public $value;
public $primary;
function __construct($type, $value, $primary = false)
{
$this->type = $type;
$this->value = $value;
$this->primary = $primary;
}
function asString()
{
$xs = new XMLStringer(true);
$xs->elementStart('poco:urls');
$xs->element('poco:type', null, $this->type);
$xs->element('poco:value', null, $this->value);
if (!empty($this->primary)) {
$xs->element('poco:primary', null, 'true');
}
$xs->elementEnd('poco:urls');
return $xs->getString();
}
}
class PoCoAddress
{
const ADDRESS = 'address';
const FORMATTED = 'formatted';
public $formatted;
// @todo Other address fields
function asString()
{
if (!empty($this->formatted)) {
$xs = new XMLStringer(true);
$xs->elementStart('poco:address');
$xs->element('poco:formatted', null, $this->formatted);
$xs->elementEnd('poco:address');
return $xs->getString();
}
return null;
}
}
class PoCo
{
const NS = 'http://portablecontacts.net/spec/1.0';
const USERNAME = 'preferredUsername';
const DISPLAYNAME = 'displayName';
const NOTE = 'note';
public $preferredUsername;
public $displayName;
public $note;
public $address;
public $urls = array();
function __construct($element = null)
{
if (empty($element)) {
return;
}
$this->preferredUsername = ActivityUtils::childContent(
$element,
self::USERNAME,
self::NS
);
$this->displayName = ActivityUtils::childContent(
$element,
self::DISPLAYNAME,
self::NS
);
$this->note = ActivityUtils::childContent(
$element,
self::NOTE,
self::NS
);
$this->address = $this->_getAddress($element);
$this->urls = $this->_getURLs($element);
}
private function _getURLs($element)
{
$urlEls = $element->getElementsByTagnameNS(self::NS, PoCoURL::URLS);
$urls = array();
foreach ($urlEls as $urlEl) {
$type = ActivityUtils::childContent(
$urlEl,
PoCoURL::TYPE,
PoCo::NS
);
$value = ActivityUtils::childContent(
$urlEl,
PoCoURL::VALUE,
PoCo::NS
);
$primary = ActivityUtils::childContent(
$urlEl,
PoCoURL::PRIMARY,
PoCo::NS
);
array_push($urls, new PoCoURL($type, $value, $primary));
}
return $urls;
}
private function _getAddress($element)
{
$addressEl = ActivityUtils::child(
$element,
PoCoAddress::ADDRESS,
PoCo::NS
);
if (!empty($addressEl)) {
$formatted = ActivityUtils::childContent(
$addressEl,
PoCoAddress::FORMATTED,
self::NS
);
if (!empty($formatted)) {
$address = new PoCoAddress();
$address->formatted = $formatted;
return $address;
}
}
return null;
}
function fromProfile($profile)
{
if (empty($profile)) {
return null;
}
$poco = new PoCo();
$poco->preferredUsername = $profile->nickname;
$poco->displayName = $profile->getBestName();
$poco->note = $profile->bio;
$paddy = new PoCoAddress();
$paddy->formatted = $profile->location;
$poco->address = $paddy;
if (!empty($profile->homepage)) {
array_push(
$poco->urls,
new PoCoURL(
'homepage',
$profile->homepage,
true
)
);
}
return $poco;
}
function asString()
{
$xs = new XMLStringer(true);
$xs->element(
'poco:preferredUsername',
null,
$this->preferredUsername
);
$xs->element(
'poco:displayName',
null,
$this->displayName
);
if (!empty($this->note)) {
$xs->element('poco:note', null, $this->note);
}
if (!empty($this->address)) {
$xs->raw($this->address->asString());
}
foreach ($this->urls as $url) {
$xs->raw($url->asString());
}
return $xs->getString();
}
}
/**
* Utilities for turning DOMish things into Activityish things
*
* Some common functions that I didn't have the bandwidth to try to factor
* into some kind of reasonable superclass, so just dumped here. Might
* be useful to have an ActivityObject parent class or something.
*
* @category OStatus
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @copyright 2010 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
* @link http://status.net/
*/
class ActivityUtils
{
const ATOM = 'http://www.w3.org/2005/Atom';
const LINK = 'link';
const REL = 'rel';
const TYPE = 'type';
const HREF = 'href';
const CONTENT = 'content';
const SRC = 'src';
/**
* Get the permalink for an Activity object
*
* @param DOMElement $element A DOM element
*
* @return string related link, if any
*/
static function getPermalink($element)
{
return self::getLink($element, 'alternate', 'text/html');
}
/**
* Get the permalink for an Activity object
*
* @param DOMElement $element A DOM element
*
* @return string related link, if any
*/
static function getLink(DOMNode $element, $rel, $type=null)
{
$links = $element->getElementsByTagnameNS(self::ATOM, self::LINK);
foreach ($links as $link) {
$linkRel = $link->getAttribute(self::REL);
$linkType = $link->getAttribute(self::TYPE);
if ($linkRel == $rel &&
(is_null($type) || $linkType == $type)) {
return $link->getAttribute(self::HREF);
}
}
return null;
}
/**
* Gets the first child element with the given tag
*
* @param DOMElement $element element to pick at
* @param string $tag tag to look for
* @param string $namespace Namespace to look under
*
* @return DOMElement found element or null
*/
static function child(DOMNode $element, $tag, $namespace=self::ATOM)
{
$els = $element->childNodes;
if (empty($els) || $els->length == 0) {
return null;
} else {
for ($i = 0; $i < $els->length; $i++) {
$el = $els->item($i);
if ($el->localName == $tag && $el->namespaceURI == $namespace) {
return $el;
}
}
}
}
/**
* Grab the text content of a DOM element child of the current element
*
* @param DOMElement $element Element whose children we examine
* @param string $tag Tag to look up
* @param string $namespace Namespace to use, defaults to Atom
*
* @return string content of the child
*/
static function childContent(DOMNode $element, $tag, $namespace=self::ATOM)
{
$el = self::child($element, $tag, $namespace);
if (empty($el)) {
return null;
} else {
return $el->textContent;
}
}
/**
* Get the content of an atom:entry-like object
*
* @param DOMElement $element The element to examine.
*
* @return string unencoded HTML content of the element, like "This -&lt; is <b>HTML</b>."
*
* @todo handle remote content
* @todo handle embedded XML mime types
* @todo handle base64-encoded non-XML and non-text mime types
*/
static function getContent($element)
{
$contentEl = ActivityUtils::child($element, self::CONTENT);
if (!empty($contentEl)) {
$src = $contentEl->getAttribute(self::SRC);
if (!empty($src)) {
throw new ClientException(_("Can't handle remote content yet."));
}
$type = $contentEl->getAttribute(self::TYPE);
// slavishly following http://atompub.org/rfc4287.html#rfc.section.4.1.3.3
if ($type == 'text') {
return $contentEl->textContent;
} else if ($type == 'html') {
$text = $contentEl->textContent;
return htmlspecialchars_decode($text, ENT_QUOTES);
} else if ($type == 'xhtml') {
$divEl = ActivityUtils::child($contentEl, 'div');
if (empty($divEl)) {
return null;
}
$doc = $divEl->ownerDocument;
$text = '';
$children = $divEl->childNodes;
for ($i = 0; $i < $children->length; $i++) {
$child = $children->item($i);
$text .= $doc->saveXML($child);
}
return trim($text);
} else if (in_array(array('text/xml', 'application/xml'), $type) ||
preg_match('#(+|/)xml$#', $type)) {
throw new ClientException(_("Can't handle embedded XML content yet."));
} else if (strncasecmp($type, 'text/', 5)) {
return $contentEl->textContent;
} else {
throw new ClientException(_("Can't handle embedded Base64 content yet."));
}
}
}
}
/**
* A noun-ish thing in the activity universe
*
* The activity streams spec talks about activity objects, while also having
* a tag activity:object, which is in fact an activity object. Aaaaaah!
*
* This is just a thing in the activity universe. Can be the subject, object,
* or indirect object (target!) of an activity verb. Rotten name, and I'm
* propagating it. *sigh*
*
* @category OStatus
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @copyright 2010 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
* @link http://status.net/
*/
class ActivityObject
{
const ARTICLE = 'http://activitystrea.ms/schema/1.0/article';
const BLOGENTRY = 'http://activitystrea.ms/schema/1.0/blog-entry';
const NOTE = 'http://activitystrea.ms/schema/1.0/note';
const STATUS = 'http://activitystrea.ms/schema/1.0/status';
const FILE = 'http://activitystrea.ms/schema/1.0/file';
const PHOTO = 'http://activitystrea.ms/schema/1.0/photo';
const ALBUM = 'http://activitystrea.ms/schema/1.0/photo-album';
const PLAYLIST = 'http://activitystrea.ms/schema/1.0/playlist';
const VIDEO = 'http://activitystrea.ms/schema/1.0/video';
const AUDIO = 'http://activitystrea.ms/schema/1.0/audio';
const BOOKMARK = 'http://activitystrea.ms/schema/1.0/bookmark';
const PERSON = 'http://activitystrea.ms/schema/1.0/person';
const GROUP = 'http://activitystrea.ms/schema/1.0/group';
const PLACE = 'http://activitystrea.ms/schema/1.0/place';
const COMMENT = 'http://activitystrea.ms/schema/1.0/comment';
// ^^^^^^^^^^ tea!
// Atom elements we snarf
const TITLE = 'title';
const SUMMARY = 'summary';
const ID = 'id';
const SOURCE = 'source';
const NAME = 'name';
const URI = 'uri';
const EMAIL = 'email';
public $element;
public $type;
public $id;
public $title;
public $summary;
public $content;
public $link;
public $source;
public $avatar;
public $geopoint;
public $poco;
public $displayName;
/**
* Constructor
*
* This probably needs to be refactored
* to generate a local class (ActivityPerson, ActivityFile, ...)
* based on the object type.
*
* @param DOMElement $element DOM thing to turn into an Activity thing
*/
function __construct($element = null)
{
if (empty($element)) {
return;
}
$this->element = $element;
if ($element->tagName == 'author') {
$this->type = self::PERSON; // XXX: is this fair?
$this->title = $this->_childContent($element, self::NAME);
$this->id = $this->_childContent($element, self::URI);
if (empty($this->id)) {
$email = $this->_childContent($element, self::EMAIL);
if (!empty($email)) {
// XXX: acct: ?
$this->id = 'mailto:'.$email;
}
}
} else {
$this->type = $this->_childContent($element, Activity::OBJECTTYPE,
Activity::SPEC);
if (empty($this->type)) {
$this->type = ActivityObject::NOTE;
}
$this->id = $this->_childContent($element, self::ID);
$this->title = $this->_childContent($element, self::TITLE);
$this->summary = $this->_childContent($element, self::SUMMARY);
$this->source = $this->_getSource($element);
$this->content = ActivityUtils::getContent($element);
$this->link = ActivityUtils::getPermalink($element);
}
// Some per-type attributes...
if ($this->type == self::PERSON || $this->type == self::GROUP) {
$this->displayName = $this->title;
// @fixme we may have multiple avatars with different resolutions specified
$this->avatar = ActivityUtils::getLink($element, 'avatar');
$this->poco = new PoCo($element);
}
}
private function _childContent($element, $tag, $namespace=ActivityUtils::ATOM)
{
return ActivityUtils::childContent($element, $tag, $namespace);
}
// Try to get a unique id for the source feed
private function _getSource($element)
{
$sourceEl = ActivityUtils::child($element, 'source');
if (empty($sourceEl)) {
return null;
} else {
$href = ActivityUtils::getLink($sourceEl, 'self');
if (!empty($href)) {
return $href;
} else {
return ActivityUtils::childContent($sourceEl, 'id');
}
}
}
static function fromNotice($notice)
{
$object = new ActivityObject();
$object->type = ActivityObject::NOTE;
$object->id = $notice->uri;
$object->title = $notice->content;
$object->content = $notice->rendered;
$object->link = $notice->bestUrl();
return $object;
}
static function fromProfile($profile)
{
$object = new ActivityObject();
$object->type = ActivityObject::PERSON;
$object->id = $profile->getUri();
$object->title = $profile->getBestName();
$object->link = $profile->profileurl;
$object->avatar = $profile->getAvatar(AVATAR_PROFILE_SIZE);
if (isset($profile->lat) && isset($profile->lon)) {
$object->geopoint = (float)$profile->lat . ' ' . (float)$profile->lon;
}
$object->poco = PoCo::fromProfile($profile);
return $object;
}
function asString($tag='activity:object')
{
$xs = new XMLStringer(true);
$xs->elementStart($tag);
$xs->element('activity:object-type', null, $this->type);
$xs->element(self::ID, null, $this->id);
if (!empty($this->title)) {
$xs->element(self::TITLE, null, $this->title);
}
if (!empty($this->summary)) {
$xs->element(self::SUMMARY, null, $this->summary);
}
if (!empty($this->content)) {
// XXX: assuming HTML content here
$xs->element(ActivityUtils::CONTENT, array('type' => 'html'), $this->content);
}
if (!empty($this->link)) {
$xs->element(
'link',
array(
'rel' => 'alternate',
'type' => 'text/html',
'href' => $this->link
),
null
);
}
if ($this->type == ActivityObject::PERSON
|| $this->type == ActivityObject::GROUP) {
$xs->element(
'link', array(
'type' => empty($this->avatar) ? 'image/png' : $this->avatar->mediatype,
'rel' => 'avatar',
'href' => empty($this->avatar)
? Avatar::defaultImage(AVATAR_PROFILE_SIZE)
: $this->avatar->displayUrl()
),
null
);
}
if (!empty($this->geopoint)) {
$xs->element(
'georss:point',
null,
$this->geopoint
);
}
if (!empty($this->poco)) {
$xs->raw($this->poco->asString());
}
$xs->elementEnd($tag);
return $xs->getString();
}
}
/**
* Utility class to hold a bunch of constant defining default verb types
*
* @category OStatus
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @copyright 2010 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
* @link http://status.net/
*/
class ActivityVerb
{
const POST = 'http://activitystrea.ms/schema/1.0/post';
const SHARE = 'http://activitystrea.ms/schema/1.0/share';
const SAVE = 'http://activitystrea.ms/schema/1.0/save';
const FAVORITE = 'http://activitystrea.ms/schema/1.0/favorite';
const PLAY = 'http://activitystrea.ms/schema/1.0/play';
const FOLLOW = 'http://activitystrea.ms/schema/1.0/follow';
const FRIEND = 'http://activitystrea.ms/schema/1.0/make-friend';
const JOIN = 'http://activitystrea.ms/schema/1.0/join';
const TAG = 'http://activitystrea.ms/schema/1.0/tag';
// Custom OStatus verbs for the flipside until they're standardized
const DELETE = 'http://ostatus.org/schema/1.0/unfollow';
const UNFAVORITE = 'http://ostatus.org/schema/1.0/unfavorite';
const UNFOLLOW = 'http://ostatus.org/schema/1.0/unfollow';
const LEAVE = 'http://ostatus.org/schema/1.0/leave';
// For simple profile-update pings; no content to share.
const UPDATE_PROFILE = 'http://ostatus.org/schema/1.0/update-profile';
}
class ActivityContext
{
public $replyToID;
public $replyToUrl;
public $location;
public $attention = array();
public $conversation;
const THR = 'http://purl.org/syndication/thread/1.0';
const GEORSS = 'http://www.georss.org/georss';
const OSTATUS = 'http://ostatus.org/schema/1.0';
const INREPLYTO = 'in-reply-to';
const REF = 'ref';
const HREF = 'href';
const POINT = 'point';
const ATTENTION = 'ostatus:attention';
const CONVERSATION = 'ostatus:conversation';
function __construct($element)
{
$replyToEl = ActivityUtils::child($element, self::INREPLYTO, self::THR);
if (!empty($replyToEl)) {
$this->replyToID = $replyToEl->getAttribute(self::REF);
$this->replyToUrl = $replyToEl->getAttribute(self::HREF);
}
$this->location = $this->getLocation($element);
$this->conversation = ActivityUtils::getLink($element, self::CONVERSATION);
// Multiple attention links allowed
$links = $element->getElementsByTagNameNS(ActivityUtils::ATOM, ActivityUtils::LINK);
for ($i = 0; $i < $links->length; $i++) {
$link = $links->item($i);
$linkRel = $link->getAttribute(ActivityUtils::REL);
if ($linkRel == self::ATTENTION) {
$this->attention[] = $link->getAttribute(self::HREF);
}
}
}
/**
* Parse location given as a GeoRSS-simple point, if provided.
* http://www.georss.org/simple
*
* @param feed item $entry
* @return mixed Location or false
*/
function getLocation($dom)
{
$points = $dom->getElementsByTagNameNS(self::GEORSS, self::POINT);
for ($i = 0; $i < $points->length; $i++) {
$point = $points->item($i)->textContent;
$point = str_replace(',', ' ', $point); // per spec "treat commas as whitespace"
$point = preg_replace('/\s+/', ' ', $point);
$point = trim($point);
$coords = explode(' ', $point);
if (count($coords) == 2) {
list($lat, $lon) = $coords;
if (is_numeric($lat) && is_numeric($lon)) {
common_log(LOG_INFO, "Looking up location for $lat $lon from georss");
return Location::fromLatLon($lat, $lon);
}
}
common_log(LOG_ERR, "Ignoring bogus georss:point value $point");
}
return null;
}
}
/**
* An activity in the ActivityStrea.ms world
*
* An activity is kind of like a sentence: someone did something
* to something else.
*
* 'someone' is the 'actor'; 'did something' is the verb;
* 'something else' is the object.
*
* @category OStatus
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @copyright 2010 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
* @link http://status.net/
*/
class Activity
{
const SPEC = 'http://activitystrea.ms/spec/1.0/';
const SCHEMA = 'http://activitystrea.ms/schema/1.0/';
const VERB = 'verb';
const OBJECT = 'object';
const ACTOR = 'actor';
const SUBJECT = 'subject';
const OBJECTTYPE = 'object-type';
const CONTEXT = 'context';
const TARGET = 'target';
const ATOM = 'http://www.w3.org/2005/Atom';
const AUTHOR = 'author';
const PUBLISHED = 'published';
const UPDATED = 'updated';
public $actor; // an ActivityObject
public $verb; // a string (the URL)
public $object; // an ActivityObject
public $target; // an ActivityObject
public $context; // an ActivityObject
public $time; // Time of the activity
public $link; // an ActivityObject
public $entry; // the source entry
public $feed; // the source feed
public $summary; // summary of activity
public $content; // HTML content of activity
public $id; // ID of the activity
public $title; // title of the activity
/**
* Turns a regular old Atom <entry> into a magical activity
*
* @param DOMElement $entry Atom entry to poke at
* @param DOMElement $feed Atom feed, for context
*/
function __construct($entry = null, $feed = null)
{
if (is_null($entry)) {
return;
}
$this->entry = $entry;
$this->feed = $feed;
$pubEl = $this->_child($entry, self::PUBLISHED, self::ATOM);
if (!empty($pubEl)) {
$this->time = strtotime($pubEl->textContent);
} else {
// XXX technically an error; being liberal. Good idea...?
$updateEl = $this->_child($entry, self::UPDATED, self::ATOM);
if (!empty($updateEl)) {
$this->time = strtotime($updateEl->textContent);
} else {
$this->time = null;
}
}
$this->link = ActivityUtils::getPermalink($entry);
$verbEl = $this->_child($entry, self::VERB);
if (!empty($verbEl)) {
$this->verb = trim($verbEl->textContent);
} else {
$this->verb = ActivityVerb::POST;
// XXX: do other implied stuff here
}
$objectEl = $this->_child($entry, self::OBJECT);
if (!empty($objectEl)) {
$this->object = new ActivityObject($objectEl);
} else {
$this->object = new ActivityObject($entry);
}
$actorEl = $this->_child($entry, self::ACTOR);
if (!empty($actorEl)) {
$this->actor = new ActivityObject($actorEl);
} else if (!empty($feed) &&
$subjectEl = $this->_child($feed, self::SUBJECT)) {
$this->actor = new ActivityObject($subjectEl);
} else if ($authorEl = $this->_child($entry, self::AUTHOR, self::ATOM)) {
$this->actor = new ActivityObject($authorEl);
} else if (!empty($feed) && $authorEl = $this->_child($feed, self::AUTHOR,
self::ATOM)) {
$this->actor = new ActivityObject($authorEl);
}
$contextEl = $this->_child($entry, self::CONTEXT);
if (!empty($contextEl)) {
$this->context = new ActivityContext($contextEl);
} else {
$this->context = new ActivityContext($entry);
}
$targetEl = $this->_child($entry, self::TARGET);
if (!empty($targetEl)) {
$this->target = new ActivityObject($targetEl);
}
$this->summary = ActivityUtils::childContent($entry, 'summary');
$this->id = ActivityUtils::childContent($entry, 'id');
$this->content = ActivityUtils::getContent($entry);
}
/**
* Returns an Atom <entry> based on this activity
*
* @return DOMElement Atom entry
*/
function toAtomEntry()
{
return null;
}
function asString($namespace=false)
{
$xs = new XMLStringer(true);
if ($namespace) {
$attrs = array('xmlns' => 'http://www.w3.org/2005/Atom',
'xmlns:activity' => 'http://activitystrea.ms/spec/1.0/',
'xmlns:georss' => 'http://www.georss.org/georss',
'xmlns:ostatus' => 'http://ostatus.org/schema/1.0',
'xmlns:poco' => 'http://portablecontacts.net/spec/1.0');
} else {
$attrs = array();
}
$xs->elementStart('entry', $attrs);
$xs->element('id', null, $this->id);
$xs->element('title', null, $this->title);
$xs->element('published', null, common_date_iso8601($this->time));
$xs->element('content', array('type' => 'html'), $this->content);
if (!empty($this->summary)) {
$xs->element('summary', null, $this->summary);
}
if (!empty($this->link)) {
$xs->element('link', array('rel' => 'alternate',
'type' => 'text/html'),
$this->link);
}
// XXX: add context
$xs->elementStart('author');
$xs->element('uri', array(), $this->actor->id);
if ($this->actor->title) {
$xs->element('name', array(), $this->actor->title);
}
$xs->elementEnd('author');
$xs->raw($this->actor->asString('activity:actor'));
$xs->element('activity:verb', null, $this->verb);
if ($this->object) {
$xs->raw($this->object->asString());
}
if ($this->target) {
$xs->raw($this->target->asString('activity:target'));
}
$xs->elementEnd('entry');
return $xs->getString();
}
private function _child($element, $tag, $namespace=self::SPEC)
{
return ActivityUtils::child($element, $tag, $namespace);
}
}

View File

@ -359,7 +359,7 @@ class ApiAction extends Action
$entry['link'] = common_local_url('shownotice', array('notice' => $notice->id)); $entry['link'] = common_local_url('shownotice', array('notice' => $notice->id));
$entry['published'] = common_date_iso8601($notice->created); $entry['published'] = common_date_iso8601($notice->created);
$taguribase = common_config('integration', 'taguri'); $taguribase = TagURI::base();
$entry['id'] = "tag:$taguribase:$entry[link]"; $entry['id'] = "tag:$taguribase:$entry[link]";
$entry['updated'] = $entry['published']; $entry['updated'] = $entry['published'];
@ -803,7 +803,7 @@ class ApiAction extends Action
$entry['link'] = common_local_url('showmessage', array('message' => $message->id)); $entry['link'] = common_local_url('showmessage', array('message' => $message->id));
$entry['published'] = common_date_iso8601($message->created); $entry['published'] = common_date_iso8601($message->created);
$taguribase = common_config('integration', 'taguri'); $taguribase = TagURI::base();
$entry['id'] = "tag:$taguribase:$entry[link]"; $entry['id'] = "tag:$taguribase:$entry[link]";
$entry['updated'] = $entry['published']; $entry['updated'] = $entry['published'];

View File

@ -27,8 +27,7 @@
* @link http://status.net/ * @link http://status.net/
*/ */
if (!defined('STATUSNET') if (!defined('STATUSNET')) {
{
exit(1); exit(1);
} }
@ -87,7 +86,7 @@ class Atom10Entry extends XMLStringer
* *
* @return void * @return void
*/ */
function validate function validate()
{ {
} }

View File

@ -78,7 +78,7 @@ class Atom10Feed extends XMLStringer
$this->authors = array(); $this->authors = array();
$this->links = array(); $this->links = array();
$this->entries = array(); $this->entries = array();
$this->addNamespace('xmlns', 'http://www.w3.org/2005/Atom'); $this->addNamespace('', 'http://www.w3.org/2005/Atom');
} }
/** /**
@ -109,11 +109,11 @@ class Atom10Feed extends XMLStringer
); );
} }
if (!is_null($uri)) { if (isset($uri)) {
$xs->element('uri', null, $uri); $xs->element('uri', null, $uri);
} }
if (!is_null(email)) { if (isset($email)) {
$xs->element('email', null, $email); $xs->element('email', null, $email);
} }
@ -162,7 +162,14 @@ class Atom10Feed extends XMLStringer
{ {
$this->xw->startDocument('1.0', 'UTF-8'); $this->xw->startDocument('1.0', 'UTF-8');
$commonAttrs = array('xml:lang' => 'en-US'); $commonAttrs = array('xml:lang' => 'en-US');
$commonAttrs = array_merge($commonAttrs, $this->namespaces); foreach ($this->namespaces as $prefix => $uri) {
if ($prefix == '') {
$attr = 'xmlns';
} else {
$attr = 'xmlns:' . $prefix;
}
$commonAttrs[$attr] = $uri;
}
$this->elementStart('feed', $commonAttrs); $this->elementStart('feed', $commonAttrs);
$this->element('id', null, $this->id); $this->element('id', null, $this->id);

View File

@ -50,23 +50,28 @@ class AtomNoticeFeed extends Atom10Feed
// Feeds containing notice info use these namespaces // Feeds containing notice info use these namespaces
$this->addNamespace( $this->addNamespace(
'xmlns:thr', 'thr',
'http://purl.org/syndication/thread/1.0' 'http://purl.org/syndication/thread/1.0'
); );
$this->addNamespace( $this->addNamespace(
'xmlns:georss', 'georss',
'http://www.georss.org/georss' 'http://www.georss.org/georss'
); );
$this->addNamespace( $this->addNamespace(
'xmlns:activity', 'activity',
'http://activitystrea.ms/spec/1.0/' 'http://activitystrea.ms/spec/1.0/'
); );
$this->addNamespace(
'poco',
'http://portablecontacts.net/spec/1.0'
);
// XXX: What should the uri be? // XXX: What should the uri be?
$this->addNamespace( $this->addNamespace(
'xmlns:ostatus', 'ostatus',
'http://ostatus.org/schema/1.0' 'http://ostatus.org/schema/1.0'
); );
} }

View File

@ -54,9 +54,14 @@ class AtomUserNoticeFeed extends AtomNoticeFeed
* *
* @return void * @return void
*/ */
function __construct($user = null, $indent = true) { function __construct($user = null, $indent = true) {
parent::__construct($indent); parent::__construct($indent);
$this->user = $user; $this->user = $user;
if (!empty($user)) {
$profile = $user->getProfile();
$this->addAuthor($profile->nickname, $user->uri);
}
} }
function getUser() function getUser()

View File

@ -548,12 +548,19 @@ class SubCommand extends Command
return; return;
} }
$result = subs_subscribe_user($this->user, $this->other); $otherUser = User::staticGet('nickname', $this->other);
if ($result == 'true') { if (empty($otherUser)) {
$channel->error($this->user, _('No such user'));
return;
}
try {
Subscription::start($this->user->getProfile(),
$otherUser->getProfile());
$channel->output($this->user, sprintf(_('Subscribed to %s'), $this->other)); $channel->output($this->user, sprintf(_('Subscribed to %s'), $this->other));
} else { } catch (Exception $e) {
$channel->error($this->user, $result); $channel->error($this->user, $e->getMessage());
} }
} }
} }
@ -576,12 +583,18 @@ class UnsubCommand extends Command
return; return;
} }
$result=subs_unsubscribe_user($this->user, $this->other); $otherUser = User::staticGet('nickname', $this->other);
if ($result) { if (empty($otherUser)) {
$channel->error($this->user, _('No such user'));
}
try {
Subscription::cancel($this->user->getProfile(),
$otherUser->getProfile());
$channel->output($this->user, sprintf(_('Unsubscribed from %s'), $this->other)); $channel->output($this->user, sprintf(_('Unsubscribed from %s'), $this->other));
} else { } catch (Exception $e) {
$channel->error($this->user, $result); $channel->error($this->user, $e->getMessage());
} }
} }
} }
@ -655,6 +668,34 @@ class LoginCommand extends Command
} }
} }
class LoseCommand extends Command
{
var $other = null;
function __construct($user, $other)
{
parent::__construct($user);
$this->other = $other;
}
function execute($channel)
{
if(!$this->other) {
$channel->error($this->user, _('Specify the name of the user to unsubscribe from'));
return;
}
$result=subs_unsubscribe_from($this->user, $this->other);
if ($result) {
$channel->output($this->user, sprintf(_('Unsubscribed %s'), $this->other));
} else {
$channel->error($this->user, $result);
}
}
}
class SubscriptionsCommand extends Command class SubscriptionsCommand extends Command
{ {
function execute($channel) function execute($channel)
@ -737,6 +778,7 @@ class HelpCommand extends Command
"d <nickname> <text> - direct message to user\n". "d <nickname> <text> - direct message to user\n".
"get <nickname> - get last notice from user\n". "get <nickname> - get last notice from user\n".
"whois <nickname> - get profile info on user\n". "whois <nickname> - get profile info on user\n".
"lose <nickname> - force user to stop following you\n".
"fav <nickname> - add user's last notice as a 'fave'\n". "fav <nickname> - add user's last notice as a 'fave'\n".
"fav #<notice_id> - add notice with the given id as a 'fave'\n". "fav #<notice_id> - add notice with the given id as a 'fave'\n".
"repeat #<notice_id> - repeat a notice with a given id\n". "repeat #<notice_id> - repeat a notice with a given id\n".

View File

@ -47,6 +47,17 @@ class CommandInterpreter
} else { } else {
return new LoginCommand($user); return new LoginCommand($user);
} }
case 'lose':
if ($arg) {
list($other, $extra) = $this->split_arg($arg);
if ($extra) {
return null;
} else {
return new LoseCommand($user, $other);
}
} else {
return null;
}
case 'subscribers': case 'subscribers':
if ($arg) { if ($arg) {
return null; return null;

View File

@ -123,6 +123,7 @@ require_once INSTALLDIR.'/lib/util.php';
require_once INSTALLDIR.'/lib/action.php'; require_once INSTALLDIR.'/lib/action.php';
require_once INSTALLDIR.'/lib/mail.php'; require_once INSTALLDIR.'/lib/mail.php';
require_once INSTALLDIR.'/lib/subs.php'; require_once INSTALLDIR.'/lib/subs.php';
require_once INSTALLDIR.'/lib/activity.php';
require_once INSTALLDIR.'/lib/clientexception.php'; require_once INSTALLDIR.'/lib/clientexception.php';
require_once INSTALLDIR.'/lib/serverexception.php'; require_once INSTALLDIR.'/lib/serverexception.php';

View File

@ -91,10 +91,13 @@ $default =
'spawndelay' => 1, // Wait at least N seconds between (re)spawns of child processes to avoid slamming the queue server with subscription startup '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
'breakout' => array('*' => 'shared'), // set global or per-handler queue breakout 'breakout' => array(), // List queue specifiers to break out when using Stomp queue.
// 'shared': use a shared queue for all sites // Default will share all queues for all sites within each group.
// 'handler': share each/this handler over multiple sites // Specify as <group>/<queue> or <group>/<queue>/<site>,
// 'site': break out for each/this handler on this site // using nickname identifier as site.
//
// 'main/distrib' separate "distrib" queue covering all sites
// 'xmpp/xmppout/mysite' separate "xmppout" queue covering just 'mysite'
'max_retries' => 10, // drop messages after N failed attempts to process (Stomp) 'max_retries' => 10, // drop messages after N failed attempts to process (Stomp)
'dead_letter_dir' => false, // set to directory to save dropped messages into (Stomp) 'dead_letter_dir' => false, // set to directory to save dropped messages into (Stomp)
), ),
@ -172,7 +175,7 @@ $default =
array('enabled' => false), array('enabled' => false),
'integration' => 'integration' =>
array('source' => 'StatusNet', # source attribute for Twitter array('source' => 'StatusNet', # source attribute for Twitter
'taguri' => $_server.',2009'), # base for tag URIs 'taguri' => null), # base for tag URIs
'twitter' => 'twitter' =>
array('enabled' => true, array('enabled' => true,
'consumer_key' => null, 'consumer_key' => null,
@ -277,7 +280,6 @@ $default =
'Mapstraction' => null, 'Mapstraction' => null,
'Linkback' => null, 'Linkback' => null,
'WikiHashtags' => null, 'WikiHashtags' => null,
'PubSubHubBub' => null,
'RSSCloud' => null, 'RSSCloud' => null,
'OpenID' => null), 'OpenID' => null),
), ),

View File

@ -69,19 +69,7 @@ class DistribQueueHandler
} }
try { try {
$groups = $notice->saveGroups(); $notice->addToInboxes();
} catch (Exception $e) {
$this->logit($notice, $e);
}
try {
$recipients = $notice->saveReplies();
} catch (Exception $e) {
$this->logit($notice, $e);
}
try {
$notice->addToInboxes($groups, $recipients);
} catch (Exception $e) { } catch (Exception $e) {
$this->logit($notice, $e); $this->logit($notice, $e);
} }

View File

@ -356,6 +356,12 @@ class HTMLOutputter extends XMLOutputter
if( empty($url['scheme']) && empty($url['host']) && empty($url['query']) && empty($url['fragment'])) if( empty($url['scheme']) && empty($url['host']) && empty($url['query']) && empty($url['fragment']))
{ {
if (strpos($src, 'plugins/') === 0 || strpos($src, 'local/') === 0) {
$src = common_path($src) . '?version=' . STATUSNET_VERSION;
}else{
$path = common_config('javascript', 'path'); $path = common_config('javascript', 'path');
if (empty($path)) { if (empty($path)) {
@ -391,6 +397,7 @@ class HTMLOutputter extends XMLOutputter
$src = $protocol.'://'.$server.$path.$src . '?version=' . STATUSNET_VERSION; $src = $protocol.'://'.$server.$path.$src . '?version=' . STATUSNET_VERSION;
} }
}
$this->element('script', array('type' => $type, $this->element('script', array('type' => $type,
'src' => $src), 'src' => $src),
@ -439,7 +446,7 @@ class HTMLOutputter extends XMLOutputter
{ {
if(Event::handle('StartCssLinkElement', array($this,&$src,&$theme,&$media))) { if(Event::handle('StartCssLinkElement', array($this,&$src,&$theme,&$media))) {
$url = parse_url($src); $url = parse_url($src);
if( empty($url->scheme) && empty($url->host) && empty($url->query) && empty($url->fragment)) if( empty($url['scheme']) && empty($url['host']) && empty($url['query']) && empty($url['fragment']))
{ {
if(file_exists(Theme::file($src,$theme))){ if(file_exists(Theme::file($src,$theme))){
$src = Theme::path($src, $theme); $src = Theme::path($src, $theme);

View File

@ -55,27 +55,18 @@ abstract class IoMaster
if ($multiSite !== null) { if ($multiSite !== null) {
$this->multiSite = $multiSite; $this->multiSite = $multiSite;
} }
if ($this->multiSite) {
$this->sites = StatusNet::findAllSites();
} else {
$this->sites = array(StatusNet::currentSite());
}
if (empty($this->sites)) {
throw new Exception("Empty status_network table, cannot init");
}
foreach ($this->sites as $site) {
StatusNet::switchSite($site);
$this->initManagers(); $this->initManagers();
} }
}
/** /**
* Initialize IoManagers for the currently configured site * Initialize IoManagers which are appropriate to this instance;
* which are appropriate to this instance. * pass class names or instances into $this->instantiate().
* *
* Pass class names into $this->instantiate() * If setup and configuration may vary between sites in multi-site
* mode, it's the subclass's responsibility to set them up here.
*
* Switching site configurations is an acceptable side effect.
*/ */
abstract function initManagers(); abstract function initManagers();

View File

@ -380,12 +380,12 @@ class NoticeListItem extends Widget
function showNoticeLink() function showNoticeLink()
{ {
if($this->notice->is_local == Notice::LOCAL_PUBLIC || $this->notice->is_local == Notice::LOCAL_NONPUBLIC){ $noticeurl = $this->notice->bestUrl();
$noticeurl = common_local_url('shownotice',
array('notice' => $this->notice->id)); // above should always return an URL
}else{
$noticeurl = $this->notice->uri; assert(!empty($noticeurl));
}
$this->out->elementStart('a', array('rel' => 'bookmark', $this->out->elementStart('a', array('rel' => 'bookmark',
'class' => 'timestamp', 'class' => 'timestamp',
'href' => $noticeurl)); 'href' => $noticeurl));
@ -438,14 +438,15 @@ class NoticeListItem extends Widget
$this->out->text(_('at')); $this->out->text(_('at'));
$this->out->text(' '); $this->out->text(' ');
if (empty($url)) { if (empty($url)) {
$this->out->element('span', array('class' => 'geo', $this->out->element('abbr', array('class' => 'geo',
'title' => $latlon), 'title' => $latlon),
$name); $name);
} else { } else {
$this->out->element('a', array('class' => 'geo', $this->out->elementStart('a', array('href' => $url));
'title' => $latlon, $this->out->element('abbr', array('class' => 'geo',
'href' => $url), 'title' => $latlon),
$name); $name);
$this->out->elementEnd('a');
} }
$this->out->elementEnd('span'); $this->out->elementEnd('span');
} }
@ -492,9 +493,10 @@ class NoticeListItem extends Widget
break; break;
default: default:
$name = null; $name = $source_name;
$url = null; $url = null;
if (Event::handle('StartNoticeSourceLink', array($this->notice, &$name, &$url, &$title))) {
$ns = Notice_source::staticGet($this->notice->source); $ns = Notice_source::staticGet($this->notice->source);
if ($ns) { if ($ns) {
@ -507,15 +509,18 @@ class NoticeListItem extends Widget
$url = $app->source_url; $url = $app->source_url;
} }
} }
}
Event::handle('EndNoticeSourceLink', array($this->notice, &$name, &$url, &$title));
if (!empty($name) && !empty($url)) { if (!empty($name) && !empty($url)) {
$this->out->elementStart('span', 'device'); $this->out->elementStart('span', 'device');
$this->out->element('a', array('href' => $url, $this->out->element('a', array('href' => $url,
'rel' => 'external'), 'rel' => 'external',
'title' => $title),
$name); $name);
$this->out->elementEnd('span'); $this->out->elementEnd('span');
} else { } else {
$this->out->element('span', 'device', $source_name); $this->out->element('span', 'device', $name);
} }
break; break;
} }

View File

@ -29,11 +29,9 @@ require_once 'Auth/Yadis/Yadis.php';
function omb_oauth_consumer() function omb_oauth_consumer()
{ {
static $con = null; // Don't try to make this static. Leads to issues in
if (is_null($con)) { // multi-site setups - Z
$con = new OAuthConsumer(common_root_url(), ''); return new OAuthConsumer(common_root_url(), '');
}
return $con;
} }
function omb_oauth_server() function omb_oauth_server()

View File

@ -0,0 +1,48 @@
<?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 QueueHandler
* @maintainer Brion Vibber <brion@status.net>
*/
class ProfileQueueHandler extends QueueHandler
{
function transport()
{
return 'profile';
}
function handle($profile)
{
if (!($profile instanceof Profile)) {
common_log(LOG_ERR, "Got a bogus profile, not broadcasting");
return true;
}
if (Event::handle('StartBroadcastProfile', array($profile))) {
require_once(INSTALLDIR.'/lib/omb.php');
omb_broadcast_profile($profile);
}
Event::handle('EndBroadcastProfile', array($profile));
return true;
}
}

View File

@ -239,6 +239,9 @@ abstract class QueueManager extends IoManager
$this->connect('sms', 'SmsQueueHandler'); $this->connect('sms', 'SmsQueueHandler');
} }
// Broadcasting profile updates to OMB remote subscribers
$this->connect('profile', 'ProfileQueueHandler');
// For compat with old plugins not registering their own handlers. // For compat with old plugins not registering their own handlers.
$this->connect('plugin', 'PluginQueueHandler'); $this->connect('plugin', 'PluginQueueHandler');
} }

View File

@ -63,7 +63,7 @@ class StompQueueManager extends QueueManager
$this->password = common_config('queue', 'stomp_password'); $this->password = common_config('queue', 'stomp_password');
$this->base = common_config('queue', 'queue_basename'); $this->base = common_config('queue', 'queue_basename');
$this->control = common_config('queue', 'control_channel'); $this->control = common_config('queue', 'control_channel');
$this->subscriptions = array($this->control => $this->control); $this->breakout = common_config('queue', 'breakout');
} }
/** /**
@ -75,28 +75,6 @@ class StompQueueManager extends QueueManager
return IoManager::INSTANCE_PER_PROCESS; return IoManager::INSTANCE_PER_PROCESS;
} }
/**
* Record queue subscriptions we'll need to handle the current site.
*/
public function addSite()
{
$this->sites[] = StatusNet::currentSite();
// Set up handlers active for this site...
$this->initialize();
foreach ($this->activeGroups as $group) {
if (isset($this->groups[$group])) {
// Actual queues may be broken out or consolidated...
// Subscribe to all the target queues we'll need.
foreach ($this->groups[$group] as $transport => $class) {
$target = $this->queueName($transport);
$this->subscriptions[$target] = $target;
}
}
}
}
/** /**
* Optional; ping any running queue handler daemons with a notification * Optional; ping any running queue handler daemons with a notification
* such as announcing a new site to handle or requesting clean shutdown. * such as announcing a new site to handle or requesting clean shutdown.
@ -166,14 +144,15 @@ class StompQueueManager extends QueueManager
$con = $this->cons[$idx]; $con = $this->cons[$idx];
$host = $con->getServer(); $host = $con->getServer();
$result = $con->send($this->queueName($queue), $msg, $props); $target = $this->queueName($queue);
$result = $con->send($target, $msg, $props);
if (!$result) { if (!$result) {
$this->_log(LOG_ERR, "Error sending $rep to $queue queue on $host"); $this->_log(LOG_ERR, "Error sending $rep to $queue queue on $host $target");
return false; return false;
} }
$this->_log(LOG_DEBUG, "complete remote queueing $rep for $queue on $host"); $this->_log(LOG_DEBUG, "complete remote queueing $rep for $queue on $host $target");
$this->stats('enqueued', $queue); $this->stats('enqueued', $queue);
return true; return true;
} }
@ -432,12 +411,43 @@ class StompQueueManager extends QueueManager
protected function doSubscribe(LiberalStomp $con) protected function doSubscribe(LiberalStomp $con)
{ {
$host = $con->getServer(); $host = $con->getServer();
foreach ($this->subscriptions as $queue) { foreach ($this->subscriptions() as $sub) {
$this->_log(LOG_INFO, "Subscribing to $queue on $host"); $this->_log(LOG_INFO, "Subscribing to $sub on $host");
$con->subscribe($queue); $con->subscribe($sub);
} }
} }
/**
* Grab a full list of stomp-side queue subscriptions.
* Will include:
* - control broadcast channel
* - shared group queues for active groups
* - per-handler and per-site breakouts from $config['queue']['breakout']
* that are rooted in the active groups.
*
* @return array of strings
*/
protected function subscriptions()
{
$subs = array();
$subs[] = $this->control;
foreach ($this->activeGroups as $group) {
$subs[] = $this->base . $group;
}
foreach ($this->breakout as $spec) {
$parts = explode('/', $spec);
if (count($parts) < 2 || count($parts) > 3) {
common_log(LOG_ERR, "Bad queue breakout specifier $spec");
}
if (in_array($parts[0], $this->activeGroups)) {
$subs[] = $this->base . $spec;
}
}
return array_unique($subs);
}
/** /**
* Handle and acknowledge an event that's come in through a queue. * Handle and acknowledge an event that's come in through a queue.
* *
@ -612,58 +622,53 @@ class StompQueueManager extends QueueManager
} }
/** /**
* Set us up with queue subscriptions for a new site added at runtime, * (Re)load runtime configuration for a given site by nickname,
* triggered by a broadcast to the 'statusnet-control' topic. * triggered by a broadcast to the 'statusnet-control' topic.
* *
* Configuration changes in database should update, but config
* files might not.
*
* @param array $frame Stomp frame * @param array $frame Stomp frame
* @return bool true to continue; false to stop further processing. * @return bool true to continue; false to stop further processing.
*/ */
protected function updateSiteConfig($nickname) protected function updateSiteConfig($nickname)
{ {
if (empty($this->sites)) {
if ($nickname == common_config('site', 'nickname')) {
StatusNet::init(common_config('site', 'server'));
} else {
$this->_log(LOG_INFO, "Ignoring update ping for other site $nickname");
}
} else {
$sn = Status_network::staticGet($nickname); $sn = Status_network::staticGet($nickname);
if ($sn) { if ($sn) {
$this->switchSite($nickname); $this->switchSite($nickname);
if (!in_array($nickname, $this->sites)) { if (!in_array($nickname, $this->sites)) {
$this->addSite(); $this->addSite();
} }
// @fixme update subscriptions, if applicable
$this->stats('siteupdate'); $this->stats('siteupdate');
} else { } else {
$this->_log(LOG_ERR, "Ignoring ping for unrecognized new site $nickname"); $this->_log(LOG_ERR, "Ignoring ping for unrecognized new site $nickname");
} }
} }
}
/** /**
* Combines the queue_basename from configuration with the * Combines the queue_basename from configuration with the
* group name for this queue to give eg: * group name for this queue to give eg:
* *
* /queue/statusnet/main * /queue/statusnet/main
* /queue/statusnet/main/distrib
* /queue/statusnet/xmpp/xmppout/site01
* *
* @param string $queue * @param string $queue
* @return string * @return string
*/ */
protected function queueName($queue) protected function queueName($queue)
{ {
$base = common_config('queue', 'queue_basename');
$group = $this->queueGroup($queue); $group = $this->queueGroup($queue);
$breakout = $this->breakoutMode($queue);
if ($breakout == 'shared') {
return $base . "$group";
} else if ($breakout == 'handler') {
return $base . "$group/$queue";
} else if ($breakout == 'site') {
$site = StatusNet::currentSite(); $site = StatusNet::currentSite();
return $base . "$group/$queue/$site";
$specs = array("$group/$queue/$site",
"$group/$queue");
foreach ($specs as $spec) {
if (in_array($spec, $this->breakout)) {
return $this->base . $spec;
} }
throw Exception("Unrecognized queue breakout mode '$breakout' for '$queue'"); }
return $this->base . $group;
} }
/** /**

View File

@ -19,24 +19,6 @@
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
require_once('XMPPHP/XMPP.php');
/* Subscribe $user to nickname $other_nickname
Returns true or an error message.
*/
function subs_subscribe_user($user, $other_nickname)
{
$other = User::staticGet('nickname', $other_nickname);
if (!$other) {
return _('No such user.');
}
return subs_subscribe_to($user, $other);
}
/* Subscribe user $user to other user $other. /* Subscribe user $user to other user $other.
* Note: $other must be a local user, not a remote profile. * Note: $other must be a local user, not a remote profile.
* Because the other way is quite a bit more complicated. * Because the other way is quite a bit more complicated.
@ -44,111 +26,40 @@ function subs_subscribe_user($user, $other_nickname)
function subs_subscribe_to($user, $other) function subs_subscribe_to($user, $other)
{ {
if (!$user->hasRight(Right::SUBSCRIBE)) {
return _('You have been banned from subscribing.');
}
if ($user->isSubscribed($other)) {
return _('Already subscribed!');
}
if ($other->hasBlocked($user)) {
return _('User has blocked you.');
}
try { try {
if (Event::handle('StartSubscribe', array($user, $other))) { Subscription::start($user->getProfile(), $other);
return true;
if (!$user->subscribeTo($other)) {
return _('Could not subscribe.');
return;
}
subs_notify($other, $user);
$cache = common_memcache();
if ($cache) {
$cache->delete(common_cache_key('user:notices_with_friends:' . $user->id));
}
$profile = $user->getProfile();
$profile->blowSubscriptionsCount();
$other->blowSubscribersCount();
if ($other->autosubscribe && !$other->isSubscribed($user) && !$user->hasBlocked($other)) {
if (!$other->subscribeTo($user)) {
return _('Could not subscribe other to you.');
}
$cache = common_memcache();
if ($cache) {
$cache->delete(common_cache_key('user:notices_with_friends:' . $other->id));
}
subs_notify($user, $other);
}
Event::handle('EndSubscribe', array($user, $other));
}
} catch (Exception $e) { } catch (Exception $e) {
return $e->getMessage(); return $e->getMessage();
} }
return true;
} }
function subs_notify($listenee, $listener)
{
# XXX: add other notifications (Jabber, SMS) here
# XXX: queue this and handle it offline
# XXX: Whatever happens, do it in Twitter-like API, too
subs_notify_email($listenee, $listener);
}
function subs_notify_email($listenee, $listener)
{
mail_subscribe_notify($listenee, $listener);
}
/* Unsubscribe $user from nickname $other_nickname
Returns true or an error message.
*/
function subs_unsubscribe_user($user, $other_nickname)
{
$other = User::staticGet('nickname', $other_nickname);
if (!$other) {
return _('No such user.');
}
return subs_unsubscribe_to($user, $other->getProfile());
}
/* Unsubscribe user $user from profile $other
* NB: other can be a remote user. */
function subs_unsubscribe_to($user, $other) function subs_unsubscribe_to($user, $other)
{ {
if (!$user->isSubscribed($other)) try {
return _('Not subscribed!'); Subscription::cancel($user->getProfile(), $other);
return true;
// Don't allow deleting self subs } catch (Exception $e) {
return $e->getMessage();
if ($user->id == $other->id) { }
return _('Couldn\'t delete self-subscription.');
} }
function subs_unsubscribe_from($user, $other){
$local = User::staticGet("nickname",$other);
if($local){
return subs_unsubscribe_to($local,$user);
} else {
try { try {
if (Event::handle('StartUnsubscribe', array($user, $other))) { $remote = Profile::staticGet("nickname",$other);
if(is_string($remote)){
return $remote;
}
if (Event::handle('StartUnsubscribe', array($remote,$user))) {
$sub = DB_DataObject::factory('subscription'); $sub = DB_DataObject::factory('subscription');
$sub->subscriber = $user->id; $sub->subscriber = $remote->id;
$sub->subscribed = $other->id; $sub->subscribed = $user->id;
$sub->find(true); $sub->find(true);
@ -160,20 +71,18 @@ function subs_unsubscribe_to($user, $other)
$cache = common_memcache(); $cache = common_memcache();
if ($cache) { if ($cache) {
$cache->delete(common_cache_key('user:notices_with_friends:' . $user->id)); $cache->delete(common_cache_key('user:notices_with_friends:' . $remote->id));
} }
$profile = $user->getProfile();
$profile->blowSubscriptionsCount(); $user->blowSubscribersCount();
$other->blowSubscribersCount(); $remote->blowSubscribersCount();
Event::handle('EndUnsubscribe', array($user, $other)); Event::handle('EndUnsubscribe', array($remote, $user));
} }
} catch (Exception $e) { } catch (Exception $e) {
return $e->getMessage(); return $e->getMessage();
} }
}
return true;
} }

96
lib/taguri.php Normal file
View File

@ -0,0 +1,96 @@
<?php
/**
* StatusNet, the distributed open-source microblogging tool
*
* Utility for creating new tag: URIs
*
* 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 URI
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @copyright 2010 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
* @link http://status.net/
*/
if (!defined('STATUSNET')) {
exit(1);
}
/**
* Mint tag: URIs
*
* tag: URIs are unique identifiers according to http://tools.ietf.org/html/rfc4151.
*
* We use them for creating URIs for things that can't be HTTP retrieved.
*
* @category URI
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
* @link http://status.net/
*/
class TagURI
{
/**
* Return the base part of a tag URI
*
* Note: use mint() instead.
*
* @return string Tag URI base to use
*/
static function base()
{
$base = common_config('integration', 'taguri');
if (empty($base)) {
$base = common_config('site', 'server').','.date('Y-m-d');
$pathPart = trim(common_config('site', 'path'), '/');
if (!empty($pathPart)) {
$base .= ':'.str_replace('/', ':', $pathPart);
}
}
return $base;
}
/**
* Make a new tag URI
*
* Builds the proper base and creates all the parts
*
* @return string minted URI
*/
static function mint()
{
$base = self::base();
$args = func_get_args();
$format = array_shift($args);
$extra = vsprintf($format, $args);
return 'tag:'.$base.':'.$extra;
}
}

View File

@ -426,13 +426,148 @@ function common_render_content($text, $notice)
{ {
$r = common_render_text($text); $r = common_render_text($text);
$id = $notice->profile_id; $id = $notice->profile_id;
$r = preg_replace('/(^|\s+)@(['.NICKNAME_FMT.']{1,64})/e', "'\\1@'.common_at_link($id, '\\2')", $r); $r = common_linkify_mentions($id, $r);
$r = preg_replace('/^T ([A-Z0-9]{1,64}) /e', "'T '.common_at_link($id, '\\1').' '", $r);
$r = preg_replace('/(^|[\s\.\,\:\;]+)@#([A-Za-z0-9]{1,64})/e', "'\\1@#'.common_at_hash_link($id, '\\2')", $r);
$r = preg_replace('/(^|[\s\.\,\:\;]+)!([A-Za-z0-9]{1,64})/e', "'\\1!'.common_group_link($id, '\\2')", $r); $r = preg_replace('/(^|[\s\.\,\:\;]+)!([A-Za-z0-9]{1,64})/e', "'\\1!'.common_group_link($id, '\\2')", $r);
return $r; return $r;
} }
function common_linkify_mentions($profile_id, $text)
{
$mentions = common_find_mentions($profile_id, $text);
// We need to go through in reverse order by position,
// so our positions stay valid despite our fudging with the
// string!
$points = array();
foreach ($mentions as $mention)
{
$points[$mention['position']] = $mention;
}
krsort($points);
foreach ($points as $position => $mention) {
$linkText = common_linkify_mention($mention);
$text = substr_replace($text, $linkText, $position, mb_strlen($mention['text']));
}
return $text;
}
function common_linkify_mention($mention)
{
$output = null;
if (Event::handle('StartLinkifyMention', array($mention, &$output))) {
$xs = new XMLStringer(false);
$attrs = array('href' => $mention['url'],
'class' => 'url');
if (!empty($mention['title'])) {
$attrs['title'] = $mention['title'];
}
$xs->elementStart('span', 'vcard');
$xs->elementStart('a', $attrs);
$xs->element('span', 'fn nickname', $mention['text']);
$xs->elementEnd('a');
$xs->elementEnd('span');
$output = $xs->getString();
Event::handle('EndLinkifyMention', array($mention, &$output));
}
return $output;
}
function common_find_mentions($profile_id, $text)
{
$mentions = array();
$sender = Profile::staticGet('id', $profile_id);
if (empty($sender)) {
return $mentions;
}
if (Event::handle('StartFindMentions', array($sender, $text, &$mentions))) {
preg_match_all('/^T ([A-Z0-9]{1,64}) /',
$text,
$tmatches,
PREG_OFFSET_CAPTURE);
preg_match_all('/(?:^|\s+)@(['.NICKNAME_FMT.']{1,64})/',
$text,
$atmatches,
PREG_OFFSET_CAPTURE);
$matches = array_merge($tmatches[1], $atmatches[1]);
foreach ($matches as $match) {
$nickname = common_canonical_nickname($match[0]);
$mentioned = common_relative_profile($sender, $nickname);
if (!empty($mentioned)) {
$user = User::staticGet('id', $mentioned->id);
if ($user) {
$url = common_local_url('userbyid', array('id' => $user->id));
} else {
$url = $mentioned->profileurl;
}
$mention = array('mentioned' => array($mentioned),
'text' => $match[0],
'position' => $match[1],
'url' => $url);
if (!empty($mentioned->fullname)) {
$mention['title'] = $mentioned->fullname;
}
$mentions[] = $mention;
}
}
// @#tag => mention of all subscriptions tagged 'tag'
preg_match_all('/(?:^|[\s\.\,\:\;]+)@#([\pL\pN_\-\.]{1,64})/',
$text,
$hmatches,
PREG_OFFSET_CAPTURE);
foreach ($hmatches[1] as $hmatch) {
$tag = common_canonical_tag($hmatch[0]);
$tagged = Profile_tag::getTagged($sender->id, $tag);
$url = common_local_url('subscriptions',
array('nickname' => $sender->nickname,
'tag' => $tag));
$mentions[] = array('mentioned' => $tagged,
'text' => $hmatch[0],
'position' => $hmatch[1],
'url' => $url);
}
Event::handle('EndFindMentions', array($sender, $text, &$mentions));
}
return $mentions;
}
function common_render_text($text) function common_render_text($text)
{ {
$r = htmlspecialchars($text); $r = htmlspecialchars($text);
@ -656,37 +791,6 @@ function common_valid_profile_tag($str)
return preg_match('/^[A-Za-z0-9_\-\.]{1,64}$/', $str); return preg_match('/^[A-Za-z0-9_\-\.]{1,64}$/', $str);
} }
function common_at_link($sender_id, $nickname)
{
$sender = Profile::staticGet($sender_id);
if (!$sender) {
return $nickname;
}
$recipient = common_relative_profile($sender, common_canonical_nickname($nickname));
if ($recipient) {
$user = User::staticGet('id', $recipient->id);
if ($user) {
$url = common_local_url('userbyid', array('id' => $user->id));
} else {
$url = $recipient->profileurl;
}
$xs = new XMLStringer(false);
$attrs = array('href' => $url,
'class' => 'url');
if (!empty($recipient->fullname)) {
$attrs['title'] = $recipient->fullname . ' (' . $recipient->nickname . ')';
}
$xs->elementStart('span', 'vcard');
$xs->elementStart('a', $attrs);
$xs->element('span', 'fn nickname', $nickname);
$xs->elementEnd('a');
$xs->elementEnd('span');
return $xs->getString();
} else {
return $nickname;
}
}
function common_group_link($sender_id, $nickname) function common_group_link($sender_id, $nickname)
{ {
$sender = Profile::staticGet($sender_id); $sender = Profile::staticGet($sender_id);
@ -709,29 +813,6 @@ function common_group_link($sender_id, $nickname)
} }
} }
function common_at_hash_link($sender_id, $tag)
{
$user = User::staticGet($sender_id);
if (!$user) {
return $tag;
}
$tagged = Profile_tag::getTagged($user->id, common_canonical_tag($tag));
if ($tagged) {
$url = common_local_url('subscriptions',
array('nickname' => $user->nickname,
'tag' => $tag));
$xs = new XMLStringer();
$xs->elementStart('span', 'tag');
$xs->element('a', array('href' => $url,
'rel' => $tag),
$tag);
$xs->elementEnd('span');
return $xs->getString();
} else {
return $tag;
}
}
function common_relative_profile($sender, $nickname, $dt=null) function common_relative_profile($sender, $nickname, $dt=null)
{ {
// Try to find profiles this profile is subscribed to that have this nickname // Try to find profiles this profile is subscribed to that have this nickname
@ -1022,12 +1103,16 @@ function common_enqueue_notice($notice)
return true; return true;
} }
function common_broadcast_profile($profile) /**
* Broadcast profile updates to OMB and other remote subscribers.
*
* Since this may be slow with a lot of subscribers or bad remote sites,
* this is run through the background queues if possible.
*/
function common_broadcast_profile(Profile $profile)
{ {
// XXX: optionally use a queue system like http://code.google.com/p/microapps/wiki/NQDQ $qm = QueueManager::get();
require_once(INSTALLDIR.'/lib/omb.php'); $qm->enqueue($profile, "profile");
omb_broadcast_profile($profile);
// XXX: Other broadcasts...?
return true; return true;
} }

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-14 20:05+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-14 20:05:58+0000\n" "PO-Revision-Date: 2010-02-24 23:50:01+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 (r62476); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -62,7 +62,7 @@ msgstr "عطّل التسجيل الجديد."
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -100,7 +100,6 @@ msgstr "لا صفحة كهذه"
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "لا مستخدم كهذا." msgstr "لا مستخدم كهذا."
@ -185,11 +184,11 @@ msgstr ""
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:182 actions/apitimelinehome.php:184 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:194 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "لم يتم العثور على وسيلة API." msgstr "لم يتم العثور على وسيلة API."
@ -486,7 +485,7 @@ msgstr "حجم غير صالح."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -738,7 +737,7 @@ msgid "Preview"
msgstr "عاين" msgstr "عاين"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "احذف" msgstr "احذف"
@ -918,7 +917,7 @@ msgstr "أنت لست مالك هذا التطبيق."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -947,7 +946,7 @@ 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -976,7 +975,7 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "لا تحذف هذا الإشعار" msgstr "لا تحذف هذا الإشعار"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "احذف هذا الإشعار" msgstr "احذف هذا الإشعار"
@ -1214,7 +1213,7 @@ msgstr ""
msgid "Could not update group." msgid "Could not update group."
msgstr "تعذر تحديث المجموعة." msgstr "تعذر تحديث المجموعة."
#: actions/editgroup.php:259 classes/User_group.php:423 #: actions/editgroup.php:259 classes/User_group.php:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "تعذّر إنشاء الكنى." msgstr "تعذّر إنشاء الكنى."
@ -2212,7 +2211,7 @@ msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "ليس نسق بيانات مدعوم." msgstr "ليس نسق بيانات مدعوم."
@ -2645,23 +2644,23 @@ msgstr ""
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "وسم غير صالح: \"%s\"" msgstr "وسم غير صالح: \"%s\""
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "لم يمكن حفظ تفضيلات الموقع." msgstr "لم يمكن حفظ تفضيلات الموقع."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "تعذّر حفظ الملف الشخصي." msgstr "تعذّر حفظ الملف الشخصي."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "تعذّر حفظ الوسوم." msgstr "تعذّر حفظ الوسوم."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "حُفظت الإعدادات." msgstr "حُفظت الإعدادات."
@ -3020,7 +3019,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "" msgstr ""
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "اشترك" msgstr "اشترك"
@ -3056,7 +3055,7 @@ msgstr "لا يمكنك تكرار ملاحظتك الشخصية."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "أنت كررت هذه الملاحظة بالفعل." msgstr "أنت كررت هذه الملاحظة بالفعل."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "مكرر" msgstr "مكرر"
@ -3726,15 +3725,25 @@ msgstr ""
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "" msgstr ""
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "تعذّر حفظ الاشتراك." msgstr "تعذّر حفظ الاشتراك."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "ليس مُستخدمًا محليًا." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "لا ملف كهذا."
#: actions/subscribe.php:117
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "مُشترك" msgstr "مُشترك"
@ -3794,7 +3803,7 @@ msgstr "هؤلاء الأشخاص الذي تستمع إليهم."
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "هؤلاء الأشخاص الذي يستمع %s إليهم." msgstr "هؤلاء الأشخاص الذي يستمع %s إليهم."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -3804,16 +3813,16 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "" msgstr ""
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "جابر" msgstr "جابر"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "رسائل قصيرة" msgstr "رسائل قصيرة"
@ -4207,58 +4216,77 @@ msgstr ""
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "" msgstr ""
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "مشكلة في حفظ الإشعار. طويل جدًا." msgstr "مشكلة في حفظ الإشعار. طويل جدًا."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "مشكلة في حفظ الإشعار. مستخدم غير معروف." msgstr "مشكلة في حفظ الإشعار. مستخدم غير معروف."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "مشكلة أثناء حفظ الإشعار." msgstr "مشكلة أثناء حفظ الإشعار."
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy #, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "مشكلة أثناء حفظ الإشعار." msgstr "مشكلة أثناء حفظ الإشعار."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr ""
#: 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"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr ""
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr "مُشترك أصلا!"
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "لقد منعك المستخدم."
#: classes/Subscription.php:157
msgid "Not subscribed!"
msgstr "غير مشترك!"
#: classes/Subscription.php:163
msgid "Couldn't delete self-subscription."
msgstr "لم يمكن حذف اشتراك ذاتي."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "تعذّر حذف الاشتراك."
#: classes/User.php:372
#, php-format #, php-format
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:413 #: classes/User_group.php:423
msgid "Could not create group." msgid "Could not create group."
msgstr "تعذّر إنشاء المجموعة." msgstr "تعذّر إنشاء المجموعة."
#: classes/User_group.php:442 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "تعذّر ضبط عضوية المجموعة." msgstr "تعذّر ضبط عضوية المجموعة."
@ -4459,26 +4487,38 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "الرخصة." msgstr "الرخصة."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "بعد" msgstr "بعد"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "قبل" msgstr "قبل"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "" msgstr ""
@ -4775,54 +4815,64 @@ msgstr "خطأ أثناء حفظ الإشعار."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "" msgstr ""
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
#, fuzzy
msgid "No such user"
msgstr "لا مستخدم كهذا."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "مُشترك ب%s" msgstr "مُشترك ب%s"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "" msgstr ""
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "" msgstr ""
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "" msgstr ""
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "" msgstr ""
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "" msgstr ""
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "" msgstr ""
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "" msgstr ""
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "ألغِ الاشتراك"
#: lib/command.php:709
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "لست مُشتركًا بأي أحد." msgstr "لست مُشتركًا بأي أحد."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "لست مشتركًا بأحد." msgstr[0] "لست مشتركًا بأحد."
@ -4832,11 +4882,11 @@ msgstr[3] "أنت مشترك بهؤلاء الأشخاص:"
msgstr[4] "" msgstr[4] ""
msgstr[5] "" msgstr[5] ""
#: lib/command.php:690 #: lib/command.php:731
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "لا أحد مشترك بك." msgstr "لا أحد مشترك بك."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "لا أحد مشترك بك." msgstr[0] "لا أحد مشترك بك."
@ -4846,11 +4896,11 @@ msgstr[3] "هؤلاء الأشخاص مشتركون بك:"
msgstr[4] "" msgstr[4] ""
msgstr[5] "" msgstr[5] ""
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "لست عضوًا في أي مجموعة." msgstr "لست عضوًا في أي مجموعة."
#: lib/command.php:714 #: lib/command.php:755
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] "لست عضوًا في أي مجموعة." msgstr[0] "لست عضوًا في أي مجموعة."
@ -4860,7 +4910,7 @@ msgstr[3] "أنت عضو في هذه المجموعات:"
msgstr[4] "" msgstr[4] ""
msgstr[5] "" msgstr[5] ""
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -4874,6 +4924,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -4901,19 +4952,19 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "" msgstr ""
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "اذهب إلى المُثبّت." msgstr "اذهب إلى المُثبّت."
@ -5329,7 +5380,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "من" msgstr "من"
@ -5449,48 +5500,48 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "ش" msgstr "ش"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "ج" msgstr "ج"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "ر" msgstr "ر"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "غ" msgstr "غ"
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "في" msgstr "في"
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "في السياق" msgstr "في السياق"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "مكرر بواسطة" msgstr "مكرر بواسطة"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "رُد على هذا الإشعار" msgstr "رُد على هذا الإشعار"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "رُد" msgstr "رُد"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
msgid "Notice repeated" msgid "Notice repeated"
msgstr "الإشعار مكرر" msgstr "الإشعار مكرر"
@ -5522,10 +5573,6 @@ msgstr "خطأ أثناء إدراج الملف الشخصي البعيد"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "ضاعف الإشعار" msgstr "ضاعف الإشعار"
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr ""
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "تعذّر إدراج اشتراك جديد." msgstr "تعذّر إدراج اشتراك جديد."
@ -5702,34 +5749,6 @@ msgstr "الأشخاص المشتركون ب%s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "المجموعات التي %s عضو فيها" msgstr "المجموعات التي %s عضو فيها"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr "مُشترك أصلا!"
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "لقد منعك المستخدم."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "تعذّر الاشتراك."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr ""
#: lib/subs.php:137
msgid "Not subscribed!"
msgstr "غير مشترك!"
#: lib/subs.php:142
msgid "Couldn't delete self-subscription."
msgstr "لم يمكن حذف اشتراك ذاتي."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "تعذّر حذف الاشتراك."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -5780,67 +5799,67 @@ msgstr "عدّل الأفتار"
msgid "User actions" msgid "User actions"
msgstr "تصرفات المستخدم" msgstr "تصرفات المستخدم"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "عدّل إعدادات الملف الشخصي" msgstr "عدّل إعدادات الملف الشخصي"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "عدّل" msgstr "عدّل"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "أرسل رسالة مباشرة إلى هذا المستخدم" msgstr "أرسل رسالة مباشرة إلى هذا المستخدم"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "رسالة" msgstr "رسالة"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:871 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "قبل لحظات قليلة" msgstr "قبل لحظات قليلة"
#: lib/util.php:873 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "قبل دقيقة تقريبًا" msgstr "قبل دقيقة تقريبًا"
#: lib/util.php:875 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "" msgstr ""
#: lib/util.php:877 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "قبل ساعة تقريبًا" msgstr "قبل ساعة تقريبًا"
#: lib/util.php:879 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "" msgstr ""
#: lib/util.php:881 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "قبل يوم تقريبا" msgstr "قبل يوم تقريبا"
#: lib/util.php:883 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "" msgstr ""
#: lib/util.php:885 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "قبل شهر تقريبًا" msgstr "قبل شهر تقريبًا"
#: lib/util.php:887 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "" msgstr ""
#: lib/util.php:889 #: lib/util.php:970
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-14 20:05+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-14 20:06:01+0000\n" "PO-Revision-Date: 2010-02-24 23:50:08+0000\n"
"Language-Team: Egyptian Spoken Arabic\n" "Language-Team: Egyptian Spoken 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 (r62476); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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: arz\n" "X-Language-Code: arz\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -65,7 +65,7 @@ msgstr "عطّل التسجيل الجديد."
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -104,7 +104,6 @@ msgstr "لا صفحه كهذه"
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "لا مستخدم كهذا." msgstr "لا مستخدم كهذا."
@ -189,13 +188,13 @@ msgstr ""
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:182 actions/apitimelinehome.php:184 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:194 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "لم يتم العثور على وسيله API." msgstr "الـ API method مش موجوده."
#: actions/apiaccountupdatedeliverydevice.php:85 #: actions/apiaccountupdatedeliverydevice.php:85
#: actions/apiaccountupdateprofile.php:89 #: actions/apiaccountupdateprofile.php:89
@ -263,7 +262,7 @@ msgstr "تعذّر تحديث تصميمك."
#: actions/apiblockcreate.php:105 #: actions/apiblockcreate.php:105
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "لا يمكنك منع نفسك!" msgstr "ما ينفعش تمنع نفسك!"
#: actions/apiblockcreate.php:126 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
@ -490,7 +489,7 @@ msgstr "حجم غير صالح."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -591,11 +590,11 @@ msgstr "لا إشعار كهذا."
#: actions/apistatusesretweet.php:83 #: actions/apistatusesretweet.php:83
msgid "Cannot repeat your own notice." msgid "Cannot repeat your own notice."
msgstr "لا يمكنك تكرار ملحوظتك الخاصه." msgstr "مش نافعه تتكرر الملاحظتك بتاعتك."
#: actions/apistatusesretweet.php:91 #: actions/apistatusesretweet.php:91
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."
@ -742,7 +741,7 @@ msgid "Preview"
msgstr "عاين" msgstr "عاين"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "احذف" msgstr "احذف"
@ -922,7 +921,7 @@ msgstr "انت مش بتملك الapplication دى."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -951,7 +950,7 @@ 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -980,7 +979,7 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "لا تحذف هذا الإشعار" msgstr "لا تحذف هذا الإشعار"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "احذف هذا الإشعار" msgstr "احذف هذا الإشعار"
@ -1218,7 +1217,7 @@ msgstr ""
msgid "Could not update group." msgid "Could not update group."
msgstr "تعذر تحديث المجموعه." msgstr "تعذر تحديث المجموعه."
#: actions/editgroup.php:259 classes/User_group.php:423 #: actions/editgroup.php:259 classes/User_group.php:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "تعذّر إنشاء الكنى." msgstr "تعذّر إنشاء الكنى."
@ -1468,11 +1467,11 @@ msgstr "اختيار لبعض المستخدمين المتميزين على %s"
#: actions/file.php:34 #: actions/file.php:34
msgid "No notice ID." msgid "No notice ID."
msgstr "لا رقم ملاحظه." msgstr "ما فيش ملاحظة ID."
#: actions/file.php:38 #: actions/file.php:38
msgid "No notice." msgid "No notice."
msgstr "لا ملاحظه." msgstr "ما فيش ملاحظه."
#: actions/file.php:42 #: actions/file.php:42
msgid "No attachments." msgid "No attachments."
@ -1480,7 +1479,7 @@ msgstr "لا مرفقات."
#: actions/file.php:51 #: actions/file.php:51
msgid "No uploaded attachments." msgid "No uploaded attachments."
msgstr "لا مرفقات مرفوعه." msgstr "ما فيش فايلات اتعمللها upload."
#: actions/finishremotesubscribe.php:69 #: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!" msgid "Not expecting this response!"
@ -2214,7 +2213,7 @@ msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr " مش نظام بيانات مدعوم." msgstr " مش نظام بيانات مدعوم."
@ -2646,23 +2645,23 @@ msgstr ""
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "وسم غير صالح: \"%s\"" msgstr "وسم غير صالح: \"%s\""
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "لم يمكن حفظ تفضيلات الموقع." msgstr "لم يمكن حفظ تفضيلات الموقع."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "تعذّر حفظ الملف الشخصى." msgstr "تعذّر حفظ الملف الشخصى."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "تعذّر حفظ الوسوم." msgstr "تعذّر حفظ الوسوم."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "حُفظت الإعدادات." msgstr "حُفظت الإعدادات."
@ -3021,7 +3020,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "" msgstr ""
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "اشترك" msgstr "اشترك"
@ -3047,17 +3046,17 @@ msgstr ""
#: actions/repeat.php:64 actions/repeat.php:71 #: actions/repeat.php:64 actions/repeat.php:71
msgid "No notice specified." msgid "No notice specified."
msgstr "لا ملاحظه محدده." msgstr "ما فيش ملاحظه متحدده."
#: actions/repeat.php:76 #: actions/repeat.php:76
msgid "You can't repeat your own notice." msgid "You can't repeat your own notice."
msgstr "لا يمكنك تكرار ملاحظتك الشخصيه." msgstr "ما ينفعش تكرر الملاحظه بتاعتك."
#: actions/repeat.php:90 #: actions/repeat.php:90
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "أنت كررت هذه الملاحظه بالفعل." msgstr "انت عيدت الملاحظه دى فعلا."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "مكرر" msgstr "مكرر"
@ -3727,15 +3726,25 @@ msgstr ""
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "" msgstr ""
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "تعذّر حفظ الاشتراك." msgstr "تعذّر حفظ الاشتراك."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "ليس مُستخدمًا محليًا." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "لا ملف كهذا."
#: actions/subscribe.php:117
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "مُشترك" msgstr "مُشترك"
@ -3795,7 +3804,7 @@ msgstr "هؤلاء الأشخاص الذى تستمع إليهم."
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "هؤلاء الأشخاص الذى يستمع %s إليهم." msgstr "هؤلاء الأشخاص الذى يستمع %s إليهم."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -3805,16 +3814,16 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "" msgstr ""
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "جابر" msgstr "جابر"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "رسائل قصيرة" msgstr "رسائل قصيرة"
@ -3858,7 +3867,7 @@ msgstr "صورة"
#: actions/tagother.php:141 #: actions/tagother.php:141
msgid "Tag user" msgid "Tag user"
msgstr "اوسم المستخدم" msgstr "اعمل tag لليوزر"
#: actions/tagother.php:151 #: actions/tagother.php:151
msgid "" msgid ""
@ -3893,7 +3902,7 @@ msgstr "لم تمنع هذا المستخدم."
#: actions/unsandbox.php:72 #: actions/unsandbox.php:72
msgid "User is not sandboxed." msgid "User is not sandboxed."
msgstr "المستخدم ليس فى صندوق الرمل." msgstr "اليوزر مش فى السبوره."
#: actions/unsilence.php:72 #: actions/unsilence.php:72
msgid "User is not silenced." msgid "User is not silenced."
@ -4189,7 +4198,7 @@ msgstr "الخروج من الجروپ فشل."
#: classes/Login_token.php:76 #: classes/Login_token.php:76
#, php-format #, php-format
msgid "Could not create login token for %s" msgid "Could not create login token for %s"
msgstr "لم يمكن إنشاء توكن الولوج ل%s" msgstr "ما نفعش يتعمل امارة تسجيل دخول لـ %s"
#: classes/Message.php:45 #: classes/Message.php:45
msgid "You are banned from sending direct messages." msgid "You are banned from sending direct messages."
@ -4208,58 +4217,77 @@ msgstr ""
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "" msgstr ""
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "مشكله فى حفظ الإشعار. طويل جدًا." msgstr "مشكله فى حفظ الإشعار. طويل جدًا."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "مشكله فى حفظ الإشعار. مستخدم غير معروف." msgstr "مشكله فى حفظ الإشعار. مستخدم غير معروف."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "مشكله أثناء حفظ الإشعار." msgstr "مشكله أثناء حفظ الإشعار."
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy #, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "مشكله أثناء حفظ الإشعار." msgstr "مشكله أثناء حفظ الإشعار."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr ""
#: 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"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr ""
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr "مُشترك أصلا!"
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "لقد منعك المستخدم."
#: classes/Subscription.php:157
msgid "Not subscribed!"
msgstr "غير مشترك!"
#: classes/Subscription.php:163
msgid "Couldn't delete self-subscription."
msgstr "ما نفعش يمسح الاشتراك الشخصى."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "تعذّر حذف الاشتراك."
#: classes/User.php:372
#, php-format #, php-format
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:413 #: classes/User_group.php:423
msgid "Could not create group." msgid "Could not create group."
msgstr "تعذّر إنشاء المجموعه." msgstr "تعذّر إنشاء المجموعه."
#: classes/User_group.php:442 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "تعذّر ضبط عضويه المجموعه." msgstr "تعذّر ضبط عضويه المجموعه."
@ -4460,26 +4488,38 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "الرخصه." msgstr "الرخصه."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "بعد" msgstr "بعد"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "قبل" msgstr "قبل"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "" msgstr ""
@ -4776,54 +4816,64 @@ msgstr "خطأ أثناء حفظ الإشعار."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "" msgstr ""
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
#, fuzzy
msgid "No such user"
msgstr "لا مستخدم كهذا."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "مُشترك ب%s" msgstr "مُشترك ب%s"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "" msgstr ""
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "" msgstr ""
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "" msgstr ""
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "" msgstr ""
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "" msgstr ""
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "" msgstr ""
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "" msgstr ""
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "ألغِ الاشتراك"
#: lib/command.php:709
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "لست مُشتركًا بأى أحد." msgstr "لست مُشتركًا بأى أحد."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "لست مشتركًا بأحد." msgstr[0] "لست مشتركًا بأحد."
@ -4833,11 +4883,11 @@ msgstr[3] "أنت مشترك بهؤلاء الأشخاص:"
msgstr[4] "" msgstr[4] ""
msgstr[5] "" msgstr[5] ""
#: lib/command.php:690 #: lib/command.php:731
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "لا أحد مشترك بك." msgstr "لا أحد مشترك بك."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "لا أحد مشترك بك." msgstr[0] "لا أحد مشترك بك."
@ -4847,11 +4897,11 @@ msgstr[3] "هؤلاء الأشخاص مشتركون بك:"
msgstr[4] "" msgstr[4] ""
msgstr[5] "" msgstr[5] ""
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "لست عضوًا فى أى مجموعه." msgstr "لست عضوًا فى أى مجموعه."
#: lib/command.php:714 #: lib/command.php:755
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] "لست عضوًا فى أى مجموعه." msgstr[0] "لست عضوًا فى أى مجموعه."
@ -4861,7 +4911,7 @@ msgstr[3] "أنت عضو فى هذه المجموعات:"
msgstr[4] "" msgstr[4] ""
msgstr[5] "" msgstr[5] ""
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -4875,6 +4925,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -4902,19 +4953,19 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "" msgstr ""
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "اذهب إلى المُثبّت." msgstr "اذهب إلى المُثبّت."
@ -5320,7 +5371,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "من" msgstr "من"
@ -5440,48 +5491,48 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "ش" msgstr "ش"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "ج" msgstr "ج"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "ر" msgstr "ر"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "غ" msgstr "غ"
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "في" msgstr "في"
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "فى السياق" msgstr "فى السياق"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "مكرر بواسطة" msgstr "متكرر من"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "رُد على هذا الإشعار" msgstr "رُد على هذا الإشعار"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "رُد" msgstr "رُد"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
msgid "Notice repeated" msgid "Notice repeated"
msgstr "الإشعار مكرر" msgstr "الإشعار مكرر"
@ -5513,10 +5564,6 @@ msgstr "خطأ أثناء إدراج الملف الشخصى البعيد"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "ضاعف الإشعار" msgstr "ضاعف الإشعار"
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr ""
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "تعذّر إدراج اشتراك جديد." msgstr "تعذّر إدراج اشتراك جديد."
@ -5693,34 +5740,6 @@ msgstr "الأشخاص المشتركون ب%s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "المجموعات التى %s عضو فيها" msgstr "المجموعات التى %s عضو فيها"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr "مُشترك أصلا!"
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "لقد منعك المستخدم."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "تعذّر الاشتراك."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr ""
#: lib/subs.php:137
msgid "Not subscribed!"
msgstr "غير مشترك!"
#: lib/subs.php:142
msgid "Couldn't delete self-subscription."
msgstr "لم يمكن حذف اشتراك ذاتى."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "تعذّر حذف الاشتراك."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -5771,67 +5790,67 @@ msgstr "عدّل الأفتار"
msgid "User actions" msgid "User actions"
msgstr "تصرفات المستخدم" msgstr "تصرفات المستخدم"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "عدّل إعدادات الملف الشخصي" msgstr "عدّل إعدادات الملف الشخصي"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "عدّل" msgstr "عدّل"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "أرسل رساله مباشره إلى هذا المستخدم" msgstr "أرسل رساله مباشره إلى هذا المستخدم"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "رسالة" msgstr "رسالة"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:871 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "قبل لحظات قليلة" msgstr "قبل لحظات قليلة"
#: lib/util.php:873 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "قبل دقيقه تقريبًا" msgstr "قبل دقيقه تقريبًا"
#: lib/util.php:875 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "" msgstr ""
#: lib/util.php:877 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "قبل ساعه تقريبًا" msgstr "قبل ساعه تقريبًا"
#: lib/util.php:879 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "" msgstr ""
#: lib/util.php:881 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "قبل يوم تقريبا" msgstr "قبل يوم تقريبا"
#: lib/util.php:883 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "" msgstr ""
#: lib/util.php:885 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "قبل شهر تقريبًا" msgstr "قبل شهر تقريبًا"
#: lib/util.php:887 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "" msgstr ""
#: lib/util.php:889 #: lib/util.php:970
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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:14:17+0000\n" "PO-Revision-Date: 2010-02-24 23:50:11+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -25,9 +25,8 @@ 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
msgid "Registration" msgid "Registration"
@ -62,7 +61,7 @@ msgstr "Изключване на новите регистрации."
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -70,9 +69,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
@ -101,7 +99,6 @@ msgstr "Няма такака страница."
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Няма такъв потребител" msgstr "Няма такъв потребител"
@ -163,8 +160,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."
@ -185,12 +182,12 @@ msgstr "Бележки от %1$s и приятели в %2$s."
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "Не е открит методът в API." msgstr "Не е открит методът в API."
@ -497,7 +494,7 @@ msgstr "Неправилен размер."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -638,7 +635,7 @@ msgstr "Неподдържан формат."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%s / Отбелязани като любими от %s" msgstr "%s / Отбелязани като любими от %s"
#: actions/apitimelinefavorites.php:120 #: actions/apitimelinefavorites.php:117
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s updates favorited by %2$s / %2$s." msgid "%1$s updates favorited by %2$s / %2$s."
msgstr "%s бележки отбелязани като любими от %s / %s." msgstr "%s бележки отбелязани като любими от %s / %s."
@ -649,7 +646,7 @@ msgstr "%s бележки отбелязани като любими от %s / %
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!"
@ -665,12 +662,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 "" msgstr ""
@ -680,7 +677,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"
@ -690,7 +687,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
#, fuzzy, php-format #, fuzzy, 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."
@ -753,7 +750,7 @@ msgid "Preview"
msgstr "Преглед" msgstr "Преглед"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Изтриване" msgstr "Изтриване"
@ -936,7 +933,7 @@ msgstr "Не членувате в тази група."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Имаше проблем със сесията ви в сайта." msgstr "Имаше проблем със сесията ви в сайта."
@ -965,7 +962,7 @@ 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -994,7 +991,7 @@ msgstr "Наистина ли искате да изтриете тази бел
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Да не се изтрива бележката" msgstr "Да не се изтрива бележката"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Изтриване на бележката" msgstr "Изтриване на бележката"
@ -1248,7 +1245,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:433
#, fuzzy #, fuzzy
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Грешка при отбелязване като любима." msgstr "Грешка при отбелязване като любима."
@ -1258,7 +1255,6 @@ msgid "Options saved."
msgstr "Настройките са запазени." msgstr "Настройките са запазени."
#: actions/emailsettings.php:60 #: actions/emailsettings.php:60
#, fuzzy
msgid "Email settings" msgid "Email settings"
msgstr "Настройки на е-поща" msgstr "Настройки на е-поща"
@ -1297,9 +1293,8 @@ msgid "Cancel"
msgstr "Отказ" msgstr "Отказ"
#: actions/emailsettings.php:121 #: actions/emailsettings.php:121
#, fuzzy
msgid "Email address" msgid "Email address"
msgstr "Адреси на е-поща" msgstr "Адрес на е-поща"
#: actions/emailsettings.php:123 #: actions/emailsettings.php:123
msgid "Email address, like \"UserName@example.org\"" msgid "Email address, like \"UserName@example.org\""
@ -2079,7 +2074,7 @@ msgstr "Вход"
#: actions/login.php:227 #: actions/login.php:227
msgid "Login to site" msgid "Login to site"
msgstr "" msgstr "Вход в сайта"
#: actions/login.php:236 actions/register.php:478 #: actions/login.php:236 actions/register.php:478
msgid "Remember me" msgid "Remember me"
@ -2328,7 +2323,7 @@ msgid "Only "
msgstr "Само " msgstr "Само "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Неподдържан формат на данните" msgstr "Неподдържан формат на данните"
@ -2771,24 +2766,24 @@ msgstr "Името на езика е твърде дълго (може да е
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Неправилен етикет: \"%s\"" msgstr "Неправилен етикет: \"%s\""
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
#, fuzzy #, fuzzy
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Грешка при запазване етикетите." msgstr "Грешка при запазване етикетите."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Грешка при запазване на профила." msgstr "Грешка при запазване на профила."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Грешка при запазване етикетите." msgstr "Грешка при запазване етикетите."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Настройките са запазени." msgstr "Настройките са запазени."
@ -3168,7 +3163,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "Адрес на профила ви в друга, съвместима услуга за микроблогване" msgstr "Адрес на профила ви в друга, съвместима услуга за микроблогване"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Абониране" msgstr "Абониране"
@ -3206,7 +3201,7 @@ msgstr "Не можете да повтаряте собствена бележ
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Вече сте повторили тази бележка." msgstr "Вече сте повторили тази бележка."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "Повторено" msgstr "Повторено"
@ -3267,9 +3262,8 @@ msgid "Replies to %1$s on %2$s!"
msgstr "Отговори до %1$s в %2$s!" msgstr "Отговори до %1$s в %2$s!"
#: actions/rsd.php:146 actions/version.php:157 #: actions/rsd.php:146 actions/version.php:157
#, fuzzy
msgid "StatusNet" msgid "StatusNet"
msgstr "Бележката е изтрита." msgstr "StatusNet"
#: actions/sandbox.php:65 actions/unsandbox.php:65 #: actions/sandbox.php:65 actions/unsandbox.php:65
#, fuzzy #, fuzzy
@ -3564,9 +3558,9 @@ msgid " tagged %s"
msgstr "Бележки с етикет %s" msgstr "Бележки с етикет %s"
#: actions/showstream.php:79 #: actions/showstream.php:79
#, fuzzy, php-format #, php-format
msgid "%1$s, page %2$d" msgid "%1$s, page %2$d"
msgstr "Блокирани за %s, страница %d" msgstr "%1$s, страница %2$d"
#: actions/showstream.php:122 #: actions/showstream.php:122
#, fuzzy, php-format #, fuzzy, php-format
@ -3785,7 +3779,6 @@ msgid "How long users must wait (in seconds) to post the same thing again."
msgstr "" msgstr ""
#: actions/smssettings.php:58 #: actions/smssettings.php:58
#, fuzzy
msgid "SMS settings" msgid "SMS settings"
msgstr "Настройки за SMS" msgstr "Настройки за SMS"
@ -3816,7 +3809,6 @@ msgid "Enter the code you received on your phone."
msgstr "Въведете кода, който получихте по телефона." msgstr "Въведете кода, който получихте по телефона."
#: actions/smssettings.php:138 #: actions/smssettings.php:138
#, fuzzy
msgid "SMS phone number" msgid "SMS phone number"
msgstr "Телефонен номер за SMS" msgstr "Телефонен номер за SMS"
@ -3891,16 +3883,27 @@ msgstr "Не е въведен код."
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "Не сте абонирани за този профил" msgstr "Не сте абонирани за този профил"
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
#, fuzzy #, fuzzy
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Грешка при създаване на нов абонамент." msgstr "Грешка при създаване на нов абонамент."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "Не е локален потребител." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Няма такъв файл."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Не сте абонирани за този профил"
#: actions/subscribe.php:145
#, fuzzy #, fuzzy
msgid "Subscribed" msgid "Subscribed"
msgstr "Абониране" msgstr "Абониране"
@ -3961,7 +3964,7 @@ msgstr "Няма хора, чийто бележки четете."
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "Хора, чийто бележки %s чете." msgstr "Хора, чийто бележки %s чете."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -3971,16 +3974,16 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%s не получава ничии бележки." msgstr "%s не получава ничии бележки."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber" msgstr "Jabber"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS" msgstr "SMS"
@ -4279,9 +4282,8 @@ msgid "%1$s groups, page %2$d"
msgstr "Членове на групата %s, страница %d" msgstr "Членове на групата %s, страница %d"
#: actions/usergroups.php:130 #: actions/usergroups.php:130
#, fuzzy
msgid "Search for more groups" msgid "Search for more groups"
msgstr "Търсене за хора или бележки" msgstr "Търсене на още групи"
#: actions/usergroups.php:153 #: actions/usergroups.php:153
#, php-format #, php-format
@ -4399,23 +4401,23 @@ msgstr "Грешка при обновяване на бележката с но
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "" msgstr ""
#: classes/Notice.php:214 #: classes/Notice.php:222
#, fuzzy #, fuzzy
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "Проблем при записване на бележката." msgstr "Проблем при записване на бележката."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Грешка при записване на бележката. Непознат потребител." msgstr "Грешка при записване на бележката. Непознат потребител."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " "Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте "
"отново след няколко минути." "отново след няколко минути."
#: classes/Notice.php:229 #: classes/Notice.php:237
#, fuzzy #, fuzzy
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
@ -4424,39 +4426,61 @@ msgstr ""
"Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте " "Твърде много бележки за кратко време. Спрете, поемете дъх и публикувайте "
"отново след няколко минути." "отново след няколко минути."
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Забранено ви е да публикувате бележки в този сайт." msgstr "Забранено ви е да публикувате бележки в този сайт."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Проблем при записване на бележката." msgstr "Проблем при записване на бележката."
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy #, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Проблем при записване на бележката." msgstr "Проблем при записване на бележката."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Грешка в базата от данни — отговор при вмъкването: %s"
#: 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"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
#, fuzzy
msgid "You have been banned from subscribing."
msgstr "Потребителят е забранил да се абонирате за него."
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr ""
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "Потребителят ви е блокирал."
#: classes/Subscription.php:157
#, fuzzy
msgid "Not subscribed!"
msgstr "Не сте абонирани!"
#: classes/Subscription.php:163
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Грешка при изтриване на абонамента."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Грешка при изтриване на абонамента."
#: classes/User.php:372
#, php-format #, php-format
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:423
msgid "Could not create group." msgid "Could not create group."
msgstr "Грешка при създаване на групата." msgstr "Грешка при създаване на групата."
#: classes/User_group.php:409 #: classes/User_group.php:452
#, fuzzy #, fuzzy
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Грешка при създаване на нов абонамент." msgstr "Грешка при създаване на нов абонамент."
@ -4491,9 +4515,9 @@ msgid "Other options"
msgstr "Други настройки" msgstr "Други настройки"
#: lib/action.php:144 #: lib/action.php:144
#, fuzzy, php-format #, php-format
msgid "%1$s - %2$s" msgid "%1$s - %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s - %2$s"
#: lib/action.php:159 #: lib/action.php:159
msgid "Untitled page" msgid "Untitled page"
@ -4663,26 +4687,38 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "Всички " msgstr "Всички "
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "лиценз." msgstr "лиценз."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "Страниране" msgstr "Страниране"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "След" msgstr "След"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "Преди" msgstr "Преди"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "Не можете да променяте този сайт." msgstr "Не можете да променяте този сайт."
@ -4993,80 +5029,89 @@ msgstr "Грешка при записване на бележката."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "Уточнете името на потребителя, за когото се абонирате." msgstr "Уточнете името на потребителя, за когото се абонирате."
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "Няма такъв потребител"
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "Абонирани сте за %s." msgstr "Абонирани сте за %s."
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "Уточнете името на потребителя, от когото се отписвате." msgstr "Уточнете името на потребителя, от когото се отписвате."
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "Отписани сте от %s." msgstr "Отписани сте от %s."
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "Командата все още не се поддържа." msgstr "Командата все още не се поддържа."
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "Уведомлението е изключено." msgstr "Уведомлението е изключено."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "Грешка при изключване на уведомлението." msgstr "Грешка при изключване на уведомлението."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "Уведомлението е включено." msgstr "Уведомлението е включено."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "Грешка при включване на уведомлението." msgstr "Грешка при включване на уведомлението."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Отписани сте от %s."
#: lib/command.php:709
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "Не сте абонирани за никого." msgstr "Не сте абонирани за никого."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Вече сте абонирани за следните потребители:" msgstr[0] "Вече сте абонирани за следните потребители:"
msgstr[1] "Вече сте абонирани за следните потребители:" msgstr[1] "Вече сте абонирани за следните потребители:"
#: lib/command.php:690 #: lib/command.php:731
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Никой не е абониран за вас." msgstr "Никой не е абониран за вас."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Грешка при абониране на друг потребител за вас." msgstr[0] "Грешка при абониране на друг потребител за вас."
msgstr[1] "Грешка при абониране на друг потребител за вас." msgstr[1] "Грешка при абониране на друг потребител за вас."
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "Не членувате в нито една група." msgstr "Не членувате в нито една група."
#: lib/command.php:714 #: lib/command.php:755
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] "Не членувате в тази група." msgstr[0] "Не членувате в тази група."
msgstr[1] "Не членувате в тази група." msgstr[1] "Не членувате в тази група."
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5080,6 +5125,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5107,19 +5153,19 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Не е открит файл с настройки. " msgstr "Не е открит файл с настройки. "
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Влизане в сайта" msgstr "Влизане в сайта"
@ -5542,7 +5588,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "от" msgstr "от"
@ -5665,48 +5711,48 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "С" msgstr "С"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "Ю" msgstr "Ю"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "И" msgstr "И"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "З" msgstr "З"
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "в контекст" msgstr "в контекст"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "Повторено от" msgstr "Повторено от"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Отговаряне на тази бележка" msgstr "Отговаряне на тази бележка"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "Отговор" msgstr "Отговор"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Бележката е повторена." msgstr "Бележката е повторена."
@ -5739,11 +5785,6 @@ msgstr "Грешка при вмъкване на отдалечен профи
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Изтриване на бележката" msgstr "Изтриване на бележката"
#: lib/oauthstore.php:465 lib/subs.php:48
#, fuzzy
msgid "You have been banned from subscribing."
msgstr "Потребителят е забранил да се абонирате за него."
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Грешка при добавяне на нов абонамент." msgstr "Грешка при добавяне на нов абонамент."
@ -5927,36 +5968,6 @@ msgstr "Абонирани за %s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "Групи, в които участва %s" msgstr "Групи, в които участва %s"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr ""
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "Потребителят ви е блокирал."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "Грешка при абониране."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "Грешка при абониране на друг потребител за вас."
#: lib/subs.php:137
#, fuzzy
msgid "Not subscribed!"
msgstr "Не сте абонирани!"
#: lib/subs.php:142
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Грешка при изтриване на абонамента."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Грешка при изтриване на абонамента."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6009,67 +6020,67 @@ msgstr "Редактиране на аватара"
msgid "User actions" msgid "User actions"
msgstr "Потребителски действия" msgstr "Потребителски действия"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Редактиране на профила" msgstr "Редактиране на профила"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "Редактиране" msgstr "Редактиране"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Изпращате на пряко съобщение до този потребител." msgstr "Изпращате на пряко съобщение до този потребител."
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Съобщение" msgstr "Съобщение"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "преди няколко секунди" msgstr "преди няколко секунди"
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "преди около минута" msgstr "преди около минута"
#: lib/util.php:874 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "преди около %d минути" msgstr "преди около %d минути"
#: lib/util.php:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "преди около час" msgstr "преди около час"
#: lib/util.php:878 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "преди около %d часа" msgstr "преди около %d часа"
#: lib/util.php:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "преди около ден" msgstr "преди около ден"
#: lib/util.php:882 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "преди около %d дни" msgstr "преди около %d дни"
#: lib/util.php:884 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "преди около месец" msgstr "преди около месец"
#: lib/util.php:886 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "преди около %d месеца" msgstr "преди около %d месеца"
#: lib/util.php:888 #: lib/util.php:970
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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:14:20+0000\n" "PO-Revision-Date: 2010-02-24 23:50:15+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -66,7 +66,7 @@ msgstr "Inhabilita els nous registres."
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -105,7 +105,6 @@ msgstr "No existeix la pàgina."
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "No existeix aquest usuari." msgstr "No existeix aquest usuari."
@ -169,8 +168,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "Un mateix i amics" msgstr "Un mateix i amics"
#: 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 "Actualitzacions de %1$s i amics a %2$s!" msgstr "Actualitzacions de %1$s i amics a %2$s!"
@ -191,12 +190,12 @@ msgstr "Actualitzacions de %1$s i amics a %2$s!"
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 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!"
@ -509,7 +508,7 @@ msgstr "Mida invàlida."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -655,7 +654,7 @@ msgstr "El format no està implementat."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%s / Preferits de %s" msgstr "%s / Preferits de %s"
#: actions/apitimelinefavorites.php:120 #: actions/apitimelinefavorites.php:117
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s updates favorited by %2$s / %2$s." msgid "%1$s updates favorited by %2$s / %2$s."
msgstr "%s actualitzacions favorites per %s / %s." msgstr "%s actualitzacions favorites per %s / %s."
@ -666,7 +665,7 @@ msgstr "%s actualitzacions favorites per %s / %s."
msgid "%s timeline" msgid "%s timeline"
msgstr "%s línia temporal" msgstr "%s línia temporal"
#: 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!"
@ -682,12 +681,12 @@ msgstr "%1$s / Notificacions contestant a %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 notificacions que responen a notificacions de %2$s / %3$s." msgstr "%1$s notificacions que responen a notificacions 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 "%s línia temporal pública" msgstr "%s línia temporal pública"
#: 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 notificacions de tots!" msgstr "%s notificacions de tots!"
@ -697,7 +696,7 @@ msgstr "%s notificacions de tots!"
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "Respostes a %s" msgstr "Respostes a %s"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, php-format #, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "Repeticions de %s" msgstr "Repeticions de %s"
@ -707,7 +706,7 @@ msgstr "Repeticions de %s"
msgid "Notices tagged with %s" msgid "Notices tagged with %s"
msgstr "Aviso etiquetats amb %s" msgstr "Aviso etiquetats amb %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 "Actualitzacions etiquetades amb %1$s el %2$s!" msgstr "Actualitzacions etiquetades amb %1$s el %2$s!"
@ -769,7 +768,7 @@ msgid "Preview"
msgstr "Vista prèvia" msgstr "Vista prèvia"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Suprimeix" msgstr "Suprimeix"
@ -954,7 +953,7 @@ msgstr "No sou un membre del grup."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Ha ocorregut algun problema amb la teva sessió." msgstr "Ha ocorregut algun problema amb la teva sessió."
@ -983,7 +982,7 @@ msgstr "Eliminar aquesta nota"
#: 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -1016,7 +1015,7 @@ msgstr "N'estàs segur que vols eliminar aquesta notificació?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "No es pot esborrar la notificació." msgstr "No es pot esborrar la notificació."
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Eliminar aquesta nota" msgstr "Eliminar aquesta nota"
@ -1266,7 +1265,7 @@ msgstr "la descripció és massa llarga (màx. %d caràcters)."
msgid "Could not update group." msgid "Could not update group."
msgstr "No s'ha pogut actualitzar el grup." msgstr "No s'ha pogut actualitzar el grup."
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "No s'han pogut crear els àlies." msgstr "No s'han pogut crear els àlies."
@ -2351,7 +2350,7 @@ msgid "Only "
msgstr "Només " msgstr "Només "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Format de data no suportat." msgstr "Format de data no suportat."
@ -2804,23 +2803,23 @@ msgstr "L'idioma és massa llarg (màx 50 caràcters)."
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Etiqueta no vàlida: \"%s\"" msgstr "Etiqueta no vàlida: \"%s\""
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "No es pot actualitzar l'usuari per autosubscriure." msgstr "No es pot actualitzar l'usuari per autosubscriure."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "No s'han pogut desar les preferències d'ubicació." msgstr "No s'han pogut desar les preferències d'ubicació."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "No s'ha pogut guardar el perfil." msgstr "No s'ha pogut guardar el perfil."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "No s'han pogut guardar les etiquetes." msgstr "No s'han pogut guardar les etiquetes."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Configuració guardada." msgstr "Configuració guardada."
@ -3210,7 +3209,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "URL del teu perfil en un altre servei de microblogging compatible" msgstr "URL del teu perfil en un altre servei de microblogging compatible"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Subscriure's" msgstr "Subscriure's"
@ -3253,7 +3252,7 @@ msgstr "No pots registrar-te si no estàs d'acord amb la llicència."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Ja heu blocat l'usuari." msgstr "Ja heu blocat l'usuari."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "Repetit" msgstr "Repetit"
@ -3949,15 +3948,26 @@ msgstr "No hi ha cap codi entrat"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "No estàs subscrit a aquest perfil." msgstr "No estàs subscrit a aquest perfil."
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "No s'ha pogut guardar la subscripció." msgstr "No s'ha pogut guardar la subscripció."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "No existeix aquest usuari." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "No existeix el fitxer."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "No estàs subscrit a aquest perfil."
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "Subscrit" msgstr "Subscrit"
@ -4021,7 +4031,7 @@ msgstr "Aquestes són les persones que escoltes."
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "Aquestes són les persones que %s escolta." msgstr "Aquestes són les persones que %s escolta."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4031,16 +4041,16 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%s no escolta a ningú." msgstr "%s no escolta a ningú."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber" msgstr "Jabber"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS" msgstr "SMS"
@ -4460,23 +4470,23 @@ msgstr "No s'ha pogut inserir el missatge amb la nova URI."
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "Hashtag de l'error de la base de dades:%s" msgstr "Hashtag de l'error de la base de dades:%s"
#: classes/Notice.php:214 #: classes/Notice.php:222
#, fuzzy #, fuzzy
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "Problema en guardar l'avís." msgstr "Problema en guardar l'avís."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Problema al guardar la notificació. Usuari desconegut." msgstr "Problema al guardar la notificació. Usuari desconegut."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"Masses notificacions massa ràpid; pren un respir i publica de nou en uns " "Masses notificacions massa ràpid; pren un respir i publica de nou en uns "
"minuts." "minuts."
#: classes/Notice.php:229 #: classes/Notice.php:237
#, fuzzy #, fuzzy
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
@ -4485,39 +4495,60 @@ msgstr ""
"Masses notificacions massa ràpid; pren un respir i publica de nou en uns " "Masses notificacions massa ràpid; pren un respir i publica de nou en uns "
"minuts." "minuts."
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Ha estat bandejat de publicar notificacions en aquest lloc." msgstr "Ha estat bandejat de publicar notificacions en aquest lloc."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Problema en guardar l'avís." msgstr "Problema en guardar l'avís."
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy #, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Problema en guardar l'avís." msgstr "Problema en guardar l'avís."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Error de BD en inserir resposta: %s"
#: 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)"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr "Se us ha banejat la subscripció."
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr "Ja hi esteu subscrit!"
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "Un usuari t'ha bloquejat."
#: classes/Subscription.php:157
#, fuzzy
msgid "Not subscribed!"
msgstr "No estàs subscrit!"
#: classes/Subscription.php:163
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "No s'ha pogut eliminar la subscripció."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "No s'ha pogut eliminar la subscripció."
#: classes/User.php:372
#, php-format #, php-format
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "Us donem la benvinguda a %1$s, @%2$s!" msgstr "Us donem la benvinguda a %1$s, @%2$s!"
#: classes/User_group.php:380 #: classes/User_group.php:423
msgid "Could not create group." msgid "Could not create group."
msgstr "No s'ha pogut crear el grup." msgstr "No s'ha pogut crear el grup."
#: classes/User_group.php:409 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "No s'ha pogut establir la pertinença d'aquest grup." msgstr "No s'ha pogut establir la pertinença d'aquest grup."
@ -4720,26 +4751,38 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "Tot " msgstr "Tot "
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "llicència." msgstr "llicència."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "Paginació" msgstr "Paginació"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "Posteriors" msgstr "Posteriors"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "Anteriors" msgstr "Anteriors"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "No podeu fer canvis al lloc." msgstr "No podeu fer canvis al lloc."
@ -5048,82 +5091,91 @@ msgstr "Problema en guardar l'avís."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "Especifica el nom de l'usuari a que vols subscriure't" msgstr "Especifica el nom de l'usuari a que vols subscriure't"
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "No existeix aquest usuari."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "Subscrit a %s" msgstr "Subscrit a %s"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "Especifica el nom de l'usuari del que vols deixar d'estar subscrit" msgstr "Especifica el nom de l'usuari del que vols deixar d'estar subscrit"
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "Has deixat d'estar subscrit a %s" msgstr "Has deixat d'estar subscrit a %s"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "Comanda encara no implementada." msgstr "Comanda encara no implementada."
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "Notificacions off." msgstr "Notificacions off."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "No es poden posar en off les notificacions." msgstr "No es poden posar en off les notificacions."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "Notificacions on." msgstr "Notificacions on."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "No es poden posar en on les notificacions." msgstr "No es poden posar en on les notificacions."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Has deixat d'estar subscrit a %s"
#: lib/command.php:709
#, fuzzy #, fuzzy
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "No estàs subscrit a aquest perfil." msgstr "No estàs subscrit a aquest perfil."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Ja estàs subscrit a aquests usuaris:" msgstr[0] "Ja estàs subscrit a aquests usuaris:"
msgstr[1] "Ja estàs subscrit a aquests usuaris:" msgstr[1] "Ja estàs subscrit a aquests usuaris:"
#: lib/command.php:690 #: lib/command.php:731
#, fuzzy #, fuzzy
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "No pots subscriure a un altre a tu mateix." msgstr "No pots subscriure a un altre a tu mateix."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "No pots subscriure a un altre a tu mateix." msgstr[0] "No pots subscriure a un altre a tu mateix."
msgstr[1] "No pots subscriure a un altre a tu mateix." msgstr[1] "No pots subscriure a un altre a tu mateix."
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "No sou membre de cap grup." msgstr "No sou membre de cap grup."
#: lib/command.php:714 #: lib/command.php:755
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] "Sou un membre d'aquest grup:" msgstr[0] "Sou un membre d'aquest grup:"
msgstr[1] "Sou un membre d'aquests grups:" msgstr[1] "Sou un membre d'aquests grups:"
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5137,6 +5189,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5164,19 +5217,19 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "No s'ha trobat cap fitxer de configuració. " msgstr "No s'ha trobat cap fitxer de configuració. "
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "Podeu voler executar l'instal·lador per a corregir-ho." msgstr "Podeu voler executar l'instal·lador per a corregir-ho."
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Vés a l'instal·lador." msgstr "Vés a l'instal·lador."
@ -5600,7 +5653,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "de" msgstr "de"
@ -5723,49 +5776,49 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "No" msgstr "No"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "en context" msgstr "en context"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "Repetit per" msgstr "Repetit per"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "respondre a aquesta nota" msgstr "respondre a aquesta nota"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "Respon" msgstr "Respon"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Notificació publicada" msgstr "Notificació publicada"
@ -5799,10 +5852,6 @@ msgstr "Error en inserir perfil remot"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Eliminar nota." msgstr "Eliminar nota."
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr "Se us ha banejat la subscripció."
#: lib/oauthstore.php:490 #: 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ó."
@ -5984,36 +6033,6 @@ msgstr "Persones subscrites a %s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "%s grups són membres de" msgstr "%s grups són membres de"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr "Ja hi esteu subscrit!"
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "Un usuari t'ha bloquejat."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "No pots subscriure."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "No pots subscriure a un altre a tu mateix."
#: lib/subs.php:137
#, fuzzy
msgid "Not subscribed!"
msgstr "No estàs subscrit!"
#: lib/subs.php:142
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "No s'ha pogut eliminar la subscripció."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "No s'ha pogut eliminar la subscripció."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6065,67 +6084,67 @@ msgstr "Edita l'avatar"
msgid "User actions" msgid "User actions"
msgstr "Accions de l'usuari" msgstr "Accions de l'usuari"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Edita la configuració del perfil" msgstr "Edita la configuració del perfil"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "Edita" msgstr "Edita"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Enviar un missatge directe a aquest usuari" msgstr "Enviar un missatge directe a aquest usuari"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Missatge" msgstr "Missatge"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "Modera" msgstr "Modera"
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "fa pocs segons" msgstr "fa pocs segons"
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "fa un minut" msgstr "fa un minut"
#: lib/util.php:874 #: lib/util.php:956
#, 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:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "fa una hora" msgstr "fa una hora"
#: lib/util.php:878 #: lib/util.php:960
#, 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:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "fa un dia" msgstr "fa un dia"
#: lib/util.php:882 #: lib/util.php:964
#, 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:884 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "fa un mes" msgstr "fa un mes"
#: lib/util.php:886 #: lib/util.php:968
#, 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:888 #: lib/util.php:970
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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:14:23+0000\n" "PO-Revision-Date: 2010-02-24 23:50:18+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -66,7 +66,7 @@ msgstr ""
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -106,7 +106,6 @@ msgstr "Žádné takové oznámení."
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Žádný takový uživatel." msgstr "Žádný takový uživatel."
@ -169,8 +168,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "%s a přátelé" msgstr "%s a přátelé"
#: 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 ""
@ -191,12 +190,12 @@ msgstr ""
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 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"
@ -506,7 +505,7 @@ msgstr "Neplatná velikost"
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -652,7 +651,7 @@ msgstr "Nepodporovaný formát obrázku."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%1 statusů na %2" msgstr "%1 statusů na %2"
#: actions/apitimelinefavorites.php:120 #: actions/apitimelinefavorites.php:117
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s updates favorited by %2$s / %2$s." msgid "%1$s updates favorited by %2$s / %2$s."
msgstr "Mikroblog od %s" msgstr "Mikroblog od %s"
@ -663,7 +662,7 @@ msgstr "Mikroblog od %s"
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!"
@ -679,12 +678,12 @@ msgstr "%1 statusů na %2"
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 ""
@ -694,7 +693,7 @@ msgstr ""
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "Odpovědi na %s" msgstr "Odpovědi na %s"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, fuzzy, php-format #, fuzzy, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "Odpovědi na %s" msgstr "Odpovědi na %s"
@ -704,7 +703,7 @@ msgstr "Odpovědi na %s"
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
#, fuzzy, php-format #, fuzzy, php-format
msgid "Updates tagged with %1$s on %2$s!" msgid "Updates tagged with %1$s on %2$s!"
msgstr "Mikroblog od %s" msgstr "Mikroblog od %s"
@ -768,7 +767,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Odstranit" msgstr "Odstranit"
@ -957,7 +956,7 @@ msgstr "Neodeslal jste nám profil"
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -986,7 +985,7 @@ msgstr "Odstranit toto oznámení"
#: 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -1016,7 +1015,7 @@ msgstr ""
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Žádné takové oznámení." msgstr "Žádné takové oznámení."
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Odstranit toto oznámení" msgstr "Odstranit toto oznámení"
@ -1270,7 +1269,7 @@ msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)"
msgid "Could not update group." msgid "Could not update group."
msgstr "Nelze aktualizovat uživatele" msgstr "Nelze aktualizovat uživatele"
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:433
#, fuzzy #, fuzzy
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Nelze uložin informace o obrázku" msgstr "Nelze uložin informace o obrázku"
@ -2320,7 +2319,7 @@ msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -2776,25 +2775,25 @@ msgstr ""
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Neplatná adresa '%s'" msgstr "Neplatná adresa '%s'"
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
#, fuzzy #, fuzzy
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Nelze uložit profil" msgstr "Nelze uložit profil"
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Nelze uložit profil" msgstr "Nelze uložit profil"
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
#, fuzzy #, fuzzy
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Nelze uložit profil" msgstr "Nelze uložit profil"
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Nastavení uloženo" msgstr "Nastavení uloženo"
@ -3161,7 +3160,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "Adresa profilu na jiných kompatibilních mikroblozích." msgstr "Adresa profilu na jiných kompatibilních mikroblozích."
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Odebírat" msgstr "Odebírat"
@ -3202,7 +3201,7 @@ msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Již jste přihlášen" msgstr "Již jste přihlášen"
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Vytvořit" msgstr "Vytvořit"
@ -3890,17 +3889,27 @@ msgstr ""
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "Neodeslal jste nám profil" msgstr "Neodeslal jste nám profil"
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
#, fuzzy #, fuzzy
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Nelze vytvořit odebírat" msgstr "Nelze vytvořit odebírat"
#: actions/subscribe.php:55 #: actions/subscribe.php:77
#, fuzzy msgid "This action only accepts POST requests."
msgid "Not a local user." msgstr ""
msgstr "Žádný takový uživatel."
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Žádné takové oznámení."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Neodeslal jste nám profil"
#: actions/subscribe.php:145
#, fuzzy #, fuzzy
msgid "Subscribed" msgid "Subscribed"
msgstr "Odebírat" msgstr "Odebírat"
@ -3961,7 +3970,7 @@ msgstr "Toto jsou lidé, jejiž sdělením nasloucháte"
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "Toto jsou lidé, jejiž sdělením %s naslouchá" msgstr "Toto jsou lidé, jejiž sdělením %s naslouchá"
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -3971,17 +3980,17 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, fuzzy, php-format #, fuzzy, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%1 od teď naslouchá tvým sdělením v %2" msgstr "%1 od teď naslouchá tvým sdělením v %2"
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
#, fuzzy #, fuzzy
msgid "Jabber" msgid "Jabber"
msgstr "Žádné Jabber ID." msgstr "Žádné Jabber ID."
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "" msgstr ""
@ -4405,61 +4414,83 @@ msgstr ""
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "" msgstr ""
#: classes/Notice.php:214 #: classes/Notice.php:222
#, fuzzy #, fuzzy
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "Problém při ukládání sdělení" msgstr "Problém při ukládání sdělení"
#: classes/Notice.php:218 #: classes/Notice.php:226
#, fuzzy #, fuzzy
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Problém při ukládání sdělení" msgstr "Problém při ukládání sdělení"
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Problém při ukládání sdělení" msgstr "Problém při ukládání sdělení"
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy #, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Problém při ukládání sdělení" msgstr "Problém při ukládání sdělení"
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Chyba v DB při vkládání odpovědi: %s"
#: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr ""
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr ""
#: classes/Subscription.php:74
#, fuzzy
msgid "User has blocked you."
msgstr "Uživatel nemá profil."
#: classes/Subscription.php:157
#, fuzzy
msgid "Not subscribed!"
msgstr "Nepřihlášen!"
#: classes/Subscription.php:163
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Nelze smazat odebírání"
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Nelze smazat odebírání"
#: classes/User.php:372
#, php-format #, php-format
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:423
#, fuzzy #, fuzzy
msgid "Could not create group." msgid "Could not create group."
msgstr "Nelze uložin informace o obrázku" msgstr "Nelze uložin informace o obrázku"
#: classes/User_group.php:409 #: classes/User_group.php:452
#, fuzzy #, fuzzy
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Nelze vytvořit odebírat" msgstr "Nelze vytvořit odebírat"
@ -4670,28 +4701,40 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1139 #: lib/action.php:1141
#, fuzzy #, fuzzy
msgid "After" msgid "After"
msgstr "« Novější" msgstr "« Novější"
#: lib/action.php:1147 #: lib/action.php:1149
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "Starší »" msgstr "Starší »"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "" msgstr ""
@ -5002,86 +5045,96 @@ msgstr "Problém při ukládání sdělení"
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "" msgstr ""
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
#, fuzzy
msgid "No such user"
msgstr "Žádný takový uživatel."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "" msgstr ""
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "" msgstr ""
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "" msgstr ""
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "" msgstr ""
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "" msgstr ""
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "" msgstr ""
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "" msgstr ""
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "" msgstr ""
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Odhlásit"
#: lib/command.php:709
#, fuzzy #, fuzzy
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "Neodeslal jste nám profil" msgstr "Neodeslal jste nám profil"
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Neodeslal jste nám profil" msgstr[0] "Neodeslal jste nám profil"
msgstr[1] "Neodeslal jste nám profil" msgstr[1] "Neodeslal jste nám profil"
msgstr[2] "" msgstr[2] ""
#: lib/command.php:690 #: lib/command.php:731
#, fuzzy #, fuzzy
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Vzdálený odběr" msgstr "Vzdálený odběr"
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Vzdálený odběr" msgstr[0] "Vzdálený odběr"
msgstr[1] "Vzdálený odběr" msgstr[1] "Vzdálený odběr"
msgstr[2] "" msgstr[2] ""
#: lib/command.php:712 #: lib/command.php:753
#, fuzzy #, fuzzy
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "Neodeslal jste nám profil" msgstr "Neodeslal jste nám profil"
#: lib/command.php:714 #: lib/command.php:755
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] "Neodeslal jste nám profil" msgstr[0] "Neodeslal jste nám profil"
msgstr[1] "Neodeslal jste nám profil" msgstr[1] "Neodeslal jste nám profil"
msgstr[2] "" msgstr[2] ""
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5095,6 +5148,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5122,20 +5176,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Žádný potvrzující kód." msgstr "Žádný potvrzující kód."
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""
@ -5559,7 +5613,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr " od " msgstr " od "
@ -5685,51 +5739,51 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:547 #: lib/noticelist.php:558
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "Žádný obsah!" msgstr "Žádný obsah!"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Vytvořit" msgstr "Vytvořit"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:599 #: lib/noticelist.php:611
#, fuzzy #, fuzzy
msgid "Reply" msgid "Reply"
msgstr "odpověď" msgstr "odpověď"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Sdělení" msgstr "Sdělení"
@ -5763,10 +5817,6 @@ 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:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr ""
#: lib/oauthstore.php:490 #: 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í"
@ -5952,37 +6002,6 @@ msgstr "Vzdálený odběr"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "" msgstr ""
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr ""
#: lib/subs.php:56
#, fuzzy
msgid "User has blocked you."
msgstr "Uživatel nemá profil."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr ""
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr ""
#: lib/subs.php:137
#, fuzzy
msgid "Not subscribed!"
msgstr "Nepřihlášen!"
#: lib/subs.php:142
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Nelze smazat odebírání"
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Nelze smazat odebírání"
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6035,68 +6054,68 @@ msgstr "Upravit avatar"
msgid "User actions" msgid "User actions"
msgstr "Akce uživatele" msgstr "Akce uživatele"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
#, fuzzy #, fuzzy
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Nastavené Profilu" msgstr "Nastavené Profilu"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "" msgstr ""
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Zpráva" msgstr "Zpráva"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:870 #: lib/util.php:952
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:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "asi před minutou" msgstr "asi před minutou"
#: lib/util.php:874 #: lib/util.php:956
#, 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:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "asi před hodinou" msgstr "asi před hodinou"
#: lib/util.php:878 #: lib/util.php:960
#, 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:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "asi přede dnem" msgstr "asi přede dnem"
#: lib/util.php:882 #: lib/util.php:964
#, 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:884 #: lib/util.php:966
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:886 #: lib/util.php:968
#, 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:888 #: lib/util.php:970
msgid "about a year ago" msgid "about a year ago"
msgstr "asi před rokem" msgstr "asi před rokem"

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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:14:30+0000\n" "PO-Revision-Date: 2010-02-24 23:50:24+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -63,7 +63,7 @@ msgstr ""
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -102,7 +102,6 @@ msgstr "Δεν υπάρχει τέτοια σελίδα"
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Κανένας τέτοιος χρήστης." msgstr "Κανένας τέτοιος χρήστης."
@ -164,8 +163,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 ""
@ -186,12 +185,12 @@ msgstr ""
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!" msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!"
@ -497,7 +496,7 @@ msgstr "Μήνυμα"
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -638,7 +637,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 ""
@ -649,7 +648,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!"
@ -665,12 +664,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 ""
@ -680,7 +679,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 ""
@ -690,7 +689,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 ""
@ -751,7 +750,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Διαγραφή" msgstr "Διαγραφή"
@ -937,7 +936,7 @@ msgstr "Ομάδες με τα περισσότερα μέλη"
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -966,7 +965,7 @@ 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -997,7 +996,7 @@ msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυ
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "" msgstr ""
@ -1247,7 +1246,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:433
#, fuzzy #, fuzzy
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Αδύνατη η αποθήκευση του προφίλ." msgstr "Αδύνατη η αποθήκευση του προφίλ."
@ -2278,7 +2277,7 @@ msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -2728,25 +2727,25 @@ msgstr ""
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "" msgstr ""
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Απέτυχε η ενημέρωση του χρήστη για την αυτόματη συνδρομή." msgstr "Απέτυχε η ενημέρωση του χρήστη για την αυτόματη συνδρομή."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
#, fuzzy #, fuzzy
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Αδύνατη η αποθήκευση του προφίλ." msgstr "Αδύνατη η αποθήκευση του προφίλ."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Απέτυχε η αποθήκευση του προφίλ." msgstr "Απέτυχε η αποθήκευση του προφίλ."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
#, fuzzy #, fuzzy
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Αδύνατη η αποθήκευση του προφίλ." msgstr "Αδύνατη η αποθήκευση του προφίλ."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "" msgstr ""
@ -3123,7 +3122,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "" msgstr ""
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "" msgstr ""
@ -3162,7 +3161,7 @@ msgstr ""
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Δημιουργία" msgstr "Δημιουργία"
@ -3843,16 +3842,26 @@ msgstr ""
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "" msgstr ""
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
#, fuzzy #, fuzzy
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ"
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "" msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Αδύνατη η αποθήκευση του προφίλ."
#: actions/subscribe.php:117
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "" msgstr ""
@ -3912,7 +3921,7 @@ msgstr ""
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "" msgstr ""
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -3922,16 +3931,16 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "" msgstr ""
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "" msgstr ""
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "" msgstr ""
@ -4336,57 +4345,78 @@ msgstr ""
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "Σφάλμα στη βάση δεδομένων κατά την εισαγωγή hashtag: %s" msgstr "Σφάλμα στη βάση δεδομένων κατά την εισαγωγή hashtag: %s"
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "" msgstr ""
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "" msgstr ""
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "" msgstr ""
#: classes/Notice.php:788 #: classes/Notice.php:882
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "" msgstr ""
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Σφάλμα βάσης δεδομένων κατά την εισαγωγή απάντησης: %s"
#: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr ""
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr ""
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr ""
#: classes/Subscription.php:157
#, fuzzy
msgid "Not subscribed!"
msgstr "Απέτυχε η συνδρομή."
#: classes/Subscription.php:163
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Απέτυχε η διαγραφή συνδρομής."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Απέτυχε η διαγραφή συνδρομής."
#: classes/User.php:372
#, php-format #, php-format
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:423
msgid "Could not create group." msgid "Could not create group."
msgstr "Δεν ήταν δυνατή η δημιουργία ομάδας." msgstr "Δεν ήταν δυνατή η δημιουργία ομάδας."
#: classes/User_group.php:409 #: classes/User_group.php:452
#, fuzzy #, fuzzy
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ" msgstr "Αδύνατη η αποθήκευση των νέων πληροφοριών του προφίλ"
@ -4587,26 +4617,38 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "" msgstr ""
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "" msgstr ""
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "" msgstr ""
@ -4909,82 +4951,92 @@ msgstr ""
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "" msgstr ""
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
#, fuzzy
msgid "No such user"
msgstr "Κανένας τέτοιος χρήστης."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "" msgstr ""
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "" msgstr ""
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "" msgstr ""
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "" msgstr ""
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "" msgstr ""
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "" msgstr ""
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "" msgstr ""
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "" msgstr ""
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Απέτυχε η συνδρομή."
#: lib/command.php:709
#, fuzzy #, fuzzy
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." msgstr[0] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
msgstr[1] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." msgstr[1] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
#: lib/command.php:690 #: lib/command.php:731
#, fuzzy #, fuzzy
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." msgstr[0] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
msgstr[1] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." msgstr[1] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "Δεν είστε μέλος καμίας ομάδας." msgstr "Δεν είστε μέλος καμίας ομάδας."
#: lib/command.php:714 #: lib/command.php:755
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] "Ομάδες με τα περισσότερα μέλη" msgstr[0] "Ομάδες με τα περισσότερα μέλη"
msgstr[1] "Ομάδες με τα περισσότερα μέλη" msgstr[1] "Ομάδες με τα περισσότερα μέλη"
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -4998,6 +5050,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5025,20 +5078,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε."
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""
@ -5449,7 +5502,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "από" msgstr "από"
@ -5572,48 +5625,48 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "" msgstr ""
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "Επαναλαμβάνεται από" msgstr "Επαναλαμβάνεται από"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "" msgstr ""
#: lib/noticelist.php:641 #: lib/noticelist.php:655
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Ρυθμίσεις OpenID" msgstr "Ρυθμίσεις OpenID"
@ -5647,10 +5700,6 @@ msgstr ""
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Διαγραφή μηνύματος" msgstr "Διαγραφή μηνύματος"
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr ""
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Απέτυχε η εισαγωγή νέας συνδρομής." msgstr "Απέτυχε η εισαγωγή νέας συνδρομής."
@ -5831,36 +5880,6 @@ msgstr ""
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "" msgstr ""
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr ""
#: lib/subs.php:56
msgid "User has blocked you."
msgstr ""
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "Απέτυχε η συνδρομή."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
#: lib/subs.php:137
#, fuzzy
msgid "Not subscribed!"
msgstr "Απέτυχε η συνδρομή."
#: lib/subs.php:142
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Απέτυχε η διαγραφή συνδρομής."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Απέτυχε η διαγραφή συνδρομής."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -5913,67 +5932,67 @@ msgstr ""
msgid "User actions" msgid "User actions"
msgstr "" msgstr ""
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Επεξεργασία ρυθμίσεων προφίλ" msgstr "Επεξεργασία ρυθμίσεων προφίλ"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "Επεξεργασία" msgstr "Επεξεργασία"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "" msgstr ""
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Μήνυμα" msgstr "Μήνυμα"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "" msgstr ""
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "" msgstr ""
#: lib/util.php:874 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "" msgstr ""
#: lib/util.php:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "" msgstr ""
#: lib/util.php:878 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "" msgstr ""
#: lib/util.php:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "" msgstr ""
#: lib/util.php:882 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "" msgstr ""
#: lib/util.php:884 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "" msgstr ""
#: lib/util.php:886 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "" msgstr ""
#: lib/util.php:888 #: lib/util.php:970
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-14 20:05+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-14 20:06:20+0000\n" "PO-Revision-Date: 2010-02-24 23:50:27+0000\n"
"Language-Team: British English\n" "Language-Team: British English\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 (r62476); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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: en-gb\n" "X-Language-Code: en-gb\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -62,7 +62,7 @@ msgstr "Disable new registrations."
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -100,7 +100,6 @@ msgstr "No such page"
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "No such user." msgstr "No such user."
@ -192,11 +191,11 @@ msgstr "Updates from %1$s and friends on %2$s!"
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:182 actions/apitimelinehome.php:184 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:194 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "API method not found." msgstr "API method not found."
@ -498,7 +497,7 @@ msgstr "Invalid token."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -753,7 +752,7 @@ msgid "Preview"
msgstr "Preview" msgstr "Preview"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Delete" msgstr "Delete"
@ -934,7 +933,7 @@ msgstr "You are not the owner of this application."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "There was a problem with your session token." msgstr "There was a problem with your session token."
@ -963,7 +962,7 @@ msgstr "Delete this application"
#: 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -994,7 +993,7 @@ msgstr "Are you sure you want to delete this notice?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Do not delete this notice" msgstr "Do not delete this notice"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Delete this notice" msgstr "Delete this notice"
@ -1235,7 +1234,7 @@ msgstr "description is too long (max %d chars)."
msgid "Could not update group." msgid "Could not update group."
msgstr "Could not update group." msgstr "Could not update group."
#: actions/editgroup.php:259 classes/User_group.php:423 #: actions/editgroup.php:259 classes/User_group.php:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Could not create aliases" msgstr "Could not create aliases"
@ -2324,7 +2323,7 @@ msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Not a supported data format." msgstr "Not a supported data format."
@ -2774,24 +2773,24 @@ msgstr "Language is too long (max 50 chars)."
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Invalid tag: \"%s\"" msgstr "Invalid tag: \"%s\""
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Couldn't update user for autosubscribe." msgstr "Couldn't update user for autosubscribe."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
#, fuzzy #, fuzzy
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Couldn't save tags." msgstr "Couldn't save tags."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Couldn't save profile." msgstr "Couldn't save profile."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Couldn't save tags." msgstr "Couldn't save tags."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Settings saved." msgstr "Settings saved."
@ -3182,7 +3181,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "URL of your profile on another compatible microblogging service" msgstr "URL of your profile on another compatible microblogging service"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Subscribe" msgstr "Subscribe"
@ -3224,7 +3223,7 @@ msgstr "You can't repeat your own notice."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "You have already blocked this user." msgstr "You have already blocked this user."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Created" msgstr "Created"
@ -3939,15 +3938,26 @@ msgstr "No code entered"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "You are not subscribed to that profile." msgstr "You are not subscribed to that profile."
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Could not save subscription." msgstr "Could not save subscription."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "Not a local user." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "No such notice."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "You are not subscribed to that profile."
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "Subscribed" msgstr "Subscribed"
@ -4007,7 +4017,7 @@ msgstr "These are the people whose notices you listen to."
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "These are the people whose notices %s listens to." msgstr "These are the people whose notices %s listens to."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4017,16 +4027,16 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%s is not listening to anyone." msgstr "%s is not listening to anyone."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber" msgstr "Jabber"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS" msgstr "SMS"
@ -4460,22 +4470,22 @@ msgstr "Could not update message with new URI."
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "DB error inserting hashtag: %s" msgstr "DB error inserting hashtag: %s"
#: classes/Notice.php:214 #: classes/Notice.php:222
#, fuzzy #, fuzzy
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "Problem saving notice." msgstr "Problem saving notice."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Problem saving notice. Unknown user." msgstr "Problem saving notice. Unknown user."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
#: classes/Notice.php:229 #: classes/Notice.php:237
#, fuzzy #, fuzzy
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
@ -4483,39 +4493,60 @@ msgid ""
msgstr "" msgstr ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "You are banned from posting notices on this site." msgstr "You are banned from posting notices on this site."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Problem saving notice." msgstr "Problem saving notice."
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy #, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Problem saving notice." msgstr "Problem saving notice."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "DB error inserting reply: %s"
#: classes/Notice.php:1271
#, 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)"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr "You have been banned from subscribing."
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr ""
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "User has blocked you."
#: classes/Subscription.php:157
#, fuzzy
msgid "Not subscribed!"
msgstr "Not subscribed!"
#: classes/Subscription.php:163
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Couldn't delete subscription."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Couldn't delete subscription."
#: classes/User.php:372
#, php-format #, php-format
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "Welcome to %1$s, @%2$s!" msgstr "Welcome to %1$s, @%2$s!"
#: classes/User_group.php:413 #: classes/User_group.php:423
msgid "Could not create group." msgid "Could not create group."
msgstr "Could not create group." msgstr "Could not create group."
#: classes/User_group.php:442 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Could not set group membership." msgstr "Could not set group membership."
@ -4718,26 +4749,38 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "All " msgstr "All "
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "licence." msgstr "licence."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "Pagination" msgstr "Pagination"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "After" msgstr "After"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "Before" msgstr "Before"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
#, fuzzy #, fuzzy
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
@ -5047,83 +5090,92 @@ msgstr "Error saving notice."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "Specify the name of the user to subscribe to" msgstr "Specify the name of the user to subscribe to"
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "No such user."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "Subscribed to %s" msgstr "Subscribed to %s"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "Specify the name of the user to unsubscribe from" msgstr "Specify the name of the user to unsubscribe from"
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "Unsubscribed from %s" msgstr "Unsubscribed from %s"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "Command not yet implemented." msgstr "Command not yet implemented."
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "Notification off." msgstr "Notification off."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "Can't turn off notification." msgstr "Can't turn off notification."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "Notification on." msgstr "Notification on."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "Can't turn on notification." msgstr "Can't turn on notification."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Unsubscribed from %s"
#: lib/command.php:709
#, fuzzy #, fuzzy
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "You are not subscribed to that profile." msgstr "You are not subscribed to that profile."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "You are already subscribed to these users:" msgstr[0] "You are already subscribed to these users:"
msgstr[1] "You are already subscribed to these users:" msgstr[1] "You are already subscribed to these users:"
#: lib/command.php:690 #: lib/command.php:731
#, fuzzy #, fuzzy
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Could not subscribe other to you." msgstr "Could not subscribe other to you."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Could not subscribe other to you." msgstr[0] "Could not subscribe other to you."
msgstr[1] "Could not subscribe other to you." msgstr[1] "Could not subscribe other to you."
#: lib/command.php:712 #: lib/command.php:753
#, fuzzy #, fuzzy
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "You are not a member of that group." msgstr "You are not a member of that group."
#: lib/command.php:714 #: lib/command.php:755
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] "You are not a member of that group." msgstr[0] "You are not a member of that group."
msgstr[1] "You are not a member of that group." msgstr[1] "You are not a member of that group."
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5137,6 +5189,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5164,19 +5217,19 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "No configuration file found" msgstr "No configuration file found"
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Go to the installer." msgstr "Go to the installer."
@ -5606,7 +5659,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr "from" msgstr "from"
@ -5730,50 +5783,50 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "No" msgstr "No"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "in context" msgstr "in context"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Created" msgstr "Created"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Reply to this notice" msgstr "Reply to this notice"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "Reply" msgstr "Reply"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Notice deleted." msgstr "Notice deleted."
@ -5806,10 +5859,6 @@ msgstr "Error inserting remote profile."
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Duplicate notice" msgstr "Duplicate notice"
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr "You have been banned from subscribing."
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Couldn't insert new subscription." msgstr "Couldn't insert new subscription."
@ -5991,36 +6040,6 @@ msgstr "People subscribed to %s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "Groups %s is a member of" msgstr "Groups %s is a member of"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr ""
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "User has blocked you."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "Could not subscribe."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "Could not subscribe other to you."
#: lib/subs.php:137
#, fuzzy
msgid "Not subscribed!"
msgstr "Not subscribed!"
#: lib/subs.php:142
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Couldn't delete subscription."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Couldn't delete subscription."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6071,67 +6090,67 @@ msgstr "Edit Avatar"
msgid "User actions" msgid "User actions"
msgstr "User actions" msgstr "User actions"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Edit profile settings" msgstr "Edit profile settings"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Send a direct message to this user" msgstr "Send a direct message to this user"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Message" msgstr "Message"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:871 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "a few seconds ago" msgstr "a few seconds ago"
#: lib/util.php:873 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "about a minute ago" msgstr "about a minute ago"
#: lib/util.php:875 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "about %d minutes ago" msgstr "about %d minutes ago"
#: lib/util.php:877 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "about an hour ago" msgstr "about an hour ago"
#: lib/util.php:879 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "about %d hours ago" msgstr "about %d hours ago"
#: lib/util.php:881 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "about a day ago" msgstr "about a day ago"
#: lib/util.php:883 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "about %d days ago" msgstr "about %d days ago"
#: lib/util.php:885 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "about a month ago" msgstr "about a month ago"
#: lib/util.php:887 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "about %d months ago" msgstr "about %d months ago"
#: lib/util.php:889 #: lib/util.php:970
msgid "about a year ago" msgid "about a year ago"
msgstr "about a year ago" msgstr "about a year ago"

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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:14:41+0000\n" "PO-Revision-Date: 2010-02-24 23:50:38+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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
@ -66,7 +66,7 @@ msgstr "غیر فعال کردن نام نوبسی جدید"
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -105,7 +105,6 @@ msgstr "چنین صفحه‌ای وجود ندارد"
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "چنین کاربری وجود ندارد." msgstr "چنین کاربری وجود ندارد."
@ -173,8 +172,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$ و دوستان در %2$" msgstr "به روز رسانی از %1$ و دوستان در %2$"
@ -195,12 +194,12 @@ msgstr "به روز رسانی از %1$ و دوستان در %2$"
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "رابط مورد نظر پیدا نشد." msgstr "رابط مورد نظر پیدا نشد."
@ -501,7 +500,7 @@ msgstr "اندازه‌ی نادرست"
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -641,7 +640,7 @@ msgstr "قالب پشتیبانی نشده."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%s / دوست داشتنی از %s" msgstr "%s / دوست داشتنی از %s"
#: actions/apitimelinefavorites.php:120 #: actions/apitimelinefavorites.php:117
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s updates favorited by %2$s / %2$s." msgid "%1$s updates favorited by %2$s / %2$s."
msgstr "%s به روز رسانی های دوست داشتنی %s / %s" msgstr "%s به روز رسانی های دوست داشتنی %s / %s"
@ -652,7 +651,7 @@ msgstr "%s به روز رسانی های دوست داشتنی %s / %s"
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 +667,12 @@ msgstr "%$1s / به روز رسانی های شامل %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 +682,7 @@ msgstr "%s به روز رسانی های عموم"
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 "تکرار %s" msgstr "تکرار %s"
@ -693,7 +692,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"
@ -755,7 +754,7 @@ msgid "Preview"
msgstr "پیش‌نمایش" msgstr "پیش‌نمایش"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "حذف" msgstr "حذف"
@ -941,7 +940,7 @@ msgstr "شما یک عضو این گروه نیستید."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -973,7 +972,7 @@ 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -1004,7 +1003,7 @@ msgstr "آیا اطمینان دارید که می‌خواهید این پیا
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "این پیام را پاک نکن" msgstr "این پیام را پاک نکن"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "این پیام را پاک کن" msgstr "این پیام را پاک کن"
@ -1255,7 +1254,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:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "نمی‌توان نام‌های مستعار را ساخت." msgstr "نمی‌توان نام‌های مستعار را ساخت."
@ -2302,7 +2301,7 @@ msgid "Only "
msgstr " فقط" msgstr " فقط"
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "یک قالب دادهٔ پشتیبانی‌شده نیست." msgstr "یک قالب دادهٔ پشتیبانی‌شده نیست."
@ -2746,23 +2745,23 @@ msgstr "کلام بسیار طولانی است( حداکثر ۵۰ کاراکت
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "نشان نادرست »%s«" msgstr "نشان نادرست »%s«"
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "نمی‌توان تنظیمات مکانی را تنظیم کرد." msgstr "نمی‌توان تنظیمات مکانی را تنظیم کرد."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "نمی‌توان شناسه را ذخیره کرد." msgstr "نمی‌توان شناسه را ذخیره کرد."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "نمی‌توان نشان را ذخیره کرد." msgstr "نمی‌توان نشان را ذخیره کرد."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "تنظیمات ذخیره شد." msgstr "تنظیمات ذخیره شد."
@ -3123,7 +3122,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "" msgstr ""
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "" msgstr ""
@ -3159,7 +3158,7 @@ msgstr "شما نمی توانید آگهی خودتان را تکرار کنی
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "شما قبلا آن آگهی را تکرار کردید." msgstr "شما قبلا آن آگهی را تکرار کردید."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "" msgstr ""
@ -3844,15 +3843,26 @@ msgstr "کدی وارد نشد"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "شما به این پروفيل متعهد نشدید" msgstr "شما به این پروفيل متعهد نشدید"
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "" msgstr ""
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "" msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "چنین پرونده‌ای وجود ندارد."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "شما به این پروفيل متعهد نشدید"
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "" msgstr ""
@ -3912,7 +3922,7 @@ msgstr ""
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "" msgstr ""
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -3922,16 +3932,16 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "" msgstr ""
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "" msgstr ""
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "" msgstr ""
@ -4328,22 +4338,22 @@ msgstr ""
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "" msgstr ""
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "مشکل در ذخیره کردن پیام. بسیار طولانی." msgstr "مشکل در ذخیره کردن پیام. بسیار طولانی."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "مشکل در ذخیره کردن پیام. کاربر نا شناخته." msgstr "مشکل در ذخیره کردن پیام. کاربر نا شناخته."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"تعداد خیلی زیاد آگهی و بسیار سریع؛ استراحت کنید و مجددا دقایقی دیگر ارسال " "تعداد خیلی زیاد آگهی و بسیار سریع؛ استراحت کنید و مجددا دقایقی دیگر ارسال "
"کنید." "کنید."
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
@ -4351,39 +4361,58 @@ msgstr ""
"تعداد زیاد پیام های دو نسخه ای و بسرعت؛ استراحت کنید و دقایقی دیگر مجددا " "تعداد زیاد پیام های دو نسخه ای و بسرعت؛ استراحت کنید و دقایقی دیگر مجددا "
"ارسال کنید." "ارسال کنید."
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "شما از فرستادن پست در این سایت مردود شدید ." msgstr "شما از فرستادن پست در این سایت مردود شدید ."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "مشکل در ذخیره کردن آگهی." msgstr "مشکل در ذخیره کردن آگهی."
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy #, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "مشکل در ذخیره کردن آگهی." msgstr "مشکل در ذخیره کردن آگهی."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr ""
#: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr ""
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr "قبلا تایید شده !"
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr ""
#: classes/Subscription.php:157
msgid "Not subscribed!"
msgstr "تایید نشده!"
#: classes/Subscription.php:163
msgid "Couldn't delete self-subscription."
msgstr ""
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr ""
#: classes/User.php:372
#, php-format #, php-format
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:423
msgid "Could not create group." msgid "Could not create group."
msgstr "نمیتوان گروه را تشکیل داد" msgstr "نمیتوان گروه را تشکیل داد"
#: classes/User_group.php:409 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "" msgstr ""
@ -4579,26 +4608,38 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "همه " msgstr "همه "
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "مجوز." msgstr "مجوز."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "صفحه بندى" msgstr "صفحه بندى"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "بعد از" msgstr "بعد از"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "قبل از" msgstr "قبل از"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "شما نمی توانید در این سایت تغیری ایجاد کنید" msgstr "شما نمی توانید در این سایت تغیری ایجاد کنید"
@ -4904,77 +4945,87 @@ msgstr "خطا هنگام ذخیره ی آگهی"
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "" msgstr ""
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
#, fuzzy
msgid "No such user"
msgstr "چنین کاربری وجود ندارد."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "" msgstr ""
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "" msgstr ""
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "" msgstr ""
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "دستور هنوز اجرا نشده" msgstr "دستور هنوز اجرا نشده"
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "" msgstr ""
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "ناتوان در خاموش کردن آگاه سازی." msgstr "ناتوان در خاموش کردن آگاه سازی."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "آگاه سازی فعال است." msgstr "آگاه سازی فعال است."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "ناتوان در روشن کردن آگاه سازی." msgstr "ناتوان در روشن کردن آگاه سازی."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "فرمان ورود از کار افتاده است" msgstr "فرمان ورود از کار افتاده است"
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "مشترک‌ها"
#: lib/command.php:709
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "شما توسط هیچ کس تصویب نشده اید ." msgstr "شما توسط هیچ کس تصویب نشده اید ."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "هم اکنون شما این کاربران را دنبال می‌کنید: " msgstr[0] "هم اکنون شما این کاربران را دنبال می‌کنید: "
#: lib/command.php:690 #: lib/command.php:731
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "هیچکس شما را تایید نکرده ." msgstr "هیچکس شما را تایید نکرده ."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "هیچکس شما را تایید نکرده ." msgstr[0] "هیچکس شما را تایید نکرده ."
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "شما در هیچ گروهی عضو نیستید ." msgstr "شما در هیچ گروهی عضو نیستید ."
#: lib/command.php:714 #: lib/command.php:755
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] "شما یک عضو این گروه نیستید." msgstr[0] "شما یک عضو این گروه نیستید."
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -4988,6 +5039,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5015,19 +5067,19 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "" msgstr ""
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "شما ممکن است بخواهید نصاب را اجرا کنید تا این را تعمیر کند." msgstr "شما ممکن است بخواهید نصاب را اجرا کنید تا این را تعمیر کند."
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "برو به نصاب." msgstr "برو به نصاب."
@ -5441,7 +5493,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "از" msgstr "از"
@ -5565,48 +5617,48 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "در" msgstr "در"
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "در زمینه" msgstr "در زمینه"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "تکرار از" msgstr "تکرار از"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "به این آگهی جواب دهید" msgstr "به این آگهی جواب دهید"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "جواب دادن" msgstr "جواب دادن"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
msgid "Notice repeated" msgid "Notice repeated"
msgstr "آگهی تکرار شد" msgstr "آگهی تکرار شد"
@ -5638,10 +5690,6 @@ msgstr ""
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "" msgstr ""
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr ""
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "" msgstr ""
@ -5819,34 +5867,6 @@ msgstr ""
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "هست عضو %s گروه" msgstr "هست عضو %s گروه"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr "قبلا تایید شده !"
#: lib/subs.php:56
msgid "User has blocked you."
msgstr ""
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr ""
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr ""
#: lib/subs.php:137
msgid "Not subscribed!"
msgstr "تایید نشده!"
#: lib/subs.php:142
msgid "Couldn't delete self-subscription."
msgstr ""
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr ""
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -5897,67 +5917,67 @@ msgstr "ویرایش اواتور"
msgid "User actions" msgid "User actions"
msgstr "" msgstr ""
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "ویرایش تنظیمات پروفيل" msgstr "ویرایش تنظیمات پروفيل"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "ویرایش" msgstr "ویرایش"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "پیام مستقیم به این کاربر بفرستید" msgstr "پیام مستقیم به این کاربر بفرستید"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "پیام" msgstr "پیام"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "چند ثانیه پیش" msgstr "چند ثانیه پیش"
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "حدود یک دقیقه پیش" msgstr "حدود یک دقیقه پیش"
#: lib/util.php:874 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "حدود %d دقیقه پیش" msgstr "حدود %d دقیقه پیش"
#: lib/util.php:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "حدود یک ساعت پیش" msgstr "حدود یک ساعت پیش"
#: lib/util.php:878 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "حدود %d ساعت پیش" msgstr "حدود %d ساعت پیش"
#: lib/util.php:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "حدود یک روز پیش" msgstr "حدود یک روز پیش"
#: lib/util.php:882 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "حدود %d روز پیش" msgstr "حدود %d روز پیش"
#: lib/util.php:884 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "حدود یک ماه پیش" msgstr "حدود یک ماه پیش"
#: lib/util.php:886 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "حدود %d ماه پیش" msgstr "حدود %d ماه پیش"
#: lib/util.php:888 #: lib/util.php:970
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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:14:39+0000\n" "PO-Revision-Date: 2010-02-24 23:50:33+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -68,7 +68,7 @@ msgstr ""
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -107,7 +107,6 @@ msgstr "Sivua ei ole."
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Käyttäjää ei ole." msgstr "Käyttäjää ei ole."
@ -175,8 +174,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "Sinä ja kaverit" msgstr "Sinä ja kaverit"
#: 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 "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!" msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!"
@ -197,12 +196,12 @@ msgstr "Käyttäjän %1$s ja kavereiden päivitykset palvelussa %2$s!"
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 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!"
@ -513,7 +512,7 @@ msgstr "Koko ei kelpaa."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -659,7 +658,7 @@ msgstr "Formaattia ei ole tuettu."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%s / Käyttäjän %s suosikit" msgstr "%s / Käyttäjän %s suosikit"
#: actions/apitimelinefavorites.php:120 #: actions/apitimelinefavorites.php:117
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s updates favorited by %2$s / %2$s." msgid "%1$s updates favorited by %2$s / %2$s."
msgstr " Palvelun %s päivitykset, jotka %s / %s on merkinnyt suosikikseen." msgstr " Palvelun %s päivitykset, jotka %s / %s on merkinnyt suosikikseen."
@ -670,7 +669,7 @@ msgstr " Palvelun %s päivitykset, jotka %s / %s on merkinnyt suosikikseen."
msgid "%s timeline" msgid "%s timeline"
msgstr "%s aikajana" msgstr "%s aikajana"
#: 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!"
@ -687,12 +686,12 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "" msgstr ""
"%1$s -päivitykset, jotka on vastauksia käyttäjän %2$s / %3$s päivityksiin." "%1$s -päivitykset, jotka on vastauksia käyttäjän %2$s / %3$s päivityksiin."
#: 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 julkinen aikajana" msgstr "%s julkinen aikajana"
#: 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 päivitykset kaikilta!" msgstr "%s päivitykset kaikilta!"
@ -702,7 +701,7 @@ msgstr "%s päivitykset kaikilta!"
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "Vastaukset käyttäjälle %s" msgstr "Vastaukset käyttäjälle %s"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, fuzzy, php-format #, fuzzy, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "Vastaukset käyttäjälle %s" msgstr "Vastaukset käyttäjälle %s"
@ -712,7 +711,7 @@ msgstr "Vastaukset käyttäjälle %s"
msgid "Notices tagged with %s" msgid "Notices tagged with %s"
msgstr "Päivitykset joilla on tagi %s" msgstr "Päivitykset joilla on tagi %s"
#: actions/apitimelinetag.php:108 actions/tagrss.php:64 #: actions/apitimelinetag.php:104 actions/tagrss.php:64
#, fuzzy, php-format #, fuzzy, php-format
msgid "Updates tagged with %1$s on %2$s!" msgid "Updates tagged with %1$s on %2$s!"
msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!"
@ -773,7 +772,7 @@ msgid "Preview"
msgstr "Esikatselu" msgstr "Esikatselu"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Poista" msgstr "Poista"
@ -958,7 +957,7 @@ msgstr "Sinä et kuulu tähän ryhmään."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Istuntoavaimesi kanssa oli ongelma." msgstr "Istuntoavaimesi kanssa oli ongelma."
@ -987,7 +986,7 @@ msgstr "Poista tämä päivitys"
#: 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -1018,7 +1017,7 @@ msgstr "Oletko varma että haluat poistaa tämän päivityksen?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Älä poista tätä päivitystä" msgstr "Älä poista tätä päivitystä"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Poista tämä päivitys" msgstr "Poista tämä päivitys"
@ -1277,7 +1276,7 @@ msgstr "kuvaus on liian pitkä (max %d merkkiä)."
msgid "Could not update group." msgid "Could not update group."
msgstr "Ei voitu päivittää ryhmää." msgstr "Ei voitu päivittää ryhmää."
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Ei voitu lisätä aliasta." msgstr "Ei voitu lisätä aliasta."
@ -2366,7 +2365,7 @@ msgid "Only "
msgstr "Vain " msgstr "Vain "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Tuo ei ole tuettu tietomuoto." msgstr "Tuo ei ole tuettu tietomuoto."
@ -2829,24 +2828,24 @@ msgstr "Kieli on liian pitkä (max 50 merkkiä)."
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Virheellinen tagi: \"%s\"" msgstr "Virheellinen tagi: \"%s\""
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Ei voitu asettaa käyttäjälle automaattista tilausta." msgstr "Ei voitu asettaa käyttäjälle automaattista tilausta."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
#, fuzzy #, fuzzy
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Tageja ei voitu tallentaa." msgstr "Tageja ei voitu tallentaa."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Ei voitu tallentaa profiilia." msgstr "Ei voitu tallentaa profiilia."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Tageja ei voitu tallentaa." msgstr "Tageja ei voitu tallentaa."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Asetukset tallennettu." msgstr "Asetukset tallennettu."
@ -3235,7 +3234,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "Profiilisi URL-osoite toisessa yhteensopivassa mikroblogauspalvelussa" msgstr "Profiilisi URL-osoite toisessa yhteensopivassa mikroblogauspalvelussa"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Tilaa" msgstr "Tilaa"
@ -3279,7 +3278,7 @@ msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Sinä olet jo estänyt tämän käyttäjän." msgstr "Sinä olet jo estänyt tämän käyttäjän."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Luotu" msgstr "Luotu"
@ -3984,15 +3983,26 @@ msgstr "Koodia ei ole syötetty."
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "Et ole tilannut tämän käyttäjän päivityksiä." msgstr "Et ole tilannut tämän käyttäjän päivityksiä."
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Tilausta ei onnistuttu tallentamaan." msgstr "Tilausta ei onnistuttu tallentamaan."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "Käyttäjä ei ole rekisteröitynyt tähän palveluun." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Tiedostoa ei ole."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Et ole tilannut tämän käyttäjän päivityksiä."
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "Tilattu" msgstr "Tilattu"
@ -4052,7 +4062,7 @@ msgstr "Näiden ihmisten päivityksiä sinä seuraat."
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "Käyttäjä %s seuraa näiden ihmisten päivityksiä." msgstr "Käyttäjä %s seuraa näiden ihmisten päivityksiä."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4062,16 +4072,16 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%s ei seuraa ketään käyttäjää." msgstr "%s ei seuraa ketään käyttäjää."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber" msgstr "Jabber"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS" msgstr "SMS"
@ -4500,23 +4510,23 @@ msgstr "Viestin päivittäminen uudella URI-osoitteella ei onnistunut."
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "Tietokantavirhe tallennettaessa risutagiä: %s" msgstr "Tietokantavirhe tallennettaessa risutagiä: %s"
#: classes/Notice.php:214 #: classes/Notice.php:222
#, fuzzy #, fuzzy
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "Ongelma päivityksen tallentamisessa." msgstr "Ongelma päivityksen tallentamisessa."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Virhe tapahtui päivityksen tallennuksessa. Tuntematon käyttäjä." msgstr "Virhe tapahtui päivityksen tallennuksessa. Tuntematon käyttäjä."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"Liian monta päivitystä liian nopeasti; pidä pieni hengähdystauko ja jatka " "Liian monta päivitystä liian nopeasti; pidä pieni hengähdystauko ja jatka "
"päivityksien lähettämista muutaman minuutin päästä." "päivityksien lähettämista muutaman minuutin päästä."
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
@ -4524,39 +4534,61 @@ msgstr ""
"Liian monta päivitystä liian nopeasti; pidä pieni hengähdystauko ja jatka " "Liian monta päivitystä liian nopeasti; pidä pieni hengähdystauko ja jatka "
"päivityksien lähettämista muutaman minuutin päästä." "päivityksien lähettämista muutaman minuutin päästä."
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Päivityksesi tähän palveluun on estetty." msgstr "Päivityksesi tähän palveluun on estetty."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Ongelma päivityksen tallentamisessa." msgstr "Ongelma päivityksen tallentamisessa."
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy #, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Ongelma päivityksen tallentamisessa." msgstr "Ongelma päivityksen tallentamisessa."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Tietokantavirhe tallennettaessa vastausta: %s"
#: 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)"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
#, fuzzy
msgid "You have been banned from subscribing."
msgstr "Käyttäjä on estänyt sinua tilaamasta päivityksiä."
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr ""
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "Käyttäjä on asettanut eston sinulle."
#: classes/Subscription.php:157
#, fuzzy
msgid "Not subscribed!"
msgstr "Ei ole tilattu!."
#: classes/Subscription.php:163
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Ei voitu poistaa tilausta."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Ei voitu poistaa tilausta."
#: classes/User.php:372
#, fuzzy, php-format #, fuzzy, php-format
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "Viesti käyttäjälle %1$s, %2$s" msgstr "Viesti käyttäjälle %1$s, %2$s"
#: classes/User_group.php:380 #: classes/User_group.php:423
msgid "Could not create group." msgid "Could not create group."
msgstr "Ryhmän luonti ei onnistunut." msgstr "Ryhmän luonti ei onnistunut."
#: classes/User_group.php:409 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Ryhmän jäsenyystietoja ei voitu asettaa." msgstr "Ryhmän jäsenyystietoja ei voitu asettaa."
@ -4762,26 +4794,38 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "Kaikki " msgstr "Kaikki "
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "lisenssi." msgstr "lisenssi."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "Sivutus" msgstr "Sivutus"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "Myöhemmin" msgstr "Myöhemmin"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "Aiemmin" msgstr "Aiemmin"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
#, fuzzy #, fuzzy
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
@ -5096,83 +5140,92 @@ msgstr "Ongelma päivityksen tallentamisessa."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "Anna käyttäjätunnus, jonka päivitykset haluat tilata" msgstr "Anna käyttäjätunnus, jonka päivitykset haluat tilata"
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "Käyttäjää ei ole."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "Käyttäjän %s päivitykset tilattu" msgstr "Käyttäjän %s päivitykset tilattu"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "Anna käyttäjätunnus, jonka päivityksien tilauksen haluat lopettaa" msgstr "Anna käyttäjätunnus, jonka päivityksien tilauksen haluat lopettaa"
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "Käyttäjän %s päivitysten tilaus lopetettu" msgstr "Käyttäjän %s päivitysten tilaus lopetettu"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "Komentoa ei ole vielä toteutettu." msgstr "Komentoa ei ole vielä toteutettu."
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "Ilmoitukset pois päältä." msgstr "Ilmoitukset pois päältä."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "Ilmoituksia ei voi pistää pois päältä." msgstr "Ilmoituksia ei voi pistää pois päältä."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "Ilmoitukset päällä." msgstr "Ilmoitukset päällä."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "Ilmoituksia ei voi pistää päälle." msgstr "Ilmoituksia ei voi pistää päälle."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Käyttäjän %s päivitysten tilaus lopetettu"
#: lib/command.php:709
#, fuzzy #, fuzzy
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "Et ole tilannut tämän käyttäjän päivityksiä." msgstr "Et ole tilannut tämän käyttäjän päivityksiä."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Olet jos tilannut seuraavien käyttäjien päivitykset:" msgstr[0] "Olet jos tilannut seuraavien käyttäjien päivitykset:"
msgstr[1] "Olet jos tilannut seuraavien käyttäjien päivitykset:" msgstr[1] "Olet jos tilannut seuraavien käyttäjien päivitykset:"
#: lib/command.php:690 #: lib/command.php:731
#, fuzzy #, fuzzy
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Toista ei voitu asettaa tilaamaan sinua." msgstr "Toista ei voitu asettaa tilaamaan sinua."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Toista ei voitu asettaa tilaamaan sinua." msgstr[0] "Toista ei voitu asettaa tilaamaan sinua."
msgstr[1] "Toista ei voitu asettaa tilaamaan sinua." msgstr[1] "Toista ei voitu asettaa tilaamaan sinua."
#: lib/command.php:712 #: lib/command.php:753
#, fuzzy #, fuzzy
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "Sinä et kuulu tähän ryhmään." msgstr "Sinä et kuulu tähän ryhmään."
#: lib/command.php:714 #: lib/command.php:755
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] "Sinä et kuulu tähän ryhmään." msgstr[0] "Sinä et kuulu tähän ryhmään."
msgstr[1] "Sinä et kuulu tähän ryhmään." msgstr[1] "Sinä et kuulu tähän ryhmään."
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5186,6 +5239,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5213,20 +5267,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Varmistuskoodia ei ole annettu." msgstr "Varmistuskoodia ei ole annettu."
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Kirjaudu sisään palveluun" msgstr "Kirjaudu sisään palveluun"
@ -5661,7 +5715,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr " lähteestä " msgstr " lähteestä "
@ -5785,51 +5839,51 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "Ei" msgstr "Ei"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:547 #: lib/noticelist.php:558
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "Ei sisältöä!" msgstr "Ei sisältöä!"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Luotu" msgstr "Luotu"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Vastaa tähän päivitykseen" msgstr "Vastaa tähän päivitykseen"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "Vastaus" msgstr "Vastaus"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Päivitys on poistettu." msgstr "Päivitys on poistettu."
@ -5863,11 +5917,6 @@ 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:465 lib/subs.php:48
#, fuzzy
msgid "You have been banned from subscribing."
msgstr "Käyttäjä on estänyt sinua tilaamasta päivityksiä."
#: lib/oauthstore.php:490 #: 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."
@ -6055,36 +6104,6 @@ msgstr "Ihmiset jotka ovat käyttäjän %s tilaajia"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "Ryhmät, joiden jäsen %s on" msgstr "Ryhmät, joiden jäsen %s on"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr ""
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "Käyttäjä on asettanut eston sinulle."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "Ei voitu tilata."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "Toista ei voitu asettaa tilaamaan sinua."
#: lib/subs.php:137
#, fuzzy
msgid "Not subscribed!"
msgstr "Ei ole tilattu!."
#: lib/subs.php:142
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Ei voitu poistaa tilausta."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Ei voitu poistaa tilausta."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6138,68 +6157,68 @@ msgstr "Kuva"
msgid "User actions" msgid "User actions"
msgstr "Käyttäjän toiminnot" msgstr "Käyttäjän toiminnot"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
#, fuzzy #, fuzzy
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Profiiliasetukset" msgstr "Profiiliasetukset"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Lähetä suora viesti tälle käyttäjälle" msgstr "Lähetä suora viesti tälle käyttäjälle"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Viesti" msgstr "Viesti"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "muutama sekunti sitten" msgstr "muutama sekunti sitten"
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "noin minuutti sitten" msgstr "noin minuutti sitten"
#: lib/util.php:874 #: lib/util.php:956
#, 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:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "noin tunti sitten" msgstr "noin tunti sitten"
#: lib/util.php:878 #: lib/util.php:960
#, 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:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "noin päivä sitten" msgstr "noin päivä sitten"
#: lib/util.php:882 #: lib/util.php:964
#, 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:884 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "noin kuukausi sitten" msgstr "noin kuukausi sitten"
#: lib/util.php:886 #: lib/util.php:968
#, 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:888 #: lib/util.php:970
msgid "about a year ago" msgid "about a year ago"
msgstr "noin vuosi sitten" msgstr "noin vuosi sitten"

View File

@ -14,12 +14,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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:14:44+0000\n" "PO-Revision-Date: 2010-02-24 23:50:48+0000\n"
"Language-Team: French\n" "Language-Team: French\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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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: fr\n" "X-Language-Code: fr\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -66,7 +66,7 @@ msgstr "Désactiver les nouvelles inscriptions."
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -104,7 +104,6 @@ msgstr "Page non trouvée"
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Utilisateur non trouvé." msgstr "Utilisateur non trouvé."
@ -175,8 +174,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "Vous et vos amis" msgstr "Vous et vos amis"
#: 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 "Statuts de %1$s et ses amis dans %2$s!" msgstr "Statuts de %1$s et ses amis dans %2$s!"
@ -197,12 +196,12 @@ msgstr "Statuts de %1$s et ses amis dans %2$s!"
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "Méthode API non trouvée !" msgstr "Méthode API non trouvée !"
@ -506,7 +505,7 @@ msgstr "Jeton incorrect."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -657,7 +656,7 @@ msgstr "Format non supporté."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%1$s / Favoris de %2$s" msgstr "%1$s / Favoris 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 statuts favoris de %2$s / %2$s." msgstr "%1$s statuts favoris de %2$s / %2$s."
@ -668,7 +667,7 @@ msgstr "%1$s statuts favoris de %2$s / %2$s."
msgid "%s timeline" msgid "%s timeline"
msgstr "Activité de %s" msgstr "Activité 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!"
@ -684,12 +683,12 @@ msgstr "%1$s / Mises à jour mentionnant %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 statuts en réponses aux statuts de %2$s / %3$s." msgstr "%1$s statuts en réponses aux statuts 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 "Activité publique %s" msgstr "Activité publique %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 statuts de tout le monde !" msgstr "%s statuts de tout le monde !"
@ -699,7 +698,7 @@ msgstr "%s statuts de tout le monde !"
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "Repris pour %s" msgstr "Repris pour %s"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, php-format #, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "Reprises de %s" msgstr "Reprises de %s"
@ -709,7 +708,7 @@ msgstr "Reprises de %s"
msgid "Notices tagged with %s" msgid "Notices tagged with %s"
msgstr "Avis marqués avec %s" msgstr "Avis marqués avec %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 "Mises à jour marquées avec %1$s dans %2$s !" msgstr "Mises à jour marquées avec %1$s dans %2$s !"
@ -772,7 +771,7 @@ msgid "Preview"
msgstr "Aperçu" msgstr "Aperçu"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Supprimer" msgstr "Supprimer"
@ -953,7 +952,7 @@ msgstr "Vous nêtes pas le propriétaire de cette application."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Un problème est survenu avec votre jeton de session." msgstr "Un problème est survenu avec votre jeton de session."
@ -982,7 +981,7 @@ msgstr "Supprimer cette application"
#: 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -1013,7 +1012,7 @@ msgstr "Voulez-vous vraiment supprimer cet avis ?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Ne pas supprimer cet avis" msgstr "Ne pas supprimer cet avis"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Supprimer cet avis" msgstr "Supprimer cet avis"
@ -1254,7 +1253,7 @@ msgstr "la description est trop longue (%d caractères maximum)."
msgid "Could not update group." msgid "Could not update group."
msgstr "Impossible de mettre à jour le groupe." msgstr "Impossible de mettre à jour le groupe."
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Impossible de créer les alias." msgstr "Impossible de créer les alias."
@ -2357,7 +2356,7 @@ msgid "Only "
msgstr "Seulement " msgstr "Seulement "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Format de données non supporté." msgstr "Format de données non supporté."
@ -2801,23 +2800,23 @@ msgstr "La langue est trop longue (255 caractères maximum)."
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Marque invalide : « %s »" msgstr "Marque invalide : « %s »"
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Impossible de mettre à jour lauto-abonnement." msgstr "Impossible de mettre à jour lauto-abonnement."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Impossible denregistrer les préférences de localisation." msgstr "Impossible denregistrer les préférences de localisation."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Impossible denregistrer le profil." msgstr "Impossible denregistrer le profil."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Impossible denregistrer les marques." msgstr "Impossible denregistrer les marques."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Préférences enregistrées." msgstr "Préférences enregistrées."
@ -3220,7 +3219,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "URL de votre profil sur un autre service de micro-blogging compatible" msgstr "URL de votre profil sur un autre service de micro-blogging compatible"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Sabonner" msgstr "Sabonner"
@ -3257,7 +3256,7 @@ msgstr "Vous ne pouvez pas reprendre votre propre avis."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Vous avez déjà repris cet avis." msgstr "Vous avez déjà repris cet avis."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "Repris" msgstr "Repris"
@ -3978,15 +3977,26 @@ msgstr "Aucun code entré"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "Vous nêtes pas abonné(e) à ce profil." msgstr "Vous nêtes pas abonné(e) à ce profil."
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Impossible denregistrer labonnement." msgstr "Impossible denregistrer labonnement."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "Ceci nest pas un utilisateur local." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Fichier non trouvé."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Vous nêtes pas abonné(e) à ce profil."
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "Abonné" msgstr "Abonné"
@ -4050,7 +4060,7 @@ msgstr "Vous suivez les avis de ces personnes."
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "Les avis de ces personnes sont suivis par %s." msgstr "Les avis de ces personnes sont suivis par %s."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4066,16 +4076,16 @@ msgstr ""
"êtes un [utilisateur de Twitter](%%action.twittersettings%%), vous pouvez " "êtes un [utilisateur de Twitter](%%action.twittersettings%%), vous pouvez "
"vous abonner automatiquement aux gens auquels vous êtes déjà abonné là-bas." "vous abonner automatiquement aux gens auquels vous êtes déjà abonné là-bas."
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%s ne suit actuellement personne." msgstr "%s ne suit actuellement personne."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber" msgstr "Jabber"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS" msgstr "SMS"
@ -4506,22 +4516,22 @@ msgstr "Impossible de mettre à jour le message avec un nouvel URI."
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "Erreur de base de donnée en insérant la marque (hashtag) : %s" msgstr "Erreur de base de donnée en insérant la marque (hashtag) : %s"
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "Problème lors de lenregistrement de lavis ; trop long." msgstr "Problème lors de lenregistrement de lavis ; trop long."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Erreur lors de lenregistrement de lavis. Utilisateur inconnu." msgstr "Erreur lors de lenregistrement de lavis. Utilisateur inconnu."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"Trop davis, trop vite ! Faites une pause et publiez à nouveau dans quelques " "Trop davis, trop vite ! Faites une pause et publiez à nouveau dans quelques "
"minutes." "minutes."
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
@ -4529,38 +4539,57 @@ msgstr ""
"Trop de messages en double trop vite ! Prenez une pause et publiez à nouveau " "Trop de messages en double trop vite ! Prenez une pause et publiez à nouveau "
"dans quelques minutes." "dans quelques minutes."
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Il vous est interdit de poster des avis sur ce site." msgstr "Il vous est interdit de poster des avis sur ce site."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Problème lors de lenregistrement de lavis." msgstr "Problème lors de lenregistrement de lavis."
#: classes/Notice.php:788 #: classes/Notice.php:882
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Problème lors de lenregistrement de la boîte de réception du groupe." msgstr "Problème lors de lenregistrement de la boîte de réception du groupe."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Erreur de base de donnée en insérant la réponse :%s"
#: 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"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr "Il vous avez été interdit de vous abonner."
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr "Déjà abonné !"
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "Cet utilisateur vous a bloqué."
#: classes/Subscription.php:157
msgid "Not subscribed!"
msgstr "Pas abonné !"
#: classes/Subscription.php:163
msgid "Couldn't delete self-subscription."
msgstr "Impossible de supprimer labonnement à soi-même."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Impossible de cesser labonnement"
#: classes/User.php:372
#, php-format #, php-format
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "Bienvenue à %1$s, @%2$s !" msgstr "Bienvenue à %1$s, @%2$s !"
#: classes/User_group.php:380 #: classes/User_group.php:423
msgid "Could not create group." msgid "Could not create group."
msgstr "Impossible de créer le groupe." msgstr "Impossible de créer le groupe."
#: classes/User_group.php:409 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Impossible détablir linscription au groupe." msgstr "Impossible détablir linscription au groupe."
@ -4765,26 +4794,38 @@ msgstr ""
"Le contenu et les données sont sous le droit dauteur du contributeur. Tous " "Le contenu et les données sont sous le droit dauteur du contributeur. Tous "
"droits réservés." "droits réservés."
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "Tous " msgstr "Tous "
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "licence." msgstr "licence."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "Pagination" msgstr "Pagination"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "Après" msgstr "Après"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "Avant" msgstr "Avant"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "Vous ne pouvez pas faire de modifications sur ce site." msgstr "Vous ne pouvez pas faire de modifications sur ce site."
@ -5088,82 +5129,92 @@ msgstr "Problème lors de lenregistrement de lavis."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "Indiquez le nom de lutilisateur auquel vous souhaitez vous abonner" msgstr "Indiquez le nom de lutilisateur auquel vous souhaitez vous abonner"
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "Utilisateur non trouvé."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "Abonné à %s" msgstr "Abonné à %s"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "Indiquez le nom de lutilisateur duquel vous souhaitez vous désabonner" msgstr "Indiquez le nom de lutilisateur duquel vous souhaitez vous désabonner"
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "Désabonné de %s" msgstr "Désabonné de %s"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "Cette commande na pas encore été implémentée." msgstr "Cette commande na pas encore été implémentée."
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "Avertissements désactivés." msgstr "Avertissements désactivés."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "Impossible de désactiver les avertissements." msgstr "Impossible de désactiver les avertissements."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "Avertissements activés." msgstr "Avertissements activés."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "Impossible dactiver les avertissements." msgstr "Impossible dactiver les avertissements."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "La commande douverture de session est désactivée" msgstr "La commande douverture de session est désactivée"
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
"Ce lien nest utilisable quune seule fois, et est valable uniquement " "Ce lien nest utilisable quune seule fois, et est valable uniquement "
"pendant 2 minutes : %s" "pendant 2 minutes : %s"
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Désabonné de %s"
#: lib/command.php:709
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "Vous nêtes abonné(e) à personne." msgstr "Vous nêtes abonné(e) à personne."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Vous êtes abonné à cette personne :" msgstr[0] "Vous êtes abonné à cette personne :"
msgstr[1] "Vous êtes abonné à ces personnes :" msgstr[1] "Vous êtes abonné à ces personnes :"
#: lib/command.php:690 #: lib/command.php:731
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Personne ne sest abonné à vous." msgstr "Personne ne sest abonné à vous."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Cette personne est abonnée à vous :" msgstr[0] "Cette personne est abonnée à vous :"
msgstr[1] "Ces personnes sont abonnées à vous :" msgstr[1] "Ces personnes sont abonnées à vous :"
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "Vous nêtes membre daucun groupe." msgstr "Vous nêtes membre daucun groupe."
#: lib/command.php:714 #: lib/command.php:755
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] "Vous êtes membre de ce groupe :" msgstr[0] "Vous êtes membre de ce groupe :"
msgstr[1] "Vous êtes membre de ces groupes :" msgstr[1] "Vous êtes membre de ces groupes :"
#: lib/command.php:728 #: lib/command.php:769
#, fuzzy
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5177,6 +5228,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5242,20 +5294,20 @@ msgstr ""
"tracks - pas encore implémenté.\n" "tracks - pas encore implémenté.\n"
"tracking - pas encore implémenté.\n" "tracking - pas encore implémenté.\n"
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Aucun fichier de configuration na été trouvé. " msgstr "Aucun fichier de configuration na été trouvé. "
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
"Jai cherché des fichiers de configuration dans les emplacements suivants : " "Jai cherché des fichiers de configuration dans les emplacements suivants : "
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "Vous pouvez essayer de lancer linstalleur pour régler ce problème." msgstr "Vous pouvez essayer de lancer linstalleur pour régler ce problème."
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Aller au programme dinstallation" msgstr "Aller au programme dinstallation"
@ -5754,7 +5806,7 @@ msgstr ""
"pour démarrer des conversations avec dautres utilisateurs. Ceux-ci peuvent " "pour démarrer des conversations avec dautres utilisateurs. Ceux-ci peuvent "
"vous envoyer des messages destinés à vous seul(e)." "vous envoyer des messages destinés à vous seul(e)."
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "de" msgstr "de"
@ -5880,48 +5932,48 @@ msgstr ""
"Désolé, lobtention de votre localisation prend plus de temps que prévu. " "Désolé, lobtention de votre localisation prend plus de temps que prévu. "
"Veuillez réessayer plus tard." "Veuillez réessayer plus tard."
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u° %2$u' %3$u\" %4$s %5$u° %6$u' %7$u\" %8$s" msgstr "%1$u° %2$u' %3$u\" %4$s %5$u° %6$u' %7$u\" %8$s"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "N" msgstr "N"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "S" msgstr "S"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "E" msgstr "E"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "O" msgstr "O"
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "chez" msgstr "chez"
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "dans le contexte" msgstr "dans le contexte"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "Repris par" msgstr "Repris par"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Répondre à cet avis" msgstr "Répondre à cet avis"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "Répondre" msgstr "Répondre"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Avis repris" msgstr "Avis repris"
@ -5953,10 +6005,6 @@ msgstr "Erreur lors de linsertion du profil distant"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Dupliquer lavis" msgstr "Dupliquer lavis"
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr "Il vous avez été interdit de vous abonner."
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Impossible dinsérer un nouvel abonnement." msgstr "Impossible dinsérer un nouvel abonnement."
@ -6133,34 +6181,6 @@ msgstr "Abonnés de %s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "Groupes de %s" msgstr "Groupes de %s"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr "Déjà abonné !"
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "Cet utilisateur vous a bloqué."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "Impossible de sabonner."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "Impossible dabonner une autre personne à votre profil."
#: lib/subs.php:137
msgid "Not subscribed!"
msgstr "Pas abonné !"
#: lib/subs.php:142
msgid "Couldn't delete self-subscription."
msgstr "Impossible de supprimer labonnement à soi-même."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Impossible de cesser labonnement"
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6211,67 +6231,67 @@ msgstr "Modifier lavatar"
msgid "User actions" msgid "User actions"
msgstr "Actions de lutilisateur" msgstr "Actions de lutilisateur"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Modifier les paramètres du profil" msgstr "Modifier les paramètres du profil"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "Modifier" msgstr "Modifier"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Envoyer un message à cet utilisateur" msgstr "Envoyer un message à cet utilisateur"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Message" msgstr "Message"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "Modérer" msgstr "Modérer"
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "il y a quelques secondes" msgstr "il y a quelques secondes"
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "il y a 1 minute" msgstr "il y a 1 minute"
#: lib/util.php:874 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "il y a %d minutes" msgstr "il y a %d minutes"
#: lib/util.php:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "il y a 1 heure" msgstr "il y a 1 heure"
#: lib/util.php:878 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "il y a %d heures" msgstr "il y a %d heures"
#: lib/util.php:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "il y a 1 jour" msgstr "il y a 1 jour"
#: lib/util.php:882 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "il y a %d jours" msgstr "il y a %d jours"
#: lib/util.php:884 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "il y a 1 mois" msgstr "il y a 1 mois"
#: lib/util.php:886 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "il y a %d mois" msgstr "il y a %d mois"
#: lib/util.php:888 #: lib/util.php:970
msgid "about a year ago" msgid "about a year ago"
msgstr "il y a environ 1 an" msgstr "il y a environ 1 an"

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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:14:47+0000\n" "PO-Revision-Date: 2010-02-24 23:50:51+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -67,7 +67,7 @@ msgstr ""
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -107,7 +107,6 @@ msgstr "Non existe a etiqueta."
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Ningún usuario." msgstr "Ningún usuario."
@ -170,8 +169,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "%s e amigos" msgstr "%s 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 "Actualizacións dende %1$s e amigos en %2$s!" msgstr "Actualizacións dende %1$s e amigos en %2$s!"
@ -192,12 +191,12 @@ msgstr "Actualizacións dende %1$s e amigos en %2$s!"
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 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"
@ -511,7 +510,7 @@ msgstr "Tamaño inválido."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -658,7 +657,7 @@ msgstr "Formato de ficheiro de imaxe non soportado."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%s / Favoritos dende %s" msgstr "%s / Favoritos dende %s"
#: actions/apitimelinefavorites.php:120 #: actions/apitimelinefavorites.php:117
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s updates favorited by %2$s / %2$s." msgid "%1$s updates favorited by %2$s / %2$s."
msgstr "%s updates favorited by %s / %s." msgstr "%s updates favorited by %s / %s."
@ -669,7 +668,7 @@ msgstr "%s updates favorited by %s / %s."
msgid "%s timeline" msgid "%s timeline"
msgstr "Liña de tempo de %s" msgstr "Liña de tempo 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!"
@ -685,12 +684,12 @@ msgstr "%1$s / Chíos que respostan a %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 "Hai %1$s chíos en resposta a chíos dende %2$s / %3$s." msgstr "Hai %1$s chíos en resposta a chíos dende %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 "Liña de tempo pública de %s" msgstr "Liña de tempo pública 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 chíos de calquera!" msgstr "%s chíos de calquera!"
@ -700,7 +699,7 @@ msgstr "%s chíos de calquera!"
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "Replies to %s" msgstr "Replies to %s"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, fuzzy, php-format #, fuzzy, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "Replies to %s" msgstr "Replies to %s"
@ -710,7 +709,7 @@ msgstr "Replies to %s"
msgid "Notices tagged with %s" msgid "Notices tagged with %s"
msgstr "Chíos tagueados con %s" msgstr "Chíos tagueados con %s"
#: actions/apitimelinetag.php:108 actions/tagrss.php:64 #: actions/apitimelinetag.php:104 actions/tagrss.php:64
#, fuzzy, php-format #, fuzzy, php-format
msgid "Updates tagged with %1$s on %2$s!" msgid "Updates tagged with %1$s on %2$s!"
msgstr "Actualizacións dende %1$s en %2$s!" msgstr "Actualizacións dende %1$s en %2$s!"
@ -773,7 +772,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
#, fuzzy #, fuzzy
msgid "Delete" msgid "Delete"
msgstr "eliminar" msgstr "eliminar"
@ -968,7 +967,7 @@ msgstr "Non estás suscrito a ese perfil"
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
#, fuzzy #, fuzzy
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..."
@ -998,7 +997,7 @@ msgstr "Eliminar chí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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -1031,7 +1030,7 @@ msgstr "Estas seguro que queres eliminar este chío?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Non se pode eliminar este chíos." msgstr "Non se pode eliminar este chíos."
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
#, fuzzy #, fuzzy
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Eliminar chío" msgstr "Eliminar chío"
@ -1298,7 +1297,7 @@ msgstr "O teu Bio é demasiado longo (max 140 car.)."
msgid "Could not update group." msgid "Could not update group."
msgstr "Non se puido actualizar o usuario." msgstr "Non se puido actualizar o usuario."
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:433
#, fuzzy #, fuzzy
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Non se puido crear o favorito." msgstr "Non se puido crear o favorito."
@ -2397,7 +2396,7 @@ msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
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."
@ -2861,24 +2860,24 @@ msgstr "A Linguaxe é demasiado longa (max 50 car.)."
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Etiqueta inválida: '%s'" msgstr "Etiqueta inválida: '%s'"
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Non se puido actualizar o usuario para autosuscrición." msgstr "Non se puido actualizar o usuario para autosuscrición."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
#, fuzzy #, fuzzy
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Non se puideron gardar as etiquetas." msgstr "Non se puideron gardar as etiquetas."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Non se puido gardar o perfil." msgstr "Non se puido gardar o perfil."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Non se puideron gardar as etiquetas." msgstr "Non se puideron gardar as etiquetas."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Configuracións gardadas." msgstr "Configuracións gardadas."
@ -3276,7 +3275,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "Enderezo do teu perfil en outro servizo de microblogaxe compatíbel" msgstr "Enderezo do teu perfil en outro servizo de microblogaxe compatíbel"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Subscribir" msgstr "Subscribir"
@ -3319,7 +3318,7 @@ msgstr "Non podes rexistrarte se non estas de acordo coa licenza."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Xa bloqueaches a este usuario." msgstr "Xa bloqueaches a este usuario."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Crear" msgstr "Crear"
@ -4036,15 +4035,26 @@ msgstr "Non se inseriu ningún código"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "Non estás suscrito a ese perfil" msgstr "Non estás suscrito a ese perfil"
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Non se pode gardar a subscrición." msgstr "Non se pode gardar a subscrición."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "Non é usuario local." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Ningún chío."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Non estás suscrito a ese perfil"
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "Suscrito" msgstr "Suscrito"
@ -4104,7 +4114,7 @@ msgstr "Esa é a xente á que lle estas a escoitar os seus chíos"
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "Esta é a xente á que lle estas a escoitar os chíos %s." msgstr "Esta é a xente á que lle estas a escoitar os chíos %s."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4114,16 +4124,16 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, fuzzy, php-format #, fuzzy, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%1$s está a escoitar os teus chíos %2$s." msgstr "%1$s está a escoitar os teus chíos %2$s."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber." msgstr "Jabber."
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS" msgstr "SMS"
@ -4556,23 +4566,23 @@ msgstr "Non se puido actualizar a mensaxe coa nova URI."
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "Erro ó inserir o hashtag na BD: %s" msgstr "Erro ó inserir o hashtag na BD: %s"
#: classes/Notice.php:214 #: classes/Notice.php:222
#, fuzzy #, fuzzy
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "Aconteceu un erro ó gardar o chío." msgstr "Aconteceu un erro ó gardar o chío."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Aconteceu un erro ó gardar o chío. Usuario descoñecido." msgstr "Aconteceu un erro ó gardar o chío. Usuario descoñecido."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " "Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro "
"duns minutos." "duns minutos."
#: classes/Notice.php:229 #: classes/Notice.php:237
#, fuzzy #, fuzzy
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
@ -4581,40 +4591,62 @@ msgstr ""
"Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " "Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro "
"duns minutos." "duns minutos."
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Tes restrinxido o envio de chíos neste sitio." msgstr "Tes restrinxido o envio de chíos neste sitio."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Aconteceu un erro ó gardar o chío." msgstr "Aconteceu un erro ó gardar o chío."
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy #, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Aconteceu un erro ó gardar o chío." msgstr "Aconteceu un erro ó gardar o chío."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Erro ó inserir a contestación na BD: %s"
#: 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)"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
#, fuzzy
msgid "You have been banned from subscribing."
msgstr "Este usuario non che permite suscribirte a el."
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr ""
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "O usuario bloqueoute."
#: classes/Subscription.php:157
#, fuzzy
msgid "Not subscribed!"
msgstr "Non está suscrito!"
#: classes/Subscription.php:163
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Non se pode eliminar a subscrición."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Non se pode eliminar a subscrición."
#: classes/User.php:372
#, fuzzy, php-format #, fuzzy, php-format
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "Mensaxe de %1$s en %2$s" msgstr "Mensaxe de %1$s en %2$s"
#: classes/User_group.php:380 #: classes/User_group.php:423
#, fuzzy #, fuzzy
msgid "Could not create group." msgid "Could not create group."
msgstr "Non se puido crear o favorito." msgstr "Non se puido crear o favorito."
#: classes/User_group.php:409 #: classes/User_group.php:452
#, fuzzy #, fuzzy
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Non se pode gardar a subscrición." msgstr "Non se pode gardar a subscrición."
@ -4829,29 +4861,41 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
#, fuzzy #, fuzzy
msgid "All " msgid "All "
msgstr "Todos" msgstr "Todos"
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1139 #: lib/action.php:1141
#, fuzzy #, fuzzy
msgid "After" msgid "After"
msgstr "« Despois" msgstr "« Despois"
#: lib/action.php:1147 #: lib/action.php:1149
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "Antes »" msgstr "Antes »"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
#, fuzzy #, fuzzy
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
@ -5170,55 +5214,64 @@ msgstr "Aconteceu un erro ó gardar o chío."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "Especifica o nome do usuario ó que queres suscribirte" msgstr "Especifica o nome do usuario ó que queres suscribirte"
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "Ningún usuario."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "Suscrito a %s" msgstr "Suscrito a %s"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "Especifica o nome de usuario ó que queres deixar de seguir" msgstr "Especifica o nome de usuario ó que queres deixar de seguir"
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "Desuscribir de %s" msgstr "Desuscribir de %s"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "Comando non implementado." msgstr "Comando non implementado."
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "Notificación desactivada." msgstr "Notificación desactivada."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "No se pode desactivar a notificación." msgstr "No se pode desactivar a notificación."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "Notificación habilitada." msgstr "Notificación habilitada."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "Non se pode activar a notificación." msgstr "Non se pode activar a notificación."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Desuscribir de %s"
#: lib/command.php:709
#, fuzzy #, fuzzy
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "Non estás suscrito a ese perfil" msgstr "Non estás suscrito a ese perfil"
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Xa estas suscrito a estes usuarios:" msgstr[0] "Xa estas suscrito a estes usuarios:"
@ -5227,12 +5280,12 @@ msgstr[2] ""
msgstr[3] "" msgstr[3] ""
msgstr[4] "" msgstr[4] ""
#: lib/command.php:690 #: lib/command.php:731
#, fuzzy #, fuzzy
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Outro usuario non se puido suscribir a ti." msgstr "Outro usuario non se puido suscribir a ti."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Outro usuario non se puido suscribir a ti." msgstr[0] "Outro usuario non se puido suscribir a ti."
@ -5241,12 +5294,12 @@ msgstr[2] ""
msgstr[3] "" msgstr[3] ""
msgstr[4] "" msgstr[4] ""
#: lib/command.php:712 #: lib/command.php:753
#, fuzzy #, fuzzy
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "Non estás suscrito a ese perfil" msgstr "Non estás suscrito a ese perfil"
#: lib/command.php:714 #: lib/command.php:755
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] "Non estás suscrito a ese perfil" msgstr[0] "Non estás suscrito a ese perfil"
@ -5255,7 +5308,7 @@ msgstr[2] ""
msgstr[3] "" msgstr[3] ""
msgstr[4] "" msgstr[4] ""
#: lib/command.php:728 #: lib/command.php:769
#, fuzzy #, fuzzy
msgid "" msgid ""
"Commands:\n" "Commands:\n"
@ -5270,6 +5323,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5323,20 +5377,20 @@ msgstr ""
"tracks - non implementado por agora.\n" "tracks - non implementado por agora.\n"
"tracking - non implementado por agora.\n" "tracking - non implementado por agora.\n"
#: lib/common.php:135 #: lib/common.php:136
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Sen código de confirmación." msgstr "Sen código de confirmación."
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""
@ -5821,7 +5875,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr " dende " msgstr " dende "
@ -5948,53 +6002,53 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "No" msgstr "No"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:547 #: lib/noticelist.php:558
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "Sen contido!" msgstr "Sen contido!"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Crear" msgstr "Crear"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
#, fuzzy #, fuzzy
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Non se pode eliminar este chíos." msgstr "Non se pode eliminar este chíos."
#: lib/noticelist.php:599 #: lib/noticelist.php:611
#, fuzzy #, fuzzy
msgid "Reply" msgid "Reply"
msgstr "contestar" msgstr "contestar"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Chío publicado" msgstr "Chío publicado"
@ -6031,11 +6085,6 @@ 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:465 lib/subs.php:48
#, fuzzy
msgid "You have been banned from subscribing."
msgstr "Este usuario non che permite suscribirte a el."
#: lib/oauthstore.php:490 #: 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."
@ -6227,36 +6276,6 @@ msgstr "Suscrito a %s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "" msgstr ""
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr ""
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "O usuario bloqueoute."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "No se pode suscribir."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "Outro usuario non se puido suscribir a ti."
#: lib/subs.php:137
#, fuzzy
msgid "Not subscribed!"
msgstr "Non está suscrito!"
#: lib/subs.php:142
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Non se pode eliminar a subscrición."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Non se pode eliminar a subscrición."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6313,70 +6332,70 @@ msgstr "Avatar"
msgid "User actions" msgid "User actions"
msgstr "Outras opcions" msgstr "Outras opcions"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
#, fuzzy #, fuzzy
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Configuración de perfil" msgstr "Configuración de perfil"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: lib/userprofile.php:272 #: lib/userprofile.php:275
#, fuzzy #, fuzzy
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Non podes enviar mensaxes a este usurio." msgstr "Non podes enviar mensaxes a este usurio."
#: lib/userprofile.php:273 #: lib/userprofile.php:276
#, fuzzy #, fuzzy
msgid "Message" msgid "Message"
msgstr "Nova mensaxe" msgstr "Nova mensaxe"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "fai uns segundos" msgstr "fai uns segundos"
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "fai un minuto" msgstr "fai un minuto"
#: lib/util.php:874 #: lib/util.php:956
#, 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:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "fai unha hora" msgstr "fai unha hora"
#: lib/util.php:878 #: lib/util.php:960
#, 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:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "fai un día" msgstr "fai un día"
#: lib/util.php:882 #: lib/util.php:964
#, 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:884 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "fai un mes" msgstr "fai un mes"
#: lib/util.php:886 #: lib/util.php:968
#, 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:888 #: lib/util.php:970
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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:14:50+0000\n" "PO-Revision-Date: 2010-02-24 23:50:54+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -64,7 +64,7 @@ msgstr ""
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -104,7 +104,6 @@ msgstr "אין הודעה כזו."
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "אין משתמש כזה." msgstr "אין משתמש כזה."
@ -167,8 +166,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "%s וחברים" msgstr "%s וחברים"
#: 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 ""
@ -189,12 +188,12 @@ msgstr ""
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "קוד האישור לא נמצא." msgstr "קוד האישור לא נמצא."
@ -504,7 +503,7 @@ msgstr "גודל לא חוקי."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -649,7 +648,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
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s updates favorited by %2$s / %2$s." msgid "%1$s updates favorited by %2$s / %2$s."
msgstr "מיקרובלוג מאת %s" msgstr "מיקרובלוג מאת %s"
@ -660,7 +659,7 @@ msgstr "מיקרובלוג מאת %s"
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!"
@ -676,12 +675,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 "" 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 ""
@ -691,7 +690,7 @@ msgstr ""
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "תגובת עבור %s" msgstr "תגובת עבור %s"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, fuzzy, php-format #, fuzzy, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "תגובת עבור %s" msgstr "תגובת עבור %s"
@ -701,7 +700,7 @@ msgstr "תגובת עבור %s"
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
#, fuzzy, php-format #, fuzzy, php-format
msgid "Updates tagged with %1$s on %2$s!" msgid "Updates tagged with %1$s on %2$s!"
msgstr "מיקרובלוג מאת %s" msgstr "מיקרובלוג מאת %s"
@ -765,7 +764,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
#, fuzzy #, fuzzy
msgid "Delete" msgid "Delete"
msgstr "מחק" msgstr "מחק"
@ -957,7 +956,7 @@ msgstr "לא שלחנו אלינו את הפרופיל הזה"
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -986,7 +985,7 @@ msgstr "תאר את עצמך ואת נושאי העניין שלך ב-140 אות
#: 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -1016,7 +1015,7 @@ msgstr ""
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "אין הודעה כזו." msgstr "אין הודעה כזו."
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "" msgstr ""
@ -1276,7 +1275,7 @@ msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיו
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:433
#, fuzzy #, fuzzy
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "שמירת מידע התמונה נכשל" msgstr "שמירת מידע התמונה נכשל"
@ -2328,7 +2327,7 @@ msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -2784,25 +2783,25 @@ msgstr ""
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "כתובת אתר הבית '%s' אינה חוקית" msgstr "כתובת אתר הבית '%s' אינה חוקית"
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
#, fuzzy #, fuzzy
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "שמירת הפרופיל נכשלה." msgstr "שמירת הפרופיל נכשלה."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "שמירת הפרופיל נכשלה." msgstr "שמירת הפרופיל נכשלה."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
#, fuzzy #, fuzzy
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "שמירת הפרופיל נכשלה." msgstr "שמירת הפרופיל נכשלה."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "ההגדרות נשמרו." msgstr "ההגדרות נשמרו."
@ -3164,7 +3163,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "כתובת הפרופיל שלך בשרות ביקרובלוג תואם אחר" msgstr "כתובת הפרופיל שלך בשרות ביקרובלוג תואם אחר"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "הירשם כמנוי" msgstr "הירשם כמנוי"
@ -3205,7 +3204,7 @@ msgstr "לא ניתן להירשם ללא הסכמה לרשיון"
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "כבר נכנסת למערכת!" msgstr "כבר נכנסת למערכת!"
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "צור" msgstr "צור"
@ -3891,17 +3890,27 @@ msgstr ""
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "לא שלחנו אלינו את הפרופיל הזה" msgstr "לא שלחנו אלינו את הפרופיל הזה"
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
#, fuzzy #, fuzzy
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "יצירת המנוי נכשלה." msgstr "יצירת המנוי נכשלה."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
#, fuzzy msgid "This action only accepts POST requests."
msgid "Not a local user." msgstr ""
msgstr "אין משתמש כזה."
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "אין הודעה כזו."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "לא שלחנו אלינו את הפרופיל הזה"
#: actions/subscribe.php:145
#, fuzzy #, fuzzy
msgid "Subscribed" msgid "Subscribed"
msgstr "הירשם כמנוי" msgstr "הירשם כמנוי"
@ -3962,7 +3971,7 @@ msgstr "אלה האנשים שלהודעות שלהם אתה מאזין."
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "אלה האנשים ש%s מאזין להודעות שלהם." msgstr "אלה האנשים ש%s מאזין להודעות שלהם."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -3972,17 +3981,17 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, fuzzy, php-format #, fuzzy, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s"
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
#, fuzzy #, fuzzy
msgid "Jabber" msgid "Jabber"
msgstr "אין זיהוי Jabber כזה." msgstr "אין זיהוי Jabber כזה."
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "סמס" msgstr "סמס"
@ -4405,61 +4414,83 @@ msgstr ""
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "" msgstr ""
#: classes/Notice.php:214 #: classes/Notice.php:222
#, fuzzy #, fuzzy
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "בעיה בשמירת ההודעה." msgstr "בעיה בשמירת ההודעה."
#: classes/Notice.php:218 #: classes/Notice.php:226
#, fuzzy #, fuzzy
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "בעיה בשמירת ההודעה." msgstr "בעיה בשמירת ההודעה."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "בעיה בשמירת ההודעה." msgstr "בעיה בשמירת ההודעה."
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy #, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "בעיה בשמירת ההודעה." msgstr "בעיה בשמירת ההודעה."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s"
#: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr ""
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr ""
#: classes/Subscription.php:74
#, fuzzy
msgid "User has blocked you."
msgstr "למשתמש אין פרופיל."
#: classes/Subscription.php:157
#, fuzzy
msgid "Not subscribed!"
msgstr "לא מנוי!"
#: classes/Subscription.php:163
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "מחיקת המנוי לא הצליחה."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "מחיקת המנוי לא הצליחה."
#: classes/User.php:372
#, php-format #, php-format
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:423
#, fuzzy #, fuzzy
msgid "Could not create group." msgid "Could not create group."
msgstr "שמירת מידע התמונה נכשל" msgstr "שמירת מידע התמונה נכשל"
#: classes/User_group.php:409 #: classes/User_group.php:452
#, fuzzy #, fuzzy
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "יצירת המנוי נכשלה." msgstr "יצירת המנוי נכשלה."
@ -4671,28 +4702,40 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1139 #: lib/action.php:1141
#, fuzzy #, fuzzy
msgid "After" msgid "After"
msgstr "<< אחרי" msgstr "<< אחרי"
#: lib/action.php:1147 #: lib/action.php:1149
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "לפני >>" msgstr "לפני >>"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "" msgstr ""
@ -5003,83 +5046,93 @@ msgstr "בעיה בשמירת ההודעה."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "" msgstr ""
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
#, fuzzy
msgid "No such user"
msgstr "אין משתמש כזה."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "" msgstr ""
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "" msgstr ""
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "" msgstr ""
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "" msgstr ""
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "" msgstr ""
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "" msgstr ""
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "" msgstr ""
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "" msgstr ""
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "בטל מנוי"
#: lib/command.php:709
#, fuzzy #, fuzzy
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "לא שלחנו אלינו את הפרופיל הזה" msgstr "לא שלחנו אלינו את הפרופיל הזה"
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "לא שלחנו אלינו את הפרופיל הזה" msgstr[0] "לא שלחנו אלינו את הפרופיל הזה"
msgstr[1] "לא שלחנו אלינו את הפרופיל הזה" msgstr[1] "לא שלחנו אלינו את הפרופיל הזה"
#: lib/command.php:690 #: lib/command.php:731
#, fuzzy #, fuzzy
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "הרשמה מרוחקת" msgstr "הרשמה מרוחקת"
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "הרשמה מרוחקת" msgstr[0] "הרשמה מרוחקת"
msgstr[1] "הרשמה מרוחקת" msgstr[1] "הרשמה מרוחקת"
#: lib/command.php:712 #: lib/command.php:753
#, fuzzy #, fuzzy
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "לא שלחנו אלינו את הפרופיל הזה" msgstr "לא שלחנו אלינו את הפרופיל הזה"
#: lib/command.php:714 #: lib/command.php:755
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] "לא שלחנו אלינו את הפרופיל הזה" msgstr[0] "לא שלחנו אלינו את הפרופיל הזה"
msgstr[1] "לא שלחנו אלינו את הפרופיל הזה" msgstr[1] "לא שלחנו אלינו את הפרופיל הזה"
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5093,6 +5146,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5120,20 +5174,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "אין קוד אישור." msgstr "אין קוד אישור."
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""
@ -5558,7 +5612,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "" msgstr ""
@ -5683,52 +5737,52 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "לא" msgstr "לא"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:547 #: lib/noticelist.php:558
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "אין תוכן!" msgstr "אין תוכן!"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "צור" msgstr "צור"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:599 #: lib/noticelist.php:611
#, fuzzy #, fuzzy
msgid "Reply" msgid "Reply"
msgstr "הגב" msgstr "הגב"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "הודעות" msgstr "הודעות"
@ -5762,10 +5816,6 @@ msgstr "שגיאה בהכנסת פרופיל מרוחק"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "הודעה חדשה" msgstr "הודעה חדשה"
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr ""
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "הכנסת מנוי חדש נכשלה." msgstr "הכנסת מנוי חדש נכשלה."
@ -5953,37 +6003,6 @@ msgstr "הרשמה מרוחקת"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "" msgstr ""
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr ""
#: lib/subs.php:56
#, fuzzy
msgid "User has blocked you."
msgstr "למשתמש אין פרופיל."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr ""
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr ""
#: lib/subs.php:137
#, fuzzy
msgid "Not subscribed!"
msgstr "לא מנוי!"
#: lib/subs.php:142
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "מחיקת המנוי לא הצליחה."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "מחיקת המנוי לא הצליחה."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6038,69 +6057,69 @@ msgstr "תמונה"
msgid "User actions" msgid "User actions"
msgstr "" msgstr ""
#: lib/userprofile.php:248 #: lib/userprofile.php:251
#, fuzzy #, fuzzy
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "הגדרות הפרופיל" msgstr "הגדרות הפרופיל"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "" msgstr ""
#: lib/userprofile.php:273 #: lib/userprofile.php:276
#, fuzzy #, fuzzy
msgid "Message" msgid "Message"
msgstr "הודעה חדשה" msgstr "הודעה חדשה"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "לפני מספר שניות" msgstr "לפני מספר שניות"
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "לפני כדקה" msgstr "לפני כדקה"
#: lib/util.php:874 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "לפני כ-%d דקות" msgstr "לפני כ-%d דקות"
#: lib/util.php:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "לפני כשעה" msgstr "לפני כשעה"
#: lib/util.php:878 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "לפני כ-%d שעות" msgstr "לפני כ-%d שעות"
#: lib/util.php:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "לפני כיום" msgstr "לפני כיום"
#: lib/util.php:882 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "לפני כ-%d ימים" msgstr "לפני כ-%d ימים"
#: lib/util.php:884 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "לפני כחודש" msgstr "לפני כחודש"
#: lib/util.php:886 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "לפני כ-%d חודשים" msgstr "לפני כ-%d חודשים"
#: lib/util.php:888 #: lib/util.php:970
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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:14:54+0000\n" "PO-Revision-Date: 2010-02-24 23:50:58+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -64,7 +64,7 @@ msgstr "Nowe registrowanja znjemóžnić."
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -103,7 +103,6 @@ msgstr "Strona njeeksistuje"
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Wužiwar njeeksistuje" msgstr "Wužiwar njeeksistuje"
@ -165,8 +164,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "Ty a přećeljo" msgstr "Ty a přećeljo"
#: 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 ""
@ -187,12 +186,12 @@ msgstr ""
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "API-metoda njenamakana." msgstr "API-metoda njenamakana."
@ -489,7 +488,7 @@ msgstr "Njepłaćiwa wulkosć."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -628,7 +627,7 @@ msgstr "Njepodpěrany format."
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 ""
@ -639,7 +638,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!"
@ -655,12 +654,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 ""
@ -670,7 +669,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 ""
@ -680,7 +679,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 ""
@ -742,7 +741,7 @@ msgid "Preview"
msgstr "Přehlad" msgstr "Přehlad"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Zničić" msgstr "Zničić"
@ -922,7 +921,7 @@ msgstr "Njejsy wobsedźer tuteje aplikacije."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -951,7 +950,7 @@ msgstr "Tutu zdźělenku wušmórnyć"
#: 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -980,7 +979,7 @@ msgstr "Chceš woprawdźe tutu zdźělenku wušmórnyć?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Tutu zdźělenku njewušmórnyć" msgstr "Tutu zdźělenku njewušmórnyć"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Tutu zdźělenku wušmórnyć" msgstr "Tutu zdźělenku wušmórnyć"
@ -1220,7 +1219,7 @@ msgstr "wopisanje je předołho (maks. %d znamješkow)."
msgid "Could not update group." msgid "Could not update group."
msgstr "Skupina njeje so dała aktualizować." msgstr "Skupina njeje so dała aktualizować."
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Aliasy njejsu so dali wutworić." msgstr "Aliasy njejsu so dali wutworić."
@ -2220,7 +2219,7 @@ msgid "Only "
msgstr "Jenož " msgstr "Jenož "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Njeje podpěrany datowy format." msgstr "Njeje podpěrany datowy format."
@ -2652,23 +2651,23 @@ msgstr "Mjeno rěče je předołhe (maks. 50 znamješkow)."
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "" msgstr ""
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Nastajenja městna njedachu so składować." msgstr "Nastajenja městna njedachu so składować."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "" msgstr ""
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "" msgstr ""
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Nastajenja składowane." msgstr "Nastajenja składowane."
@ -3022,7 +3021,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "" msgstr ""
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Abonować" msgstr "Abonować"
@ -3058,7 +3057,7 @@ msgstr "Njemóžeš swójsku zdźělenku wospjetować."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Sy tutu zdźělenku hižo wospjetował." msgstr "Sy tutu zdźělenku hižo wospjetował."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "Wospjetowany" msgstr "Wospjetowany"
@ -3724,15 +3723,26 @@ msgstr "Žadyn kod zapodaty"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "Njejsy tón profil abonował." msgstr "Njejsy tón profil abonował."
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "" msgstr ""
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "Njeje lokalny wužiwar." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Dataja njeeksistuje."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Njejsy tón profil abonował."
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "Abonowany" msgstr "Abonowany"
@ -3792,7 +3802,7 @@ msgstr ""
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "" msgstr ""
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -3802,16 +3812,16 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "" msgstr ""
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber" msgstr "Jabber"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS" msgstr "SMS"
@ -4205,57 +4215,76 @@ msgstr ""
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "" msgstr ""
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "" msgstr ""
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "" msgstr ""
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "" msgstr ""
#: classes/Notice.php:788 #: classes/Notice.php:882
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "" msgstr ""
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr ""
#: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr ""
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr "Hižo abonowany!"
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "Wužiwar je će zablokował."
#: classes/Subscription.php:157
msgid "Not subscribed!"
msgstr "Njeje abonowany!"
#: classes/Subscription.php:163
msgid "Couldn't delete self-subscription."
msgstr "Sebjeabonement njeje so dał zničić."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Abonoment njeje so dał zničić."
#: classes/User.php:372
#, php-format #, php-format
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:423
msgid "Could not create group." msgid "Could not create group."
msgstr "" msgstr ""
#: classes/User_group.php:409 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "" msgstr ""
@ -4451,26 +4480,38 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "" msgstr ""
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "" msgstr ""
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "" msgstr ""
@ -4764,54 +4805,64 @@ msgstr ""
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "" msgstr ""
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
#, fuzzy
msgid "No such user"
msgstr "Wužiwar njeeksistuje"
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "" msgstr ""
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "" msgstr ""
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "" msgstr ""
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "" msgstr ""
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "" msgstr ""
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "" msgstr ""
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "" msgstr ""
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "" msgstr ""
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Wotskazany"
#: lib/command.php:709
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "" msgstr ""
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Sy tutu wosobu abonował:" msgstr[0] "Sy tutu wosobu abonował:"
@ -4819,11 +4870,11 @@ msgstr[1] "Sy tutej wosobje abonował:"
msgstr[2] "Sy tute wosoby abonował:" msgstr[2] "Sy tute wosoby abonował:"
msgstr[3] "Sy tute wosoby abonował:" msgstr[3] "Sy tute wosoby abonował:"
#: lib/command.php:690 #: lib/command.php:731
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "" msgstr ""
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Tuta wosoba je će abonowała:" msgstr[0] "Tuta wosoba je će abonowała:"
@ -4831,11 +4882,11 @@ msgstr[1] "Tutej wosobje stej će abonowałoj:"
msgstr[2] "Tute wosoby su će abonowali:" msgstr[2] "Tute wosoby su će abonowali:"
msgstr[3] "Tute wosoby su će abonowali:" msgstr[3] "Tute wosoby su će abonowali:"
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "" msgstr ""
#: lib/command.php:714 #: lib/command.php:755
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] "Sy čłon tuteje skupiny:" msgstr[0] "Sy čłon tuteje skupiny:"
@ -4843,7 +4894,7 @@ msgstr[1] "Sy čłon tuteju skupinow:"
msgstr[2] "Sy čłon tutych skupinow:" msgstr[2] "Sy čłon tutych skupinow:"
msgstr[3] "Sy čłon tutych skupinow:" msgstr[3] "Sy čłon tutych skupinow:"
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -4857,6 +4908,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -4884,19 +4936,19 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Žana konfiguraciska dataja namakana. " msgstr "Žana konfiguraciska dataja namakana. "
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""
@ -5302,7 +5354,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "wot" msgstr "wot"
@ -5422,48 +5474,48 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "S" msgstr "S"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "J" msgstr "J"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "W" msgstr "W"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "Z" msgstr "Z"
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "" msgstr ""
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "Wospjetowany wot" msgstr "Wospjetowany wot"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Na tutu zdźělenku wotmołwić" msgstr "Na tutu zdźělenku wotmołwić"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "Wotmołwić" msgstr "Wotmołwić"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Zdźělenka wospjetowana" msgstr "Zdźělenka wospjetowana"
@ -5495,10 +5547,6 @@ 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:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr ""
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "" msgstr ""
@ -5675,34 +5723,6 @@ msgstr ""
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "" msgstr ""
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr "Hižo abonowany!"
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "Wužiwar je će zablokował."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "Abonowanje njebě móžno"
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr ""
#: lib/subs.php:137
msgid "Not subscribed!"
msgstr "Njeje abonowany!"
#: lib/subs.php:142
msgid "Couldn't delete self-subscription."
msgstr "Sebjeabonement njeje so dał zničić."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Abonoment njeje so dał zničić."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -5753,67 +5773,67 @@ msgstr "Awatar wobdźěłać"
msgid "User actions" msgid "User actions"
msgstr "Wužiwarske akcije" msgstr "Wužiwarske akcije"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Profilowe nastajenja wobdźěłać" msgstr "Profilowe nastajenja wobdźěłać"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "Wobdźěłać" msgstr "Wobdźěłać"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Tutomu wužiwarja direktnu powěsć pósłać" msgstr "Tutomu wužiwarja direktnu powěsć pósłać"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Powěsć" msgstr "Powěsć"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:870 #: lib/util.php:952
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:872 #: lib/util.php:954
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:874 #: lib/util.php:956
#, 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:876 #: lib/util.php:958
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:878 #: lib/util.php:960
#, 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:880 #: lib/util.php:962
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:882 #: lib/util.php:964
#, 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:884 #: lib/util.php:966
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:886 #: lib/util.php:968
#, 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:888 #: lib/util.php:970
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"

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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:14:57+0000\n" "PO-Revision-Date: 2010-02-24 23:51:01+0000\n"
"Language-Team: Interlingua\n" "Language-Team: Interlingua\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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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: ia\n" "X-Language-Code: ia\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -60,7 +60,7 @@ msgstr "Disactivar le creation de nove contos."
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -98,7 +98,6 @@ msgstr "Pagina non existe"
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Usator non existe." msgstr "Usator non existe."
@ -168,8 +167,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "Tu e amicos" msgstr "Tu e amicos"
#: 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 "Actualisationes de %1$s e su amicos in %2$s!" msgstr "Actualisationes de %1$s e su amicos in %2$s!"
@ -190,12 +189,12 @@ msgstr "Actualisationes de %1$s e su amicos in %2$s!"
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "Methodo API non trovate." msgstr "Methodo API non trovate."
@ -495,7 +494,7 @@ msgstr "Indicio invalide."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -643,7 +642,7 @@ msgstr "Formato non supportate."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%1$s / Favorites de %2$s" msgstr "%1$s / Favorites 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 actualisationes favoritisate per %2$s / %2$s." msgstr "%1$s actualisationes favoritisate per %2$s / %2$s."
@ -654,7 +653,7 @@ msgstr "%1$s actualisationes favoritisate per %2$s / %2$s."
msgid "%s timeline" msgid "%s timeline"
msgstr "Chronologia de %s" msgstr "Chronologia 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!"
@ -671,12 +670,12 @@ msgid "%1$s updates that reply to updates from %2$s / %3$s."
msgstr "" msgstr ""
"Actualisationes de %1$s que responde al actualisationes de %2$s / %3$s." "Actualisationes de %1$s que responde al actualisationes 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 "Chronologia public de %s" msgstr "Chronologia public 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 "Actualisationes de totes in %s!" msgstr "Actualisationes de totes in %s!"
@ -686,7 +685,7 @@ msgstr "Actualisationes de totes in %s!"
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "Repetite a %s" msgstr "Repetite a %s"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, php-format #, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "Repetitiones de %s" msgstr "Repetitiones de %s"
@ -696,7 +695,7 @@ msgstr "Repetitiones de %s"
msgid "Notices tagged with %s" msgid "Notices tagged with %s"
msgstr "Notas con etiquetta %s" msgstr "Notas con etiquetta %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 "Actualisationes con etiquetta %1$s in %2$s!" msgstr "Actualisationes con etiquetta %1$s in %2$s!"
@ -758,7 +757,7 @@ msgid "Preview"
msgstr "Previsualisation" msgstr "Previsualisation"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Deler" msgstr "Deler"
@ -939,7 +938,7 @@ msgstr "Tu non es le proprietario de iste application."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Il habeva un problema con tu indicio de session." msgstr "Il habeva un problema con tu indicio de session."
@ -968,7 +967,7 @@ msgstr "Deler iste application"
#: 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -999,7 +998,7 @@ msgstr "Es tu secur de voler deler iste nota?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Non deler iste nota" msgstr "Non deler iste nota"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Deler iste nota" msgstr "Deler iste nota"
@ -1240,7 +1239,7 @@ msgstr "description es troppo longe (max %d chars)."
msgid "Could not update group." msgid "Could not update group."
msgstr "Non poteva actualisar gruppo." msgstr "Non poteva actualisar gruppo."
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Non poteva crear aliases." msgstr "Non poteva crear aliases."
@ -2328,7 +2327,7 @@ msgid "Only "
msgstr "Solmente " msgstr "Solmente "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Formato de datos non supportate." msgstr "Formato de datos non supportate."
@ -2770,23 +2769,23 @@ msgstr "Lingua es troppo longe (max 50 chars)."
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Etiquetta invalide: \"%s\"" msgstr "Etiquetta invalide: \"%s\""
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Non poteva actualisar usator pro autosubscription." msgstr "Non poteva actualisar usator pro autosubscription."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Non poteva salveguardar le preferentias de loco." msgstr "Non poteva salveguardar le preferentias de loco."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Non poteva salveguardar profilo." msgstr "Non poteva salveguardar profilo."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Non poteva salveguardar etiquettas." msgstr "Non poteva salveguardar etiquettas."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Preferentias confirmate." msgstr "Preferentias confirmate."
@ -3181,7 +3180,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "URL de tu profilo in un altere servicio de microblogging compatibile" msgstr "URL de tu profilo in un altere servicio de microblogging compatibile"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Subscriber" msgstr "Subscriber"
@ -3219,7 +3218,7 @@ msgstr "Tu non pote repeter tu proprie nota."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Tu ha ja repetite iste nota." msgstr "Tu ha ja repetite iste nota."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "Repetite" msgstr "Repetite"
@ -3930,15 +3929,26 @@ msgstr "Nulle codice entrate"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "Tu non es subscribite a iste profilo." msgstr "Tu non es subscribite a iste profilo."
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Non poteva salveguardar le subscription." msgstr "Non poteva salveguardar le subscription."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "Le usator non es local." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "File non existe."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Tu non es subscribite a iste profilo."
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "Subscribite" msgstr "Subscribite"
@ -4002,7 +4012,7 @@ msgstr "Tu seque le notas de iste personas."
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "%s seque le notas de iste personas." msgstr "%s seque le notas de iste personas."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4018,16 +4028,16 @@ msgstr ""
"action.twittersettings%%), tu pote automaticamente subscriber te a personas " "action.twittersettings%%), tu pote automaticamente subscriber te a personas "
"que tu ja seque la." "que tu ja seque la."
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%s non seque alcuno." msgstr "%s non seque alcuno."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber" msgstr "Jabber"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS" msgstr "SMS"
@ -4453,22 +4463,22 @@ msgstr "Non poteva actualisar message con nove URI."
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "Error in base de datos durante insertion del marca (hashtag): %s" msgstr "Error in base de datos durante insertion del marca (hashtag): %s"
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "Problema salveguardar nota. Troppo longe." msgstr "Problema salveguardar nota. Troppo longe."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Problema salveguardar nota. Usator incognite." msgstr "Problema salveguardar nota. Usator incognite."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"Troppo de notas troppo rapidemente; face un pausa e publica de novo post " "Troppo de notas troppo rapidemente; face un pausa e publica de novo post "
"alcun minutas." "alcun minutas."
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
@ -4476,38 +4486,57 @@ msgstr ""
"Troppo de messages duplicate troppo rapidemente; face un pausa e publica de " "Troppo de messages duplicate troppo rapidemente; face un pausa e publica de "
"novo post alcun minutas." "novo post alcun minutas."
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Il te es prohibite publicar notas in iste sito." msgstr "Il te es prohibite publicar notas in iste sito."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Problema salveguardar nota." msgstr "Problema salveguardar nota."
#: classes/Notice.php:788 #: classes/Notice.php:882
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Problema salveguardar le cassa de entrata del gruppo." msgstr "Problema salveguardar le cassa de entrata del gruppo."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Error del base de datos durante le insertion del responsa: %s"
#: 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"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr "Tu ha essite blocate del subscription."
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr "Ja subscribite!"
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "Le usator te ha blocate."
#: classes/Subscription.php:157
msgid "Not subscribed!"
msgstr "Non subscribite!"
#: classes/Subscription.php:163
msgid "Couldn't delete self-subscription."
msgstr "Non poteva deler auto-subscription."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Non poteva deler subscription."
#: classes/User.php:372
#, php-format #, php-format
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "Benvenite a %1$s, @%2$s!" msgstr "Benvenite a %1$s, @%2$s!"
#: classes/User_group.php:380 #: classes/User_group.php:423
msgid "Could not create group." msgid "Could not create group."
msgstr "Non poteva crear gruppo." msgstr "Non poteva crear gruppo."
#: classes/User_group.php:409 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Non poteva configurar le membrato del gruppo." msgstr "Non poteva configurar le membrato del gruppo."
@ -4709,26 +4738,38 @@ msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
"Contento e datos sub copyright del contributores. Tote le derectos reservate." "Contento e datos sub copyright del contributores. Tote le derectos reservate."
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "Totes " msgstr "Totes "
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "licentia." msgstr "licentia."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "Pagination" msgstr "Pagination"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "Post" msgstr "Post"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "Ante" msgstr "Ante"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "Tu non pote facer modificationes in iste sito." msgstr "Tu non pote facer modificationes in iste sito."
@ -5028,82 +5069,92 @@ msgstr "Errur durante le salveguarda del nota."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "Specifica le nomine del usator al qual subscriber te" msgstr "Specifica le nomine del usator al qual subscriber te"
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "Usator non existe"
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "Subscribite a %s" msgstr "Subscribite a %s"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "Specifica le nomine del usator al qual cancellar le subscription" msgstr "Specifica le nomine del usator al qual cancellar le subscription"
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "Subscription a %s cancellate" msgstr "Subscription a %s cancellate"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "Commando non ancora implementate." msgstr "Commando non ancora implementate."
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "Notification disactivate." msgstr "Notification disactivate."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "Non pote disactivar notification." msgstr "Non pote disactivar notification."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "Notification activate." msgstr "Notification activate."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "Non pote activar notification." msgstr "Non pote activar notification."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "Le commando de apertura de session es disactivate" msgstr "Le commando de apertura de session es disactivate"
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
"Iste ligamine pote esser usate solmente un vice, e es valide durante " "Iste ligamine pote esser usate solmente un vice, e es valide durante "
"solmente 2 minutas: %s" "solmente 2 minutas: %s"
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Subscription a %s cancellate"
#: lib/command.php:709
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "Tu non es subscribite a alcuno." msgstr "Tu non es subscribite a alcuno."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Tu es subscribite a iste persona:" msgstr[0] "Tu es subscribite a iste persona:"
msgstr[1] "Tu es subscribite a iste personas:" msgstr[1] "Tu es subscribite a iste personas:"
#: lib/command.php:690 #: lib/command.php:731
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Necuno es subscribite a te." msgstr "Necuno es subscribite a te."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Iste persona es subscribite a te:" msgstr[0] "Iste persona es subscribite a te:"
msgstr[1] "Iste personas es subscribite a te:" msgstr[1] "Iste personas es subscribite a te:"
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "Tu non es membro de alcun gruppo." msgstr "Tu non es membro de alcun gruppo."
#: lib/command.php:714 #: lib/command.php:755
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] "Tu es membro de iste gruppo:" msgstr[0] "Tu es membro de iste gruppo:"
msgstr[1] "Tu es membro de iste gruppos:" msgstr[1] "Tu es membro de iste gruppos:"
#: lib/command.php:728 #: lib/command.php:769
#, fuzzy
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5117,6 +5168,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5181,19 +5233,19 @@ msgstr ""
"tracks - non ancora implementate.\n" "tracks - non ancora implementate.\n"
"tracking - non ancora implementate.\n" "tracking - non ancora implementate.\n"
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Nulle file de configuration trovate. " msgstr "Nulle file de configuration trovate. "
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "Io cercava files de configuration in le sequente locos: " msgstr "Io cercava files de configuration in le sequente locos: "
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "Considera executar le installator pro reparar isto." msgstr "Considera executar le installator pro reparar isto."
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Ir al installator." msgstr "Ir al installator."
@ -5689,7 +5741,7 @@ msgstr ""
"altere usatores in conversation. Altere personas pote inviar te messages que " "altere usatores in conversation. Altere personas pote inviar te messages que "
"solmente tu pote leger." "solmente tu pote leger."
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "de" msgstr "de"
@ -5815,48 +5867,48 @@ msgstr ""
"Pardono, le obtention de tu geolocalisation prende plus tempore que " "Pardono, le obtention de tu geolocalisation prende plus tempore que "
"previste. Per favor reproba plus tarde." "previste. Per favor reproba plus tarde."
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "N" msgstr "N"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "S" msgstr "S"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "E" msgstr "E"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "W" msgstr "W"
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "a" msgstr "a"
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "in contexto" msgstr "in contexto"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "Repetite per" msgstr "Repetite per"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Responder a iste nota" msgstr "Responder a iste nota"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "Responder" msgstr "Responder"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Nota repetite" msgstr "Nota repetite"
@ -5888,10 +5940,6 @@ msgstr "Error durante le insertion del profilo remote"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Duplicar nota" msgstr "Duplicar nota"
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr "Tu ha essite blocate del subscription."
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Non poteva inserer nove subscription." msgstr "Non poteva inserer nove subscription."
@ -6068,34 +6116,6 @@ msgstr "Personas qui seque %s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "Gruppos del quales %s es membro" msgstr "Gruppos del quales %s es membro"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr "Ja subscribite!"
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "Le usator te ha blocate."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "Non poteva subscriber te."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "Non poteva subcriber altere persona a te."
#: lib/subs.php:137
msgid "Not subscribed!"
msgstr "Non subscribite!"
#: lib/subs.php:142
msgid "Couldn't delete self-subscription."
msgstr "Non poteva deler auto-subscription."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Non poteva deler subscription."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6146,67 +6166,67 @@ msgstr "Modificar avatar"
msgid "User actions" msgid "User actions"
msgstr "Actiones de usator" msgstr "Actiones de usator"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Modificar configuration de profilo" msgstr "Modificar configuration de profilo"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "Modificar" msgstr "Modificar"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Inviar un message directe a iste usator" msgstr "Inviar un message directe a iste usator"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Message" msgstr "Message"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "Moderar" msgstr "Moderar"
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "alcun secundas retro" msgstr "alcun secundas retro"
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "circa un minuta retro" msgstr "circa un minuta retro"
#: lib/util.php:874 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "circa %d minutas retro" msgstr "circa %d minutas retro"
#: lib/util.php:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "circa un hora retro" msgstr "circa un hora retro"
#: lib/util.php:878 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "circa %d horas retro" msgstr "circa %d horas retro"
#: lib/util.php:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "circa un die retro" msgstr "circa un die retro"
#: lib/util.php:882 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "circa %d dies retro" msgstr "circa %d dies retro"
#: lib/util.php:884 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "circa un mense retro" msgstr "circa un mense retro"
#: lib/util.php:886 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "circa %d menses retro" msgstr "circa %d menses retro"
#: lib/util.php:888 #: lib/util.php:970
msgid "about a year ago" msgid "about a year ago"
msgstr "circa un anno retro" msgstr "circa un anno retro"

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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:15:11+0000\n" "PO-Revision-Date: 2010-02-24 23:51:05+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -67,7 +67,7 @@ msgstr ""
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -107,7 +107,6 @@ msgstr "Ekkert þannig merki."
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Enginn svoleiðis notandi." msgstr "Enginn svoleiðis notandi."
@ -169,8 +168,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 "Færslur frá %1$s og vinum á %2$s!" msgstr "Færslur frá %1$s og vinum á %2$s!"
@ -191,12 +190,12 @@ msgstr "Færslur frá %1$s og vinum á %2$s!"
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 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!"
@ -506,7 +505,7 @@ msgstr "Ótæk stærð."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -650,7 +649,7 @@ msgstr "Skráarsnið myndar ekki stutt."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%s / Uppáhaldsbabl frá %s" msgstr "%s / Uppáhaldsbabl frá %s"
#: actions/apitimelinefavorites.php:120 #: actions/apitimelinefavorites.php:117
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s updates favorited by %2$s / %2$s." msgid "%1$s updates favorited by %2$s / %2$s."
msgstr "%s færslur gerðar að uppáhaldsbabli af %s / %s." msgstr "%s færslur gerðar að uppáhaldsbabli af %s / %s."
@ -661,7 +660,7 @@ msgstr "%s færslur gerðar að uppáhaldsbabli af %s / %s."
msgid "%s timeline" msgid "%s timeline"
msgstr "Rás %s" msgstr "Rás %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!"
@ -677,12 +676,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 "%1$s færslur sem svara færslum frá %2$s / %3$s." msgstr "%1$s færslur sem svara færslum frá %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 "Almenningsrás %s" msgstr "Almenningsrás %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 færslur frá öllum!" msgstr "%s færslur frá öllum!"
@ -692,7 +691,7 @@ msgstr "%s færslur frá öllum!"
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "Svör við %s" msgstr "Svör við %s"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, fuzzy, php-format #, fuzzy, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "Svör við %s" msgstr "Svör við %s"
@ -702,7 +701,7 @@ msgstr "Svör við %s"
msgid "Notices tagged with %s" msgid "Notices tagged with %s"
msgstr "Babl merkt með %s" msgstr "Babl merkt með %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 ""
@ -763,7 +762,7 @@ msgid "Preview"
msgstr "Forsýn" msgstr "Forsýn"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Eyða" msgstr "Eyða"
@ -950,7 +949,7 @@ msgstr "Þú ert ekki meðlimur í þessum hópi."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Það komu upp vandamál varðandi setutókann þinn." msgstr "Það komu upp vandamál varðandi setutókann þinn."
@ -979,7 +978,7 @@ msgstr "Eyða þessu babli"
#: 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -1008,7 +1007,7 @@ msgstr "Ertu viss um að þú viljir eyða þessu babli?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "" msgstr ""
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Eyða þessu babli" msgstr "Eyða þessu babli"
@ -1267,7 +1266,7 @@ msgstr "Lýsing er of löng (í mesta lagi 140 tákn)."
msgid "Could not update group." msgid "Could not update group."
msgstr "Gat ekki uppfært hóp." msgstr "Gat ekki uppfært hóp."
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "" msgstr ""
@ -2348,7 +2347,7 @@ msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Enginn stuðningur við gagnasnið." msgstr "Enginn stuðningur við gagnasnið."
@ -2810,24 +2809,24 @@ msgstr "Tungumál er of langt (í mesta lagi 50 stafir)."
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Ógilt merki: \"%s\"" msgstr "Ógilt merki: \"%s\""
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Gat ekki uppfært notanda í sjálfvirka áskrift." msgstr "Gat ekki uppfært notanda í sjálfvirka áskrift."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
#, fuzzy #, fuzzy
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Gat ekki vistað merki." msgstr "Gat ekki vistað merki."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Gat ekki vistað persónulega síðu." msgstr "Gat ekki vistað persónulega síðu."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Gat ekki vistað merki." msgstr "Gat ekki vistað merki."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Stillingar vistaðar." msgstr "Stillingar vistaðar."
@ -3206,7 +3205,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "Veffang persónulegrar síðu á samvirkandi örbloggsþjónustu" msgstr "Veffang persónulegrar síðu á samvirkandi örbloggsþjónustu"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Gerast áskrifandi" msgstr "Gerast áskrifandi"
@ -3251,7 +3250,7 @@ msgstr "Þú getur ekki nýskráð þig nema þú samþykkir leyfið."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Þú hefur nú þegar lokað á þennan notanda." msgstr "Þú hefur nú þegar lokað á þennan notanda."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Í sviðsljósinu" msgstr "Í sviðsljósinu"
@ -3939,15 +3938,26 @@ msgstr "Enginn lykill sleginn inn"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "Þú ert ekki áskrifandi." msgstr "Þú ert ekki áskrifandi."
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Gat ekki vistað áskrift." msgstr "Gat ekki vistað áskrift."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "Ekki staðbundinn notandi." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Ekkert svoleiðis babl."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Þú ert ekki áskrifandi."
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "Þú ert nú í áskrift" msgstr "Þú ert nú í áskrift"
@ -4007,7 +4017,7 @@ msgstr "Þetta er fólkið sem þú hlustar á bablið í."
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "Þetta er fólkið sem %s hlustar á bablið í." msgstr "Þetta er fólkið sem %s hlustar á bablið í."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4017,16 +4027,16 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "" msgstr ""
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber snarskilaboðaþjónusta" msgstr "Jabber snarskilaboðaþjónusta"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS" msgstr "SMS"
@ -4453,60 +4463,82 @@ msgstr "Gat ekki uppfært skilaboð með nýju veffangi."
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s" msgstr "Gagnagrunnsvilla við innsetningu myllumerkis: %s"
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "" msgstr ""
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Gat ekki vistað babl. Óþekktur notandi." msgstr "Gat ekki vistað babl. Óþekktur notandi."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"Of mikið babl í einu; slakaðu aðeins á og haltu svo áfram eftir nokkrar " "Of mikið babl í einu; slakaðu aðeins á og haltu svo áfram eftir nokkrar "
"mínútur." "mínútur."
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Það hefur verið lagt bann við babli frá þér á þessari síðu." msgstr "Það hefur verið lagt bann við babli frá þér á þessari síðu."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Vandamál komu upp við að vista babl." msgstr "Vandamál komu upp við að vista babl."
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy #, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Vandamál komu upp við að vista babl." msgstr "Vandamál komu upp við að vista babl."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Gagnagrunnsvilla við innsetningu svars: %s"
#: 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)"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
#, fuzzy
msgid "You have been banned from subscribing."
msgstr "Þessi notandi hefur bannað þér að gerast áskrifandi"
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr ""
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "Notandinn hefur lokað á þig."
#: classes/Subscription.php:157
#, fuzzy
msgid "Not subscribed!"
msgstr "Ekki í áskrift!"
#: classes/Subscription.php:163
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Gat ekki eytt áskrift."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Gat ekki eytt áskrift."
#: classes/User.php:372
#, php-format #, php-format
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:423
msgid "Could not create group." msgid "Could not create group."
msgstr "Gat ekki búið til hóp." msgstr "Gat ekki búið til hóp."
#: classes/User_group.php:409 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Gat ekki skráð hópmeðlimi." msgstr "Gat ekki skráð hópmeðlimi."
@ -4712,26 +4744,38 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "Allt " msgstr "Allt "
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "leyfi." msgstr "leyfi."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "Uppröðun" msgstr "Uppröðun"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "Eftir" msgstr "Eftir"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "Áður" msgstr "Áður"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
#, fuzzy #, fuzzy
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
@ -5044,83 +5088,92 @@ msgstr "Vandamál komu upp við að vista babl."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "Tilgreindu nafn notandans sem þú vilt gerast áskrifandi að" msgstr "Tilgreindu nafn notandans sem þú vilt gerast áskrifandi að"
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "Enginn svoleiðis notandi."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "Nú ert þú áskrifandi að %s" msgstr "Nú ert þú áskrifandi að %s"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "Tilgreindu nafn notandans sem þú vilt hætta sem áskrifandi að" msgstr "Tilgreindu nafn notandans sem þú vilt hætta sem áskrifandi að"
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "Nú ert þú ekki lengur áskrifandi að %s" msgstr "Nú ert þú ekki lengur áskrifandi að %s"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "Skipun hefur ekki verið fullbúin" msgstr "Skipun hefur ekki verið fullbúin"
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "Tilkynningar af." msgstr "Tilkynningar af."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "Get ekki slökkt á tilkynningum." msgstr "Get ekki slökkt á tilkynningum."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "Tilkynningar á." msgstr "Tilkynningar á."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "Get ekki kveikt á tilkynningum." msgstr "Get ekki kveikt á tilkynningum."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Nú ert þú ekki lengur áskrifandi að %s"
#: lib/command.php:709
#, fuzzy #, fuzzy
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "Þú ert ekki áskrifandi." msgstr "Þú ert ekki áskrifandi."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Þú ert nú þegar í áskrift að þessum notendum:" msgstr[0] "Þú ert nú þegar í áskrift að þessum notendum:"
msgstr[1] "Þú ert nú þegar í áskrift að þessum notendum:" msgstr[1] "Þú ert nú þegar í áskrift að þessum notendum:"
#: lib/command.php:690 #: lib/command.php:731
#, fuzzy #, fuzzy
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér." msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Gat ekki leyft öðrum að gerast áskrifandi að þér." msgstr[0] "Gat ekki leyft öðrum að gerast áskrifandi að þér."
msgstr[1] "Gat ekki leyft öðrum að gerast áskrifandi að þér." msgstr[1] "Gat ekki leyft öðrum að gerast áskrifandi að þér."
#: lib/command.php:712 #: lib/command.php:753
#, fuzzy #, fuzzy
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "Þú ert ekki meðlimur í þessum hópi." msgstr "Þú ert ekki meðlimur í þessum hópi."
#: lib/command.php:714 #: lib/command.php:755
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] "Þú ert ekki meðlimur í þessum hópi." msgstr[0] "Þú ert ekki meðlimur í þessum hópi."
msgstr[1] "Þú ert ekki meðlimur í þessum hópi." msgstr[1] "Þú ert ekki meðlimur í þessum hópi."
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5134,6 +5187,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5161,20 +5215,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Enginn staðfestingarlykill." msgstr "Enginn staðfestingarlykill."
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Skrá þig inn á síðuna" msgstr "Skrá þig inn á síðuna"
@ -5596,7 +5650,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr "frá" msgstr "frá"
@ -5720,50 +5774,50 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "Nei" msgstr "Nei"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "" msgstr ""
#: lib/noticelist.php:572 #: lib/noticelist.php:583
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Í sviðsljósinu" msgstr "Í sviðsljósinu"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Svara þessu babli" msgstr "Svara þessu babli"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "Svara" msgstr "Svara"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Babl sent inn" msgstr "Babl sent inn"
@ -5797,11 +5851,6 @@ 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:465 lib/subs.php:48
#, fuzzy
msgid "You have been banned from subscribing."
msgstr "Þessi notandi hefur bannað þér að gerast áskrifandi"
#: lib/oauthstore.php:490 #: 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."
@ -5986,36 +6035,6 @@ msgstr "Fólk sem eru áskrifendur að %s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "Hópar sem %s er meðlimur í" msgstr "Hópar sem %s er meðlimur í"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr ""
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "Notandinn hefur lokað á þig."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "Gat ekki farið í áskrift."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér."
#: lib/subs.php:137
#, fuzzy
msgid "Not subscribed!"
msgstr "Ekki í áskrift!"
#: lib/subs.php:142
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Gat ekki eytt áskrift."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Gat ekki eytt áskrift."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6068,67 +6087,67 @@ msgstr ""
msgid "User actions" msgid "User actions"
msgstr "Notandaaðgerðir" msgstr "Notandaaðgerðir"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "" msgstr ""
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Senda bein skilaboð til þessa notanda" msgstr "Senda bein skilaboð til þessa notanda"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Skilaboð" msgstr "Skilaboð"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "fyrir nokkrum sekúndum" msgstr "fyrir nokkrum sekúndum"
#: lib/util.php:872 #: lib/util.php:954
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:874 #: lib/util.php:956
#, 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:876 #: lib/util.php:958
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:878 #: lib/util.php:960
#, 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:880 #: lib/util.php:962
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:882 #: lib/util.php:964
#, 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:884 #: lib/util.php:966
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:886 #: lib/util.php:968
#, 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:888 #: lib/util.php:970
msgid "about a year ago" msgid "about a year ago"
msgstr "fyrir um einu ári síðan" msgstr "fyrir um einu ári síðan"

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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:15:14+0000\n" "PO-Revision-Date: 2010-02-24 23:51:09+0000\n"
"Language-Team: Italian\n" "Language-Team: Italian\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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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: it\n" "X-Language-Code: it\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -63,7 +63,7 @@ msgstr "Disabilita la creazione di nuovi account"
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -101,7 +101,6 @@ msgstr "Pagina inesistente."
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Utente inesistente." msgstr "Utente inesistente."
@ -172,8 +171,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "Tu e i tuoi amici" msgstr "Tu e i tuoi amici"
#: 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 "Messaggi da %1$s e amici su %2$s!" msgstr "Messaggi da %1$s e amici su %2$s!"
@ -194,12 +193,12 @@ msgstr "Messaggi da %1$s e amici su %2$s!"
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "Metodo delle API non trovato." msgstr "Metodo delle API non trovato."
@ -501,7 +500,7 @@ msgstr "Token non valido."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -618,7 +617,7 @@ msgstr "Messaggio eliminato."
#: actions/apistatusesshow.php:144 #: actions/apistatusesshow.php:144
msgid "No status with that ID found." msgid "No status with that ID found."
msgstr "Nessun stato trovato con quel ID." msgstr "Nessuno stato trovato con quel ID."
#: actions/apistatusesupdate.php:161 actions/newnotice.php:155 #: actions/apistatusesupdate.php:161 actions/newnotice.php:155
#: lib/mailhandler.php:60 #: lib/mailhandler.php:60
@ -645,7 +644,7 @@ msgstr "Formato non supportato."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%1$s / Preferiti da %2$s" msgstr "%1$s / Preferiti da %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 aggiornamenti preferiti da %2$s / %3$s" msgstr "%1$s aggiornamenti preferiti da %2$s / %3$s"
@ -656,7 +655,7 @@ msgstr "%1$s aggiornamenti preferiti da %2$s / %3$s"
msgid "%s timeline" msgid "%s timeline"
msgstr "Attività di %s" msgstr "Attività di %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!"
@ -672,12 +671,12 @@ msgstr "%1$s / Messaggi che citano %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 messaggi in risposta a quelli da %2$s / %3$s" msgstr "%1$s messaggi in risposta a quelli da %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 "Attività pubblica di %s" msgstr "Attività pubblica di %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 "Aggiornamenti di %s da tutti!" msgstr "Aggiornamenti di %s da tutti!"
@ -687,7 +686,7 @@ msgstr "Aggiornamenti di %s da tutti!"
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "Ripetuto a %s" msgstr "Ripetuto a %s"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, php-format #, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "Ripetizioni di %s" msgstr "Ripetizioni di %s"
@ -697,7 +696,7 @@ msgstr "Ripetizioni di %s"
msgid "Notices tagged with %s" msgid "Notices tagged with %s"
msgstr "Messaggi etichettati con %s" msgstr "Messaggi etichettati con %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 "Messaggi etichettati con %1$s su %2$s!" msgstr "Messaggi etichettati con %1$s su %2$s!"
@ -759,7 +758,7 @@ msgid "Preview"
msgstr "Anteprima" msgstr "Anteprima"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Elimina" msgstr "Elimina"
@ -940,7 +939,7 @@ msgstr "Questa applicazione non è di tua proprietà."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Si è verificato un problema con il tuo token di sessione." msgstr "Si è verificato un problema con il tuo token di sessione."
@ -968,7 +967,7 @@ msgstr "Elimina l'applicazione"
#: 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -999,7 +998,7 @@ msgstr "Vuoi eliminare questo messaggio?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Non eliminare il messaggio" msgstr "Non eliminare il messaggio"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Elimina questo messaggio" msgstr "Elimina questo messaggio"
@ -1240,7 +1239,7 @@ msgstr "La descrizione è troppo lunga (max %d caratteri)."
msgid "Could not update group." msgid "Could not update group."
msgstr "Impossibile aggiornare il gruppo." msgstr "Impossibile aggiornare il gruppo."
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Impossibile creare gli alias." msgstr "Impossibile creare gli alias."
@ -2326,7 +2325,7 @@ msgid "Only "
msgstr "Solo " msgstr "Solo "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Non è un formato di dati supportato." msgstr "Non è un formato di dati supportato."
@ -2770,23 +2769,23 @@ msgstr "La lingua è troppo lunga (max 50 caratteri)."
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Etichetta non valida: \"%s\"" msgstr "Etichetta non valida: \"%s\""
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Impossibile aggiornare l'utente per auto-abbonarsi." msgstr "Impossibile aggiornare l'utente per auto-abbonarsi."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Impossibile salvare le preferenze della posizione." msgstr "Impossibile salvare le preferenze della posizione."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Impossibile salvare il profilo." msgstr "Impossibile salvare il profilo."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Impossibile salvare le etichette." msgstr "Impossibile salvare le etichette."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Impostazioni salvate." msgstr "Impostazioni salvate."
@ -3181,7 +3180,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "URL del tuo profilo su un altro servizio di microblog compatibile" msgstr "URL del tuo profilo su un altro servizio di microblog compatibile"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Abbonati" msgstr "Abbonati"
@ -3219,7 +3218,7 @@ msgstr "Non puoi ripetere i tuoi stessi messaggi."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Hai già ripetuto quel messaggio." msgstr "Hai già ripetuto quel messaggio."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "Ripetuti" msgstr "Ripetuti"
@ -3928,15 +3927,26 @@ msgstr "Nessun codice inserito"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "Non hai una abbonamento a quel profilo." msgstr "Non hai una abbonamento a quel profilo."
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Impossibile salvare l'abbonamento." msgstr "Impossibile salvare l'abbonamento."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "Non un utente locale." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Nessun file."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Non hai una abbonamento a quel profilo."
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "Abbonati" msgstr "Abbonati"
@ -4000,7 +4010,7 @@ msgstr "Queste sono le persone che stai seguendo."
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "Queste sono le persone seguite da %s." msgstr "Queste sono le persone seguite da %s."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4015,16 +4025,16 @@ msgstr ""
"[usi Twitter](%%action.twittersettings%%), puoi abbonarti automaticamente " "[usi Twitter](%%action.twittersettings%%), puoi abbonarti automaticamente "
"alle persone che già seguivi lì." "alle persone che già seguivi lì."
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%s non sta seguendo nessuno." msgstr "%s non sta seguendo nessuno."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber" msgstr "Jabber"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS" msgstr "SMS"
@ -4453,22 +4463,22 @@ msgstr "Impossibile aggiornare il messaggio con il nuovo URI."
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "Errore del DB nell'inserire un hashtag: %s" msgstr "Errore del DB nell'inserire un hashtag: %s"
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "Problema nel salvare il messaggio. Troppo lungo." msgstr "Problema nel salvare il messaggio. Troppo lungo."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Problema nel salvare il messaggio. Utente sconosciuto." msgstr "Problema nel salvare il messaggio. Utente sconosciuto."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra " "Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra "
"qualche minuto." "qualche minuto."
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
@ -4476,38 +4486,57 @@ msgstr ""
"Troppi messaggi duplicati troppo velocemente; fai una pausa e scrivi di " "Troppi messaggi duplicati troppo velocemente; fai una pausa e scrivi di "
"nuovo tra qualche minuto." "nuovo tra qualche minuto."
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Ti è proibito inviare messaggi su questo sito." msgstr "Ti è proibito inviare messaggi su questo sito."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Problema nel salvare il messaggio." msgstr "Problema nel salvare il messaggio."
#: classes/Notice.php:788 #: classes/Notice.php:882
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Problema nel salvare la casella della posta del gruppo." msgstr "Problema nel salvare la casella della posta del gruppo."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Errore del DB nell'inserire la risposta: %s"
#: 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"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr "Non ti è possibile abbonarti."
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr "Hai già l'abbonamento!"
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "L'utente non ti consente di seguirlo."
#: classes/Subscription.php:157
msgid "Not subscribed!"
msgstr "Non hai l'abbonamento!"
#: classes/Subscription.php:163
msgid "Couldn't delete self-subscription."
msgstr "Impossibile eliminare l'auto-abbonamento."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Impossibile eliminare l'abbonamento."
#: classes/User.php:372
#, php-format #, php-format
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "Benvenuti su %1$s, @%2$s!" msgstr "Benvenuti su %1$s, @%2$s!"
#: classes/User_group.php:380 #: classes/User_group.php:423
msgid "Could not create group." msgid "Could not create group."
msgstr "Impossibile creare il gruppo." msgstr "Impossibile creare il gruppo."
#: classes/User_group.php:409 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Impossibile impostare la membership al gruppo." msgstr "Impossibile impostare la membership al gruppo."
@ -4711,26 +4740,38 @@ msgstr ""
"I contenuti e i dati sono forniti dai collaboratori. Tutti i diritti " "I contenuti e i dati sono forniti dai collaboratori. Tutti i diritti "
"riservati." "riservati."
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "Tutti " msgstr "Tutti "
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "licenza." msgstr "licenza."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "Paginazione" msgstr "Paginazione"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "Successivi" msgstr "Successivi"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "Precedenti" msgstr "Precedenti"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "Non puoi apportare modifiche al sito." msgstr "Non puoi apportare modifiche al sito."
@ -5029,82 +5070,92 @@ msgstr "Errore nel salvare il messaggio."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "Specifica il nome dell'utente a cui abbonarti." msgstr "Specifica il nome dell'utente a cui abbonarti."
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "Utente inesistente."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "Abbonati a %s" msgstr "Abbonati a %s"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "Specifica il nome dell'utente da cui annullare l'abbonamento." msgstr "Specifica il nome dell'utente da cui annullare l'abbonamento."
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "Abbonamento a %s annullato" msgstr "Abbonamento a %s annullato"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "Comando non ancora implementato." msgstr "Comando non ancora implementato."
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "Notifiche disattivate." msgstr "Notifiche disattivate."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "Impossibile disattivare le notifiche." msgstr "Impossibile disattivare le notifiche."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "Notifiche attivate." msgstr "Notifiche attivate."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "Impossibile attivare le notifiche." msgstr "Impossibile attivare le notifiche."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "Il comando di accesso è disabilitato" msgstr "Il comando di accesso è disabilitato"
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
"Questo collegamento è utilizzabile una sola volta ed è valido solo per 2 " "Questo collegamento è utilizzabile una sola volta ed è valido solo per 2 "
"minuti: %s" "minuti: %s"
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Abbonamento a %s annullato"
#: lib/command.php:709
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "Il tuo abbonamento è stato annullato." msgstr "Il tuo abbonamento è stato annullato."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Persona di cui hai già un abbonamento:" msgstr[0] "Persona di cui hai già un abbonamento:"
msgstr[1] "Persone di cui hai già un abbonamento:" msgstr[1] "Persone di cui hai già un abbonamento:"
#: lib/command.php:690 #: lib/command.php:731
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Nessuno è abbonato ai tuoi messaggi." msgstr "Nessuno è abbonato ai tuoi messaggi."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Questa persona è abbonata ai tuoi messaggi:" msgstr[0] "Questa persona è abbonata ai tuoi messaggi:"
msgstr[1] "Queste persone sono abbonate ai tuoi messaggi:" msgstr[1] "Queste persone sono abbonate ai tuoi messaggi:"
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "Non fai parte di alcun gruppo." msgstr "Non fai parte di alcun gruppo."
#: lib/command.php:714 #: lib/command.php:755
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] "Non fai parte di questo gruppo:" msgstr[0] "Non fai parte di questo gruppo:"
msgstr[1] "Non fai parte di questi gruppi:" msgstr[1] "Non fai parte di questi gruppi:"
#: lib/command.php:728 #: lib/command.php:769
#, fuzzy
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5118,6 +5169,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5184,21 +5236,21 @@ msgstr ""
"tracks - non ancora implementato\n" "tracks - non ancora implementato\n"
"tracking - non ancora implementato\n" "tracking - non ancora implementato\n"
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Non è stato trovato alcun file di configurazione. " msgstr "Non è stato trovato alcun file di configurazione. "
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "I file di configurazione sono stati cercati in questi posti: " msgstr "I file di configurazione sono stati cercati in questi posti: "
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
"Potrebbe essere necessario lanciare il programma d'installazione per " "Potrebbe essere necessario lanciare il programma d'installazione per "
"correggere il problema." "correggere il problema."
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Vai al programma d'installazione." msgstr "Vai al programma d'installazione."
@ -5693,7 +5745,7 @@ msgstr ""
"iniziare una conversazione con altri utenti. Altre persone possono mandare " "iniziare una conversazione con altri utenti. Altre persone possono mandare "
"messaggi riservati solamente a te." "messaggi riservati solamente a te."
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "via" msgstr "via"
@ -5818,48 +5870,48 @@ msgstr ""
"Il recupero della tua posizione geografica sta impiegando più tempo del " "Il recupero della tua posizione geografica sta impiegando più tempo del "
"previsto. Riprova più tardi." "previsto. Riprova più tardi."
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "N" msgstr "N"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "S" msgstr "S"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "E" msgstr "E"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "O" msgstr "O"
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "presso" msgstr "presso"
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "in una discussione" msgstr "in una discussione"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "Ripetuto da" msgstr "Ripetuto da"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Rispondi a questo messaggio" msgstr "Rispondi a questo messaggio"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "Rispondi" msgstr "Rispondi"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Messaggio ripetuto" msgstr "Messaggio ripetuto"
@ -5891,10 +5943,6 @@ msgstr "Errore nell'inserire il profilo remoto"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Messaggio duplicato" msgstr "Messaggio duplicato"
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr "Non ti è possibile abbonarti."
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Impossibile inserire un nuovo abbonamento." msgstr "Impossibile inserire un nuovo abbonamento."
@ -6071,34 +6119,6 @@ msgstr "Persone abbonate a %s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "Gruppi di cui %s fa parte" msgstr "Gruppi di cui %s fa parte"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr "Hai già l'abbonamento!"
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "L'utente non ti consente di seguirlo."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "Impossibile abbonarsi."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "Impossibile abbonare altri a te."
#: lib/subs.php:137
msgid "Not subscribed!"
msgstr "Non hai l'abbonamento!"
#: lib/subs.php:142
msgid "Couldn't delete self-subscription."
msgstr "Impossibile eliminare l'auto-abbonamento."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Impossibile eliminare l'abbonamento."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6149,67 +6169,67 @@ msgstr "Modifica immagine"
msgid "User actions" msgid "User actions"
msgstr "Azioni utente" msgstr "Azioni utente"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Modifica impostazioni del profilo" msgstr "Modifica impostazioni del profilo"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "Modifica" msgstr "Modifica"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Invia un messaggio diretto a questo utente" msgstr "Invia un messaggio diretto a questo utente"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Messaggio" msgstr "Messaggio"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "Modera" msgstr "Modera"
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "pochi secondi fa" msgstr "pochi secondi fa"
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "circa un minuto fa" msgstr "circa un minuto fa"
#: lib/util.php:874 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "circa %d minuti fa" msgstr "circa %d minuti fa"
#: lib/util.php:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "circa un'ora fa" msgstr "circa un'ora fa"
#: lib/util.php:878 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "circa %d ore fa" msgstr "circa %d ore fa"
#: lib/util.php:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "circa un giorno fa" msgstr "circa un giorno fa"
#: lib/util.php:882 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "circa %d giorni fa" msgstr "circa %d giorni fa"
#: lib/util.php:884 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "circa un mese fa" msgstr "circa un mese fa"
#: lib/util.php:886 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "circa %d mesi fa" msgstr "circa %d mesi fa"
#: lib/util.php:888 #: lib/util.php:970
msgid "about a year ago" msgid "about a year ago"
msgstr "circa un anno fa" msgstr "circa un anno fa"

View File

@ -11,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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:15:17+0000\n" "PO-Revision-Date: 2010-02-24 23:51:12+0000\n"
"Language-Team: Japanese\n" "Language-Team: Japanese\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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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: ja\n" "X-Language-Code: ja\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -63,7 +63,7 @@ msgstr "新規登録を無効。"
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -101,7 +101,6 @@ msgstr "そのようなページはありません。"
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "そのようなユーザはいません。" msgstr "そのようなユーザはいません。"
@ -169,8 +168,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 "%2$s に %1$s と友人からの更新があります!" msgstr "%2$s に %1$s と友人からの更新があります!"
@ -191,12 +190,12 @@ msgstr "%2$s に %1$s と友人からの更新があります!"
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "API メソッドが見つかりません。" msgstr "API メソッドが見つかりません。"
@ -499,7 +498,7 @@ msgstr "不正なトークン。"
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -638,7 +637,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。"
@ -649,7 +648,7 @@ msgstr "%1$s は %2$s でお気に入りを更新しました / %2$s。"
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!"
@ -665,12 +664,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 "%2$s からアップデートに答える %1$s アップデート" msgstr "%2$s からアップデートに答える %1$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 アップデート!"
@ -680,7 +679,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 の返信"
@ -690,7 +689,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 "%2$s に %1$s による更新があります!" msgstr "%2$s に %1$s による更新があります!"
@ -751,7 +750,7 @@ msgid "Preview"
msgstr "プレビュー" msgstr "プレビュー"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "削除" msgstr "削除"
@ -933,7 +932,7 @@ msgstr "このアプリケーションのオーナーではありません。"
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "あなたのセッショントークンに関する問題がありました。" msgstr "あなたのセッショントークンに関する問題がありました。"
@ -962,7 +961,7 @@ 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -993,7 +992,7 @@ msgstr "本当にこのつぶやきを削除しますか?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "このつぶやきを削除できません。" msgstr "このつぶやきを削除できません。"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "このつぶやきを削除" msgstr "このつぶやきを削除"
@ -1234,7 +1233,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:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "別名を作成できません。" msgstr "別名を作成できません。"
@ -2317,7 +2316,7 @@ msgid "Only "
msgstr "だけ " msgstr "だけ "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "サポートされていないデータ形式。" msgstr "サポートされていないデータ形式。"
@ -2758,23 +2757,23 @@ msgstr "言語が長すぎます。(最大50字)"
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "不正なタグ: \"%s\"" msgstr "不正なタグ: \"%s\""
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "自動フォローのためのユーザを更新できませんでした。" msgstr "自動フォローのためのユーザを更新できませんでした。"
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "場所情報を保存できません。" msgstr "場所情報を保存できません。"
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "プロファイルを保存できません" msgstr "プロファイルを保存できません"
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "タグを保存できません。" msgstr "タグを保存できません。"
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "設定が保存されました。" msgstr "設定が保存されました。"
@ -3167,7 +3166,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "プロファイルサービスまたはマイクロブロギングサービスのURL" msgstr "プロファイルサービスまたはマイクロブロギングサービスのURL"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "フォロー" msgstr "フォロー"
@ -3206,7 +3205,7 @@ msgstr "自分のつぶやきは繰り返せません。"
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "すでにそのつぶやきを繰り返しています。" msgstr "すでにそのつぶやきを繰り返しています。"
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "繰り返された" msgstr "繰り返された"
@ -3921,15 +3920,26 @@ msgstr "コードが入力されていません"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "あなたはそのプロファイルにフォローされていません。" msgstr "あなたはそのプロファイルにフォローされていません。"
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "フォローを保存できません。" msgstr "フォローを保存できません。"
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "ローカルユーザではありません。" msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "そのようなファイルはありません。"
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "あなたはそのプロファイルにフォローされていません。"
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "フォローしている" msgstr "フォローしている"
@ -3993,7 +4003,7 @@ msgstr "あなたがつぶやきを聞いている人"
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "%s がつぶやきを聞いている人" msgstr "%s がつぶやきを聞いている人"
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4009,16 +4019,16 @@ msgstr ""
"twittersettings%%)であれば、あなたは自動的に既にフォローしている人々をフォ" "twittersettings%%)であれば、あなたは自動的に既にフォローしている人々をフォ"
"ローできます。" "ローできます。"
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%s はだれも言うことを聞いていません。" msgstr "%s はだれも言うことを聞いていません。"
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber" msgstr "Jabber"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS" msgstr "SMS"
@ -4435,21 +4445,21 @@ msgstr "新しいURIでメッセージをアップデートできませんでし
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "ハッシュタグ追加 エラー: %s" msgstr "ハッシュタグ追加 エラー: %s"
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "つぶやきを保存する際に問題が発生しました。長すぎです。" msgstr "つぶやきを保存する際に問題が発生しました。長すぎです。"
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "つぶやきを保存する際に問題が発生しました。不明なユーザです。" msgstr "つぶやきを保存する際に問題が発生しました。不明なユーザです。"
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"多すぎるつぶやきが速すぎます; 数分間の休みを取ってから再投稿してください。" "多すぎるつぶやきが速すぎます; 数分間の休みを取ってから再投稿してください。"
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
@ -4457,38 +4467,57 @@ msgstr ""
"多すぎる重複メッセージが速すぎます; 数分間休みを取ってから再度投稿してくださ" "多すぎる重複メッセージが速すぎます; 数分間休みを取ってから再度投稿してくださ"
"い。" "い。"
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "あなたはこのサイトでつぶやきを投稿するのが禁止されています。" msgstr "あなたはこのサイトでつぶやきを投稿するのが禁止されています。"
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "つぶやきを保存する際に問題が発生しました。" msgstr "つぶやきを保存する際に問題が発生しました。"
#: classes/Notice.php:788 #: classes/Notice.php:882
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "グループ受信箱を保存する際に問題が発生しました。" msgstr "グループ受信箱を保存する際に問題が発生しました。"
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "返信を追加する際にデータベースエラー : %s"
#: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr "あなたはフォローが禁止されました。"
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr "すでにフォローしています!"
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "ユーザはあなたをブロックしました。"
#: classes/Subscription.php:157
msgid "Not subscribed!"
msgstr "フォローしていません!"
#: classes/Subscription.php:163
msgid "Couldn't delete self-subscription."
msgstr "自己フォローを削除できません。"
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "フォローを削除できません"
#: classes/User.php:372
#, php-format #, php-format
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:423
msgid "Could not create group." msgid "Could not create group."
msgstr "グループを作成できません。" msgstr "グループを作成できません。"
#: classes/User_group.php:409 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "グループメンバーシップをセットできません。" msgstr "グループメンバーシップをセットできません。"
@ -4689,26 +4718,38 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "全て " msgstr "全て "
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "ライセンス。" msgstr "ライセンス。"
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "ページ化" msgstr "ページ化"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "<<後" msgstr "<<後"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "前>>" msgstr "前>>"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "あなたはこのサイトへの変更を行うことができません。" msgstr "あなたはこのサイトへの変更を行うことができません。"
@ -5006,77 +5047,87 @@ msgstr "つぶやき保存エラー。"
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "フォローするユーザの名前を指定してください" msgstr "フォローするユーザの名前を指定してください"
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
#, fuzzy
msgid "No such user"
msgstr "そのようなユーザはいません。"
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "%s をフォローしました" msgstr "%s をフォローしました"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "フォローをやめるユーザの名前を指定してください" msgstr "フォローをやめるユーザの名前を指定してください"
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "%s のフォローをやめる" msgstr "%s のフォローをやめる"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "コマンドはまだ実装されていません。" msgstr "コマンドはまだ実装されていません。"
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "通知オフ。" msgstr "通知オフ。"
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "通知をオフできません。" msgstr "通知をオフできません。"
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "通知オン。" msgstr "通知オン。"
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "通知をオンできません。" msgstr "通知をオンできません。"
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "ログインコマンドが無効になっています。" msgstr "ログインコマンドが無効になっています。"
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "このリンクは、かつてだけ使用可能であり、2分間だけ良いです: %s" msgstr "このリンクは、かつてだけ使用可能であり、2分間だけ良いです: %s"
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "%s のフォローをやめる"
#: lib/command.php:709
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "あなたはだれにもフォローされていません。" msgstr "あなたはだれにもフォローされていません。"
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "あなたはこの人にフォローされています:" msgstr[0] "あなたはこの人にフォローされています:"
#: lib/command.php:690 #: lib/command.php:731
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "誰もフォローしていません。" msgstr "誰もフォローしていません。"
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "この人はあなたにフォローされている:" msgstr[0] "この人はあなたにフォローされている:"
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "あなたはどのグループのメンバーでもありません。" msgstr "あなたはどのグループのメンバーでもありません。"
#: lib/command.php:714 #: lib/command.php:755
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] "あなたはこのグループのメンバーではありません:" msgstr[0] "あなたはこのグループのメンバーではありません:"
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5090,6 +5141,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5117,21 +5169,21 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "コンフィギュレーションファイルがありません。 " msgstr "コンフィギュレーションファイルがありません。 "
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "私は以下の場所でコンフィギュレーションファイルを探しました: " msgstr "私は以下の場所でコンフィギュレーションファイルを探しました: "
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
"あなたは、これを修理するためにインストーラを動かしたがっているかもしれませ" "あなたは、これを修理するためにインストーラを動かしたがっているかもしれませ"
"ん。" "ん。"
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "インストーラへ。" msgstr "インストーラへ。"
@ -5624,7 +5676,7 @@ msgstr ""
"に引き込むプライベートメッセージを送ることができます。人々はあなただけへの" "に引き込むプライベートメッセージを送ることができます。人々はあなただけへの"
"メッセージを送ることができます。" "メッセージを送ることができます。"
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "from" msgstr "from"
@ -5752,52 +5804,52 @@ msgstr ""
"すみません、あなたの位置を検索するのが予想より長くかかっています、後でもう一" "すみません、あなたの位置を検索するのが予想より長くかかっています、後でもう一"
"度試みてください" "度試みてください"
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "北" msgstr "北"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
#, fuzzy #, fuzzy
msgid "S" msgid "S"
msgstr "南" msgstr "南"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
#, fuzzy #, fuzzy
msgid "E" msgid "E"
msgstr "東" msgstr "東"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
#, fuzzy #, fuzzy
msgid "W" msgid "W"
msgstr "西" msgstr "西"
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "at" msgstr "at"
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "" msgstr ""
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "" msgstr ""
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "このつぶやきへ返信" msgstr "このつぶやきへ返信"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "返信" msgstr "返信"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
msgid "Notice repeated" msgid "Notice repeated"
msgstr "つぶやきを繰り返しました" msgstr "つぶやきを繰り返しました"
@ -5829,10 +5881,6 @@ msgstr "リモートプロファイル追加エラー"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "重複したつぶやき" msgstr "重複したつぶやき"
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr "あなたはフォローが禁止されました。"
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "サブスクリプションを追加できません" msgstr "サブスクリプションを追加できません"
@ -6009,34 +6057,6 @@ msgstr "人々は %s をフォローしました。"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "グループ %s はメンバー" msgstr "グループ %s はメンバー"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr "すでにフォローしています!"
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "ユーザはあなたをブロックしました。"
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "フォローできません。"
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "他の人があなたをフォローできません。"
#: lib/subs.php:137
msgid "Not subscribed!"
msgstr "フォローしていません!"
#: lib/subs.php:142
msgid "Couldn't delete self-subscription."
msgstr "自己フォローを削除できません。"
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "フォローを削除できません"
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6087,68 +6107,68 @@ msgstr "アバターを編集する"
msgid "User actions" msgid "User actions"
msgstr "利用者アクション" msgstr "利用者アクション"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "プロファイル設定編集" msgstr "プロファイル設定編集"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "編集" msgstr "編集"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "この利用者にダイレクトメッセージを送る" msgstr "この利用者にダイレクトメッセージを送る"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "メッセージ" msgstr "メッセージ"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
#, fuzzy #, fuzzy
msgid "Moderate" msgid "Moderate"
msgstr "管理" msgstr "管理"
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "数秒前" msgstr "数秒前"
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "約 1 分前" msgstr "約 1 分前"
#: lib/util.php:874 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "約 %d 分前" msgstr "約 %d 分前"
#: lib/util.php:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "約 1 時間前" msgstr "約 1 時間前"
#: lib/util.php:878 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "約 %d 時間前" msgstr "約 %d 時間前"
#: lib/util.php:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "約 1 日前" msgstr "約 1 日前"
#: lib/util.php:882 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "約 %d 日前" msgstr "約 %d 日前"
#: lib/util.php:884 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "約 1 ヵ月前" msgstr "約 1 ヵ月前"
#: lib/util.php:886 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "約 %d ヵ月前" msgstr "約 %d ヵ月前"
#: lib/util.php:888 #: lib/util.php:970
msgid "about a year ago" msgid "about a year ago"
msgstr "約 1 年前" msgstr "約 1 年前"

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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:15:20+0000\n" "PO-Revision-Date: 2010-02-24 23:51:15+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -65,7 +65,7 @@ msgstr ""
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -105,7 +105,6 @@ msgstr "그러한 태그가 없습니다."
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "그러한 사용자는 없습니다." msgstr "그러한 사용자는 없습니다."
@ -168,8 +167,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "%s 및 친구들" msgstr "%s 및 친구들"
#: 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에 있는 친구들의 업데이트!"
@ -190,12 +189,12 @@ msgstr "%1$s 및 %2$s에 있는 친구들의 업데이트!"
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "API 메서드를 찾을 수 없습니다." msgstr "API 메서드를 찾을 수 없습니다."
@ -509,7 +508,7 @@ msgstr "옳지 않은 크기"
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -654,7 +653,7 @@ msgstr "지원하지 않는 그림 파일 형식입니다."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%s / %s의 좋아하는 글들" msgstr "%s / %s의 좋아하는 글들"
#: actions/apitimelinefavorites.php:120 #: actions/apitimelinefavorites.php:117
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s updates favorited by %2$s / %2$s." msgid "%1$s updates favorited by %2$s / %2$s."
msgstr "%s 좋아하는 글이 업데이트 됐습니다. %S에 의해 / %s." msgstr "%s 좋아하는 글이 업데이트 됐습니다. %S에 의해 / %s."
@ -665,7 +664,7 @@ msgstr "%s 좋아하는 글이 업데이트 됐습니다. %S에 의해 / %s."
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!"
@ -681,12 +680,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개!"
@ -696,7 +695,7 @@ msgstr "모두로부터의 업데이트 %s개!"
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "%s에 답신" msgstr "%s에 답신"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, fuzzy, php-format #, fuzzy, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "%s에 답신" msgstr "%s에 답신"
@ -706,7 +705,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
#, fuzzy, php-format #, fuzzy, php-format
msgid "Updates tagged with %1$s on %2$s!" msgid "Updates tagged with %1$s on %2$s!"
msgstr "%2$s에 있는 %1$s의 업데이트!" msgstr "%2$s에 있는 %1$s의 업데이트!"
@ -768,7 +767,7 @@ msgid "Preview"
msgstr "미리보기" msgstr "미리보기"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "삭제" msgstr "삭제"
@ -957,7 +956,7 @@ msgstr "당신은 해당 그룹의 멤버가 아닙니다."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "당신의 세션토큰관련 문제가 있습니다." msgstr "당신의 세션토큰관련 문제가 있습니다."
@ -986,7 +985,7 @@ 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -1018,7 +1017,7 @@ msgstr "정말로 통지를 삭제하시겠습니까?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "이 통지를 지울 수 없습니다." msgstr "이 통지를 지울 수 없습니다."
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "이 게시글 삭제하기" msgstr "이 게시글 삭제하기"
@ -1281,7 +1280,7 @@ msgstr "설명이 너무 길어요. (최대 140글자)"
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:433
#, fuzzy #, fuzzy
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "좋아하는 게시글을 생성할 수 없습니다." msgstr "좋아하는 게시글을 생성할 수 없습니다."
@ -2366,7 +2365,7 @@ msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "지원하는 형식의 데이터가 아닙니다." msgstr "지원하는 형식의 데이터가 아닙니다."
@ -2822,24 +2821,24 @@ msgstr "언어가 너무 깁니다. (최대 50글자)"
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "유효하지 않은태그: \"%s\"" msgstr "유효하지 않은태그: \"%s\""
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "자동구독에 사용자를 업데이트 할 수 없습니다." msgstr "자동구독에 사용자를 업데이트 할 수 없습니다."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
#, fuzzy #, fuzzy
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "태그를 저장할 수 없습니다." msgstr "태그를 저장할 수 없습니다."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "프로필을 저장 할 수 없습니다." msgstr "프로필을 저장 할 수 없습니다."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "태그를 저장할 수 없습니다." msgstr "태그를 저장할 수 없습니다."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "설정 저장" msgstr "설정 저장"
@ -3222,7 +3221,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "다른 마이크로블로깅 서비스의 귀하의 프로필 URL" msgstr "다른 마이크로블로깅 서비스의 귀하의 프로필 URL"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "구독" msgstr "구독"
@ -3265,7 +3264,7 @@ msgstr "라이선스에 동의하지 않는다면 등록할 수 없습니다."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "당신은 이미 이 사용자를 차단하고 있습니다." msgstr "당신은 이미 이 사용자를 차단하고 있습니다."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "생성" msgstr "생성"
@ -3963,15 +3962,26 @@ msgstr "코드가 입력 되지 않았습니다."
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "당신은 이 프로필에 구독되지 않고있습니다." msgstr "당신은 이 프로필에 구독되지 않고있습니다."
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "구독을 저장할 수 없습니다." msgstr "구독을 저장할 수 없습니다."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "로컬 사용자 아닙니다." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "그러한 통지는 없습니다."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "당신은 이 프로필에 구독되지 않고있습니다."
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "구독하였습니다." msgstr "구독하였습니다."
@ -4031,7 +4041,7 @@ msgstr "귀하의 통지를 받고 있는 사람"
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "%s님이 받고 있는 통지의 사람" msgstr "%s님이 받고 있는 통지의 사람"
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4041,16 +4051,16 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, fuzzy, php-format #, fuzzy, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%1$s 는 지금 듣고 있습니다." msgstr "%1$s 는 지금 듣고 있습니다."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber" msgstr "Jabber"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS" msgstr "SMS"
@ -4474,23 +4484,23 @@ msgstr "새 URI와 함께 메시지를 업데이트할 수 없습니다."
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "해쉬테그를 추가 할 때에 데이타베이스 에러 : %s" msgstr "해쉬테그를 추가 할 때에 데이타베이스 에러 : %s"
#: classes/Notice.php:214 #: classes/Notice.php:222
#, fuzzy #, fuzzy
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "통지를 저장하는데 문제가 발생했습니다." msgstr "통지를 저장하는데 문제가 발생했습니다."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "게시글 저장문제. 알려지지않은 회원" msgstr "게시글 저장문제. 알려지지않은 회원"
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " "너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 "
"해보세요." "해보세요."
#: classes/Notice.php:229 #: classes/Notice.php:237
#, fuzzy #, fuzzy
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
@ -4499,39 +4509,61 @@ msgstr ""
"너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " "너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 "
"해보세요." "해보세요."
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었습니다." msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었습니다."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "통지를 저장하는데 문제가 발생했습니다." msgstr "통지를 저장하는데 문제가 발생했습니다."
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy #, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "통지를 저장하는데 문제가 발생했습니다." msgstr "통지를 저장하는데 문제가 발생했습니다."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "답신을 추가 할 때에 데이타베이스 에러 : %s"
#: 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)"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
#, fuzzy
msgid "You have been banned from subscribing."
msgstr "이 회원은 구독으로부터 당신을 차단해왔다."
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr ""
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "회원이 당신을 차단해왔습니다."
#: classes/Subscription.php:157
#, fuzzy
msgid "Not subscribed!"
msgstr "구독하고 있지 않습니다!"
#: classes/Subscription.php:163
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "예약 구독을 삭제 할 수 없습니다."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "예약 구독을 삭제 할 수 없습니다."
#: classes/User.php:372
#, fuzzy, php-format #, fuzzy, php-format
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "%2$s에서 %1$s까지 메시지" msgstr "%2$s에서 %1$s까지 메시지"
#: classes/User_group.php:380 #: classes/User_group.php:423
msgid "Could not create group." msgid "Could not create group."
msgstr "새 그룹을 만들 수 없습니다." msgstr "새 그룹을 만들 수 없습니다."
#: classes/User_group.php:409 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "그룹 맴버십을 세팅할 수 없습니다." msgstr "그룹 맴버십을 세팅할 수 없습니다."
@ -4737,26 +4769,38 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "모든 것" msgstr "모든 것"
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "라이선스" msgstr "라이선스"
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "페이지수" msgstr "페이지수"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "뒷 페이지" msgstr "뒷 페이지"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "앞 페이지" msgstr "앞 페이지"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
#, fuzzy #, fuzzy
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
@ -5071,80 +5115,89 @@ msgstr "통지를 저장하는데 문제가 발생했습니다."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "구독하려는 사용자의 이름을 지정하십시오." msgstr "구독하려는 사용자의 이름을 지정하십시오."
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "그러한 사용자는 없습니다."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "%s에게 구독되었습니다." msgstr "%s에게 구독되었습니다."
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "구독을 해제하려는 사용자의 이름을 지정하십시오." msgstr "구독을 해제하려는 사용자의 이름을 지정하십시오."
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "%s에서 구독을 해제했습니다." msgstr "%s에서 구독을 해제했습니다."
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "명령이 아직 실행되지 않았습니다." msgstr "명령이 아직 실행되지 않았습니다."
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "알림끄기." msgstr "알림끄기."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "알림을 끌 수 없습니다." msgstr "알림을 끌 수 없습니다."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "알림이 켜졌습니다." msgstr "알림이 켜졌습니다."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "알림을 켤 수 없습니다." msgstr "알림을 켤 수 없습니다."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "%s에서 구독을 해제했습니다."
#: lib/command.php:709
#, fuzzy #, fuzzy
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "당신은 이 프로필에 구독되지 않고있습니다." msgstr "당신은 이 프로필에 구독되지 않고있습니다."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "당신은 다음 사용자를 이미 구독하고 있습니다." msgstr[0] "당신은 다음 사용자를 이미 구독하고 있습니다."
#: lib/command.php:690 #: lib/command.php:731
#, fuzzy #, fuzzy
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "다른 사람을 구독 하실 수 없습니다." msgstr "다른 사람을 구독 하실 수 없습니다."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "다른 사람을 구독 하실 수 없습니다." msgstr[0] "다른 사람을 구독 하실 수 없습니다."
#: lib/command.php:712 #: lib/command.php:753
#, fuzzy #, fuzzy
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "당신은 해당 그룹의 멤버가 아닙니다." msgstr "당신은 해당 그룹의 멤버가 아닙니다."
#: lib/command.php:714 #: lib/command.php:755
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] "당신은 해당 그룹의 멤버가 아닙니다." msgstr[0] "당신은 해당 그룹의 멤버가 아닙니다."
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5158,6 +5211,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5185,20 +5239,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "확인 코드가 없습니다." msgstr "확인 코드가 없습니다."
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
msgstr "이 사이트 로그인" msgstr "이 사이트 로그인"
@ -5619,7 +5673,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr "다음에서:" msgstr "다음에서:"
@ -5743,51 +5797,51 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "아니오" msgstr "아니오"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:547 #: lib/noticelist.php:558
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "내용이 없습니다!" msgstr "내용이 없습니다!"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "생성" msgstr "생성"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "이 게시글에 대해 답장하기" msgstr "이 게시글에 대해 답장하기"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "답장하기" msgstr "답장하기"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "게시글이 등록되었습니다." msgstr "게시글이 등록되었습니다."
@ -5821,11 +5875,6 @@ msgstr "리모트 프로필 추가 오류"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "통지 삭제" msgstr "통지 삭제"
#: lib/oauthstore.php:465 lib/subs.php:48
#, fuzzy
msgid "You have been banned from subscribing."
msgstr "이 회원은 구독으로부터 당신을 차단해왔다."
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "예약 구독을 추가 할 수 없습니다." msgstr "예약 구독을 추가 할 수 없습니다."
@ -6013,36 +6062,6 @@ msgstr "%s에 의해 구독되는 사람들"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "%s 그룹들은 의 멤버입니다." msgstr "%s 그룹들은 의 멤버입니다."
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr ""
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "회원이 당신을 차단해왔습니다."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "구독 하실 수 없습니다."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "다른 사람을 구독 하실 수 없습니다."
#: lib/subs.php:137
#, fuzzy
msgid "Not subscribed!"
msgstr "구독하고 있지 않습니다!"
#: lib/subs.php:142
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "예약 구독을 삭제 할 수 없습니다."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "예약 구독을 삭제 할 수 없습니다."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6096,68 +6115,68 @@ msgstr "아바타"
msgid "User actions" msgid "User actions"
msgstr "사용자 동작" msgstr "사용자 동작"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
#, fuzzy #, fuzzy
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "프로필 세팅" msgstr "프로필 세팅"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "이 회원에게 직접 메시지를 보냅니다." msgstr "이 회원에게 직접 메시지를 보냅니다."
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "메시지" msgstr "메시지"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "몇 초 전" msgstr "몇 초 전"
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "1분 전" msgstr "1분 전"
#: lib/util.php:874 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "%d분 전" msgstr "%d분 전"
#: lib/util.php:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "1시간 전" msgstr "1시간 전"
#: lib/util.php:878 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "%d시간 전" msgstr "%d시간 전"
#: lib/util.php:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "하루 전" msgstr "하루 전"
#: lib/util.php:882 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "%d일 전" msgstr "%d일 전"
#: lib/util.php:884 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "1달 전" msgstr "1달 전"
#: lib/util.php:886 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "%d달 전" msgstr "%d달 전"
#: lib/util.php:888 #: lib/util.php:970
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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:15:23+0000\n" "PO-Revision-Date: 2010-02-24 23:51:18+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -63,7 +63,7 @@ msgstr "Оневозможи нови регистрации."
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -101,7 +101,6 @@ msgstr "Нема таква страница"
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Нема таков корисник." msgstr "Нема таков корисник."
@ -172,8 +171,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!"
@ -194,12 +193,12 @@ msgstr "Подновувања од %1$s и пријатели на %2$s!"
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "API методот не е пронајден." msgstr "API методот не е пронајден."
@ -502,7 +501,7 @@ msgstr "Погрешен жетон."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -646,7 +645,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."
@ -657,7 +656,7 @@ msgstr "Подновувања на %1$s омилени на %2$s / %2$s."
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!"
@ -673,12 +672,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 подновуввања од сите!"
@ -688,7 +687,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"
@ -698,7 +697,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!"
@ -761,7 +760,7 @@ msgid "Preview"
msgstr "Преглед" msgstr "Преглед"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Бриши" msgstr "Бриши"
@ -943,7 +942,7 @@ msgstr "Не сте сопственик на овој програм."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Се појави проблем со Вашиот сесиски жетон." msgstr "Се појави проблем со Вашиот сесиски жетон."
@ -972,7 +971,7 @@ 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -1003,7 +1002,7 @@ msgstr "Дали сте сигурни дека сакате да ја избр
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Не ја бриши оваа забелешка" msgstr "Не ја бриши оваа забелешка"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Бриши ја оваа забелешка" msgstr "Бриши ја оваа забелешка"
@ -1244,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:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Не можеше да се создадат алијаси." msgstr "Не можеше да се создадат алијаси."
@ -2336,7 +2335,7 @@ msgid "Only "
msgstr "Само " msgstr "Само "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Ова не е поддржан формат на податотека." msgstr "Ова не е поддржан формат на податотека."
@ -2781,23 +2780,23 @@ msgstr "Јазикот е предлог (највеќе до 50 знаци)."
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Неважечка ознака: „%s“" msgstr "Неважечка ознака: „%s“"
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Не можев да го подновам корисникот за автопретплата." msgstr "Не можев да го подновам корисникот за автопретплата."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Не можев да ги зачувам нагодувањата за локација" msgstr "Не можев да ги зачувам нагодувањата за локација"
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Не можам да го зачувам профилот." msgstr "Не можам да го зачувам профилот."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Не можев да ги зачувам ознаките." msgstr "Не можев да ги зачувам ознаките."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Нагодувањата се зачувани" msgstr "Нагодувањата се зачувани"
@ -3196,7 +3195,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "URL на Вашиот профил на друга компатибилна служба за микроблогирање." msgstr "URL на Вашиот профил на друга компатибилна служба за микроблогирање."
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Претплати се" msgstr "Претплати се"
@ -3234,7 +3233,7 @@ msgstr "Не можете да повторувате сопствена заб
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Веќе ја имате повторено таа забелешка." msgstr "Веќе ја имате повторено таа забелешка."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "Повторено" msgstr "Повторено"
@ -3951,15 +3950,26 @@ msgstr "Нема внесено код"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "Не сте претплатени на тој профил." msgstr "Не сте претплатени на тој профил."
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Не можев да ја зачувам претплатата." msgstr "Не можев да ја зачувам претплатата."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "Не е локален корисник." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Нема таква податотека."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Не сте претплатени на тој профил."
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "Претплатено" msgstr "Претплатено"
@ -4023,7 +4033,7 @@ msgstr "Ова се луѓето чии забелешки ги следите."
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "Ова се луѓето чии забелешки ги следи %s." msgstr "Ова се луѓето чии забелешки ги следи %s."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4038,16 +4048,16 @@ msgstr ""
"(%%action.featured%%). Ако сте [корисник на Twitter](%%action.twittersettings" "(%%action.featured%%). Ако сте [корисник на Twitter](%%action.twittersettings"
"%%), тука можете автоматски да се претплатите на луѓе кои таму ги следите." "%%), тука можете автоматски да се претплатите на луѓе кои таму ги следите."
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%s не следи никого." msgstr "%s не следи никого."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber" msgstr "Jabber"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "СМС" msgstr "СМС"
@ -4475,22 +4485,22 @@ msgstr "Не можев да ја подновам пораката со нов
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "Грешка во базата на податоци при вметнувањето на хеш-ознака: %s" msgstr "Грешка во базата на податоци при вметнувањето на хеш-ознака: %s"
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "Проблем со зачувувањето на белешката. Премногу долго." msgstr "Проблем со зачувувањето на белешката. Премногу долго."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Проблем со зачувувањето на белешката. Непознат корисник." msgstr "Проблем со зачувувањето на белешката. Непознат корисник."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"Премногу забелњшки за прекратко време; здивнете малку и продолжете за " "Премногу забелњшки за прекратко време; здивнете малку и продолжете за "
"неколку минути." "неколку минути."
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
@ -4498,38 +4508,58 @@ msgstr ""
"Премногу дуплирани пораки во прекратко време; здивнете малку и продолжете за " "Премногу дуплирани пораки во прекратко време; здивнете малку и продолжете за "
"неколку минути." "неколку минути."
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Забрането Ви е да објавувате забелешки на оваа веб-страница." msgstr "Забрането Ви е да објавувате забелешки на оваа веб-страница."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Проблем во зачувувањето на белешката." msgstr "Проблем во зачувувањето на белешката."
#: classes/Notice.php:788 #: classes/Notice.php:882
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Проблем при зачувувањето на групното приемно сандаче." msgstr "Проблем при зачувувањето на групното приемно сандаче."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Одговор од внесот во базата: %s"
#: 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"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr "Блокирани сте од претплаќање."
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr "Веќе претплатено!"
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "Корисникот Ве има блокирано."
#: classes/Subscription.php:157
#, fuzzy
msgid "Not subscribed!"
msgstr "Не сте претплатени!"
#: classes/Subscription.php:163
msgid "Couldn't delete self-subscription."
msgstr "Не можам да ја избришам самопретплатата."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Претплата не може да се избрише."
#: classes/User.php:372
#, php-format #, php-format
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:423
msgid "Could not create group." msgid "Could not create group."
msgstr "Не можев да ја создадам групата." msgstr "Не можев да ја создадам групата."
#: classes/User_group.php:409 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Не можев да назначам членство во групата." msgstr "Не можев да назначам членство во групата."
@ -4734,26 +4764,38 @@ msgstr ""
"Авторските права на содржината и податоците им припаѓаат на учесниците. Сите " "Авторските права на содржината и податоците им припаѓаат на учесниците. Сите "
"права задржани." "права задржани."
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "Сите " msgstr "Сите "
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "лиценца." msgstr "лиценца."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "Прелом на страници" msgstr "Прелом на страници"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "По" msgstr "По"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "Пред" msgstr "Пред"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "Не можете да ја менувате оваа веб-страница." msgstr "Не можете да ја менувате оваа веб-страница."
@ -5053,80 +5095,90 @@ msgstr "Грешка при зачувувањето на белешката."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "Назначете го името на корисникот на којшто сакате да се претплатите" msgstr "Назначете го името на корисникот на којшто сакате да се претплатите"
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "Нема таков корисник"
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "Претплатено на %s" msgstr "Претплатено на %s"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "Назначете го името на корисникот од кого откажувате претплата." msgstr "Назначете го името на корисникот од кого откажувате претплата."
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "Претплатата на %s е откажана" msgstr "Претплатата на %s е откажана"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "Наредбата сè уште не е имплементирана." msgstr "Наредбата сè уште не е имплементирана."
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "Известувањето е исклучено." msgstr "Известувањето е исклучено."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "Не можам да исклучам известување." msgstr "Не можам да исклучам известување."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "Известувањето е вклучено." msgstr "Известувањето е вклучено."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "Не можам да вклучам известување." msgstr "Не можам да вклучам известување."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "Наредбата за најава е оневозможена" msgstr "Наредбата за најава е оневозможена"
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "Оваа врска може да се употреби само еднаш, и трае само 2 минути: %s" msgstr "Оваа врска може да се употреби само еднаш, и трае само 2 минути: %s"
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Претплатата на %s е откажана"
#: lib/command.php:709
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "Не сте претплатени никому." msgstr "Не сте претплатени никому."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Не ни го испративте тој профил." msgstr[0] "Не ни го испративте тој профил."
msgstr[1] "Не ни го испративте тој профил." msgstr[1] "Не ни го испративте тој профил."
#: lib/command.php:690 #: lib/command.php:731
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Никој не е претплатен на Вас." msgstr "Никој не е претплатен на Вас."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Оддалечена претплата" msgstr[0] "Оддалечена претплата"
msgstr[1] "Оддалечена претплата" msgstr[1] "Оддалечена претплата"
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "Не членувате во ниедна група." msgstr "Не членувате во ниедна група."
#: lib/command.php:714 #: lib/command.php:755
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] "Не ни го испративте тој профил." msgstr[0] "Не ни го испративте тој профил."
msgstr[1] "Не ни го испративте тој профил." msgstr[1] "Не ни го испративте тој профил."
#: lib/command.php:728 #: lib/command.php:769
#, fuzzy
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5140,6 +5192,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5204,19 +5257,19 @@ msgstr ""
"tracks - сè уште не е имплементирано.\n" "tracks - сè уште не е имплементирано.\n"
"tracking - сè уште не е имплементирано.\n" "tracking - сè уште не е имплементирано.\n"
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Нема пронајдено конфигурациска податотека. " msgstr "Нема пронајдено конфигурациска податотека. "
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "Побарав конфигурациони податотеки на следниве места: " msgstr "Побарав конфигурациони податотеки на следниве места: "
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "Препорачуваме да го пуштите инсталатерот за да го поправите ова." msgstr "Препорачуваме да го пуштите инсталатерот за да го поправите ова."
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Оди на инсталаторот." msgstr "Оди на инсталаторот."
@ -5714,7 +5767,7 @@ msgstr ""
"впуштите во разговор со други корисници. Луѓето можат да ви испраќаат пораки " "впуштите во разговор со други корисници. Луѓето можат да ви испраќаат пораки "
"што ќе можете да ги видите само Вие." "што ќе можете да ги видите само Вие."
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "од" msgstr "од"
@ -5842,48 +5895,48 @@ msgstr ""
"Жалиме, но добивањето на Вашата местоположба трае подолго од очекуваното. " "Жалиме, но добивањето на Вашата местоположба трае подолго од очекуваното. "
"Обидете се подоцна." "Обидете се подоцна."
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "С" msgstr "С"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "Ј" msgstr "Ј"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "И" msgstr "И"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "З" msgstr "З"
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "во" msgstr "во"
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "во контекст" msgstr "во контекст"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "Повторено од" msgstr "Повторено од"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Одговори на забелешкава" msgstr "Одговори на забелешкава"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "Одговор" msgstr "Одговор"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Забелешката е повторена" msgstr "Забелешката е повторена"
@ -5915,10 +5968,6 @@ msgstr "Грешка во внесувањето на оддалечениот
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Дуплирај забелешка" msgstr "Дуплирај забелешка"
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr "Блокирани сте од претплаќање."
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Не може да се внесе нова претплата." msgstr "Не може да се внесе нова претплата."
@ -6095,35 +6144,6 @@ msgstr "Луѓе претплатени на %s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "Групи кадешто членува %s" msgstr "Групи кадешто членува %s"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr "Веќе претплатено!"
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "Корисникот Ве има блокирано."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "Претплатата е неуспешна."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "Не можев да прептлатам друг корисник на Вас."
#: lib/subs.php:137
#, fuzzy
msgid "Not subscribed!"
msgstr "Не сте претплатени!"
#: lib/subs.php:142
msgid "Couldn't delete self-subscription."
msgstr "Не можам да ја избришам самопретплатата."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Претплата не може да се избрише."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6174,67 +6194,67 @@ msgstr "Уреди аватар"
msgid "User actions" msgid "User actions"
msgstr "Кориснички дејства" msgstr "Кориснички дејства"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Уреди нагодувања на профилот" msgstr "Уреди нагодувања на профилот"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "Уреди" msgstr "Уреди"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Испрати му директна порака на корисников" msgstr "Испрати му директна порака на корисников"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Порака" msgstr "Порака"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "Модерирај" msgstr "Модерирај"
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "пред неколку секунди" msgstr "пред неколку секунди"
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "пред една минута" msgstr "пред една минута"
#: lib/util.php:874 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "пред %d минути" msgstr "пред %d минути"
#: lib/util.php:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "пред еден час" msgstr "пред еден час"
#: lib/util.php:878 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "пред %d часа" msgstr "пред %d часа"
#: lib/util.php:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "пред еден ден" msgstr "пред еден ден"
#: lib/util.php:882 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "пред %d денови" msgstr "пред %d денови"
#: lib/util.php:884 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "пред еден месец" msgstr "пред еден месец"
#: lib/util.php:886 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "пред %d месеца" msgstr "пред %d месеца"
#: lib/util.php:888 #: lib/util.php:970
msgid "about a year ago" msgid "about a year ago"
msgstr "пред една година" msgstr "пред една година"

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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:15:26+0000\n" "PO-Revision-Date: 2010-02-24 23:51:22+0000\n"
"Language-Team: Norwegian (bokmål)\n" "Language-Team: Norwegian (bokmål)\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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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: no\n" "X-Language-Code: no\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -60,7 +60,7 @@ msgstr "Deaktiver nye registreringer."
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -98,7 +98,6 @@ msgstr "Ingen slik side"
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Ingen slik bruker" msgstr "Ingen slik bruker"
@ -167,8 +166,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "Du og venner" msgstr "Du og venner"
#: 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 "Oppdateringer fra %1$s og venner på %2$s!" msgstr "Oppdateringer fra %1$s og venner på %2$s!"
@ -189,12 +188,12 @@ msgstr "Oppdateringer fra %1$s og venner på %2$s!"
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "API-metode ikke funnet!" msgstr "API-metode ikke funnet!"
@ -497,7 +496,7 @@ msgstr "Ugyldig størrelse"
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -627,14 +626,14 @@ msgstr ""
#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261 #: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261
msgid "Unsupported format." msgid "Unsupported format."
msgstr "" msgstr "Formatet støttes ikke."
#: actions/apitimelinefavorites.php:108 #: actions/apitimelinefavorites.php:108
#, php-format #, php-format
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%1$s / Favoritter fra %2$s" msgstr "%1$s / Favoritter fra %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 oppdateringer markert som favoritt av %2$s / %2$s." msgstr "%1$s oppdateringer markert som favoritt av %2$s / %2$s."
@ -645,7 +644,7 @@ msgstr "%1$s oppdateringer markert som favoritt av %2$s / %2$s."
msgid "%s timeline" msgid "%s timeline"
msgstr "%s tidslinje" msgstr "%s tidslinje"
#: 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!"
@ -661,12 +660,12 @@ msgstr "%1$s / Oppdateringer som nevner %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 oppdateringer som svarer på oppdateringer fra %2$s / %3$s." msgstr "%1$s oppdateringer som svarer på oppdateringer fra %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 offentlig tidslinje" msgstr "%s offentlig tidslinje"
#: 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 oppdateringer fra alle sammen!" msgstr "%s oppdateringer fra alle sammen!"
@ -676,17 +675,17 @@ msgstr "%s oppdateringer fra alle sammen!"
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "Gjentatt til %s" msgstr "Gjentatt til %s"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, fuzzy, php-format #, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "Svar til %s" msgstr "Repetisjoner av %s"
#: actions/apitimelinetag.php:102 actions/tag.php:66 #: actions/apitimelinetag.php:102 actions/tag.php:66
#, php-format #, php-format
msgid "Notices tagged with %s" msgid "Notices tagged with %s"
msgstr "Notiser merket med %s" msgstr "Notiser merket med %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 "Oppdateringer merket med %1$s på %2$s!" msgstr "Oppdateringer merket med %1$s på %2$s!"
@ -733,9 +732,8 @@ msgstr ""
#: actions/avatarsettings.php:119 actions/avatarsettings.php:197 #: actions/avatarsettings.php:119 actions/avatarsettings.php:197
#: actions/grouplogo.php:251 #: actions/grouplogo.php:251
#, fuzzy
msgid "Avatar settings" msgid "Avatar settings"
msgstr "Innstillinger for IM" msgstr "Avatarinnstillinger"
#: actions/avatarsettings.php:127 actions/avatarsettings.php:205 #: actions/avatarsettings.php:127 actions/avatarsettings.php:205
#: actions/grouplogo.php:199 actions/grouplogo.php:259 #: actions/grouplogo.php:199 actions/grouplogo.php:259
@ -748,7 +746,7 @@ msgid "Preview"
msgstr "Forhåndsvis" msgstr "Forhåndsvis"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Slett" msgstr "Slett"
@ -774,12 +772,11 @@ msgstr "Brukerbildet har blitt oppdatert."
#: actions/avatarsettings.php:369 #: actions/avatarsettings.php:369
msgid "Failed updating avatar." msgid "Failed updating avatar."
msgstr "" msgstr "Oppdatering av avatar mislyktes."
#: actions/avatarsettings.php:393 #: actions/avatarsettings.php:393
#, fuzzy
msgid "Avatar deleted." msgid "Avatar deleted."
msgstr "Brukerbildet har blitt oppdatert." msgstr "Avatar slettet."
#: actions/block.php:69 #: actions/block.php:69
msgid "You already blocked that user." msgid "You already blocked that user."
@ -858,11 +855,11 @@ msgstr ""
#: actions/bookmarklet.php:50 #: actions/bookmarklet.php:50
msgid "Post to " msgid "Post to "
msgstr "" msgstr "Post til "
#: actions/confirmaddress.php:75 #: actions/confirmaddress.php:75
msgid "No confirmation code." msgid "No confirmation code."
msgstr "" msgstr "Ingen bekreftelseskode."
#: actions/confirmaddress.php:80 #: actions/confirmaddress.php:80
msgid "Confirmation code not found." msgid "Confirmation code not found."
@ -879,7 +876,7 @@ msgstr ""
#: actions/confirmaddress.php:94 #: actions/confirmaddress.php:94
msgid "That address has already been confirmed." msgid "That address has already been confirmed."
msgstr "" msgstr "Den adressen har allerede blitt bekreftet."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
@ -892,7 +889,7 @@ msgstr "Klarte ikke å oppdatere bruker."
#: actions/confirmaddress.php:126 actions/emailsettings.php:391 #: actions/confirmaddress.php:126 actions/emailsettings.php:391
#: actions/imsettings.php:363 actions/smssettings.php:382 #: actions/imsettings.php:363 actions/smssettings.php:382
msgid "Couldn't delete email confirmation." msgid "Couldn't delete email confirmation."
msgstr "" msgstr "Kunne ikke slette e-postbekreftelse."
#: actions/confirmaddress.php:144 #: actions/confirmaddress.php:144
msgid "Confirm address" msgid "Confirm address"
@ -901,7 +898,7 @@ msgstr "Bekreft adresse"
#: actions/confirmaddress.php:159 #: actions/confirmaddress.php:159
#, php-format #, php-format
msgid "The address \"%s\" has been confirmed for your account." msgid "The address \"%s\" has been confirmed for your account."
msgstr "" msgstr "Adressen «%s» har blitt bekreftet for din konto."
#: actions/conversation.php:99 #: actions/conversation.php:99
msgid "Conversation" msgid "Conversation"
@ -913,31 +910,27 @@ 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 "Gjør brukeren til en administrator for gruppen" msgstr "Du må være innlogget for å slette et program."
#: actions/deleteapplication.php:71 #: actions/deleteapplication.php:71
#, fuzzy
msgid "Application not found." msgid "Application not found."
msgstr "Fant ikke bekreftelseskode." msgstr "Program ikke funnet."
#: actions/deleteapplication.php:78 actions/editapplication.php:77 #: actions/deleteapplication.php:78 actions/editapplication.php:77
#: actions/showapplication.php:94 #: actions/showapplication.php:94
#, fuzzy
msgid "You are not the owner of this application." msgid "You are not the owner of this application."
msgstr "Du er allerede logget inn!" msgstr "Du er ikke eieren av dette programmet."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." 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 "Ingen slik side" msgstr "Slett program"
#: actions/deleteapplication.php:149 #: actions/deleteapplication.php:149
msgid "" msgid ""
@ -945,21 +938,22 @@ msgid ""
"about the application from the database, including all existing user " "about the application from the database, including all existing user "
"connections." "connections."
msgstr "" msgstr ""
"Er du sikker på at du vil slette dette programmet? Dette vil slette alle "
"data om programmet fra databasen, inkludert alle eksisterende "
"brukertilkoblinger."
#: actions/deleteapplication.php:156 #: actions/deleteapplication.php:156
#, fuzzy
msgid "Do not delete this application" msgid "Do not delete this application"
msgstr "Kan ikke slette notisen." msgstr "Ikke slett dette programmet"
#: actions/deleteapplication.php:160 #: actions/deleteapplication.php:160
#, fuzzy
msgid "Delete this application" msgid "Delete this application"
msgstr "Beskriv degselv og dine interesser med 140 tegn" msgstr "Slett dette programmet"
#: 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -975,6 +969,8 @@ msgid ""
"You are about to permanently delete a notice. Once this is done, it cannot " "You are about to permanently delete a notice. Once this is done, it cannot "
"be undone." "be undone."
msgstr "" msgstr ""
"Du er i ferd med å slette en notis permanent. Når dette er gjort kan det "
"ikke gjøres om."
#: actions/deletenotice.php:109 actions/deletenotice.php:141 #: actions/deletenotice.php:109 actions/deletenotice.php:141
msgid "Delete notice" msgid "Delete notice"
@ -988,7 +984,7 @@ msgstr "Er du sikker på at du vil slette denne notisen?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Ikke slett denne notisen" msgstr "Ikke slett denne notisen"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Slett denne notisen" msgstr "Slett denne notisen"
@ -1009,6 +1005,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 ""
"Er du sikker på at du vil slette denne brukeren? Dette vil slette alle data "
"om brukeren fra databasen, uten sikkerhetskopi."
#: actions/deleteuser.php:148 lib/deleteuserform.php:77 #: actions/deleteuser.php:148 lib/deleteuserform.php:77
msgid "Delete this user" msgid "Delete this user"
@ -1024,9 +1022,8 @@ msgid "Design settings for this StatusNet site."
msgstr "" msgstr ""
#: actions/designadminpanel.php:275 #: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL." msgid "Invalid logo URL."
msgstr "Ugyldig størrelse" msgstr "Ugyldig logo-URL."
#: actions/designadminpanel.php:279 #: actions/designadminpanel.php:279
#, php-format #, php-format
@ -1126,7 +1123,7 @@ msgstr ""
#: actions/disfavor.php:81 #: actions/disfavor.php:81
msgid "This notice is not a favorite!" msgid "This notice is not a favorite!"
msgstr "" msgstr "Denne notisen er ikke en favoritt!"
#: actions/disfavor.php:94 #: actions/disfavor.php:94
msgid "Add to favorites" msgid "Add to favorites"
@ -1135,27 +1132,24 @@ msgstr "Legg til i favoritter"
#: actions/doc.php:158 #: actions/doc.php:158
#, php-format #, php-format
msgid "No such document \"%s\"" msgid "No such document \"%s\""
msgstr "" msgstr "Inget slikt dokument «%s»"
#: actions/editapplication.php:54 #: actions/editapplication.php:54
#, fuzzy
msgid "Edit Application" msgid "Edit Application"
msgstr "Ingen slik side" msgstr "Rediger program"
#: actions/editapplication.php:66 #: actions/editapplication.php:66
#, fuzzy
msgid "You must be logged in to edit an application." msgid "You must be logged in to edit an application."
msgstr "Gjør brukeren til en administrator for gruppen" msgstr "Du må være innlogget for å redigere et program."
#: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166 #: actions/editapplication.php:81 actions/oauthconnectionssettings.php:166
#: actions/showapplication.php:87 #: actions/showapplication.php:87
#, fuzzy
msgid "No such application." msgid "No such application."
msgstr "Ingen slik side" msgstr "Inget slikt program."
#: actions/editapplication.php:161 #: actions/editapplication.php:161
msgid "Use this form to edit your application." msgid "Use this form to edit your application."
msgstr "" msgstr "Bruk dette skjemaet for å redigere programmet ditt."
#: actions/editapplication.php:177 actions/newapplication.php:159 #: actions/editapplication.php:177 actions/newapplication.php:159
msgid "Name is required." msgid "Name is required."
@ -1234,7 +1228,7 @@ msgstr "beskrivelse er for lang (maks %d tegn)"
msgid "Could not update group." msgid "Could not update group."
msgstr "Kunne ikke oppdatere gruppe." msgstr "Kunne ikke oppdatere gruppe."
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Kunne ikke opprette alias." msgstr "Kunne ikke opprette alias."
@ -1243,9 +1237,8 @@ msgid "Options saved."
msgstr "" msgstr ""
#: actions/emailsettings.php:60 #: actions/emailsettings.php:60
#, fuzzy
msgid "Email settings" msgid "Email settings"
msgstr "Innstillinger for e-post" msgstr "E-postinnstillinger"
#: actions/emailsettings.php:71 #: actions/emailsettings.php:71
#, php-format #, php-format
@ -1403,7 +1396,7 @@ msgstr "Det er ikke din e-postadresse."
#: actions/emailsettings.php:432 actions/imsettings.php:408 #: actions/emailsettings.php:432 actions/imsettings.php:408
#: actions/smssettings.php:425 #: actions/smssettings.php:425
msgid "The address was removed." msgid "The address was removed."
msgstr "" msgstr "Adressen ble fjernet."
#: actions/emailsettings.php:446 actions/smssettings.php:518 #: actions/emailsettings.php:446 actions/smssettings.php:518
msgid "No incoming email address." msgid "No incoming email address."
@ -1433,12 +1426,12 @@ msgstr ""
#: actions/favorited.php:65 lib/popularnoticesection.php:91 #: actions/favorited.php:65 lib/popularnoticesection.php:91
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
msgid "Popular notices" msgid "Popular notices"
msgstr "" msgstr "Populære notiser"
#: actions/favorited.php:67 #: actions/favorited.php:67
#, php-format #, php-format
msgid "Popular notices, page %d" msgid "Popular notices, page %d"
msgstr "" msgstr "Populære notiser, side %d"
#: actions/favorited.php:79 #: actions/favorited.php:79
msgid "The most popular notices on the site right now." msgid "The most popular notices on the site right now."
@ -2272,7 +2265,7 @@ msgid "Only "
msgstr "Bare " msgstr "Bare "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -2715,25 +2708,25 @@ msgstr "Språk er for langt (maks 50 tegn)."
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Ugyldig hjemmeside '%s'" msgstr "Ugyldig hjemmeside '%s'"
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
#, fuzzy #, fuzzy
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Klarte ikke å lagre profil." msgstr "Klarte ikke å lagre profil."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Klarte ikke å lagre profil." msgstr "Klarte ikke å lagre profil."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
#, fuzzy #, fuzzy
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Klarte ikke å lagre profil." msgstr "Klarte ikke å lagre profil."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "" msgstr ""
@ -3108,7 +3101,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "" msgstr ""
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "" msgstr ""
@ -3146,7 +3139,7 @@ msgstr ""
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Du er allerede logget inn!" msgstr "Du er allerede logget inn!"
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "Gjentatt" msgstr "Gjentatt"
@ -3830,17 +3823,26 @@ msgstr ""
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "" msgstr ""
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
#, fuzzy #, fuzzy
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Klarte ikke å lagre avatar-informasjonen" msgstr "Klarte ikke å lagre avatar-informasjonen"
#: actions/subscribe.php:55 #: actions/subscribe.php:77
#, fuzzy msgid "This action only accepts POST requests."
msgid "Not a local user." msgstr ""
msgstr "Ugyldig OpenID"
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Ingen slik fil."
#: actions/subscribe.php:117
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "" msgstr ""
@ -3900,7 +3902,7 @@ msgstr ""
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "" msgstr ""
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -3910,17 +3912,17 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, fuzzy, php-format #, fuzzy, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%1$s lytter nå til dine notiser på %2$s." msgstr "%1$s lytter nå til dine notiser på %2$s."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
#, fuzzy #, fuzzy
msgid "Jabber" msgid "Jabber"
msgstr "Ingen Jabber ID." msgstr "Ingen Jabber ID."
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "" msgstr ""
@ -4329,58 +4331,79 @@ msgstr ""
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "" msgstr ""
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "" msgstr ""
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "" msgstr ""
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "" msgstr ""
#: classes/Notice.php:788 #: classes/Notice.php:882
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "" msgstr ""
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr ""
#: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr ""
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr ""
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr ""
#: classes/Subscription.php:157
#, fuzzy
msgid "Not subscribed!"
msgstr "Alle abonnementer"
#: classes/Subscription.php:163
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Klarte ikke å lagre avatar-informasjonen"
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr ""
#: classes/User.php:372
#, php-format #, php-format
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:423
#, fuzzy #, fuzzy
msgid "Could not create group." msgid "Could not create group."
msgstr "Klarte ikke å lagre avatar-informasjonen" msgstr "Klarte ikke å lagre avatar-informasjonen"
#: classes/User_group.php:409 #: classes/User_group.php:452
#, fuzzy #, fuzzy
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Klarte ikke å lagre avatar-informasjonen" msgstr "Klarte ikke å lagre avatar-informasjonen"
@ -4582,27 +4605,39 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "" msgstr ""
#: lib/action.php:1147 #: lib/action.php:1149
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "Tidligere »" msgstr "Tidligere »"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "" msgstr ""
@ -4904,83 +4939,93 @@ msgstr ""
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "" msgstr ""
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
#, fuzzy
msgid "No such user"
msgstr "Ingen slik bruker"
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "" msgstr ""
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "" msgstr ""
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "" msgstr ""
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "" msgstr ""
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "" msgstr ""
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "" msgstr ""
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "" msgstr ""
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "" msgstr ""
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Svar til %s"
#: lib/command.php:709
#, fuzzy #, fuzzy
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "Ikke autorisert." msgstr "Ikke autorisert."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Ikke autorisert." msgstr[0] "Ikke autorisert."
msgstr[1] "Ikke autorisert." msgstr[1] "Ikke autorisert."
#: lib/command.php:690 #: lib/command.php:731
#, fuzzy #, fuzzy
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Svar til %s" msgstr "Svar til %s"
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Svar til %s" msgstr[0] "Svar til %s"
msgstr[1] "Svar til %s" msgstr[1] "Svar til %s"
#: lib/command.php:712 #: lib/command.php:753
#, fuzzy #, fuzzy
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "Du er allerede logget inn!" msgstr "Du er allerede logget inn!"
#: lib/command.php:714 #: lib/command.php:755
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 er allerede logget inn!" msgstr[0] "Du er allerede logget inn!"
msgstr[1] "Du er allerede logget inn!" msgstr[1] "Du er allerede logget inn!"
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -4994,6 +5039,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5021,20 +5067,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Fant ikke bekreftelseskode." msgstr "Fant ikke bekreftelseskode."
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""
@ -5458,7 +5504,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr "fra" msgstr "fra"
@ -5583,50 +5629,50 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "" msgstr ""
#: lib/noticelist.php:572 #: lib/noticelist.php:583
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Opprett" msgstr "Opprett"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:599 #: lib/noticelist.php:611
#, fuzzy #, fuzzy
msgid "Reply" msgid "Reply"
msgstr "svar" msgstr "svar"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Nytt nick" msgstr "Nytt nick"
@ -5659,10 +5705,6 @@ msgstr ""
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "" msgstr ""
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr ""
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "" msgstr ""
@ -5848,36 +5890,6 @@ msgstr "Svar til %s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "" msgstr ""
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr ""
#: lib/subs.php:56
msgid "User has blocked you."
msgstr ""
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr ""
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr ""
#: lib/subs.php:137
#, fuzzy
msgid "Not subscribed!"
msgstr "Alle abonnementer"
#: lib/subs.php:142
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Klarte ikke å lagre avatar-informasjonen"
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr ""
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -5931,68 +5943,68 @@ msgstr "Brukerbilde"
msgid "User actions" msgid "User actions"
msgstr "" msgstr ""
#: lib/userprofile.php:248 #: lib/userprofile.php:251
#, fuzzy #, fuzzy
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Endre profilinnstillingene dine" msgstr "Endre profilinnstillingene dine"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "" msgstr ""
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "" msgstr ""
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "noen få sekunder siden" msgstr "noen få sekunder siden"
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "omtrent ett minutt siden" msgstr "omtrent ett minutt siden"
#: lib/util.php:874 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "omtrent %d minutter siden" msgstr "omtrent %d minutter siden"
#: lib/util.php:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "omtrent én time siden" msgstr "omtrent én time siden"
#: lib/util.php:878 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "omtrent %d timer siden" msgstr "omtrent %d timer siden"
#: lib/util.php:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "omtrent én dag siden" msgstr "omtrent én dag siden"
#: lib/util.php:882 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "omtrent %d dager siden" msgstr "omtrent %d dager siden"
#: lib/util.php:884 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "omtrent én måned siden" msgstr "omtrent én måned siden"
#: lib/util.php:886 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "omtrent %d måneder siden" msgstr "omtrent %d måneder siden"
#: lib/util.php:888 #: lib/util.php:970
msgid "about a year ago" msgid "about a year ago"
msgstr "omtrent ett år siden" msgstr "omtrent ett år siden"

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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:15:32+0000\n" "PO-Revision-Date: 2010-02-24 23:51:28+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -62,7 +62,7 @@ msgstr "Nieuwe registraties uitschakelen."
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -100,7 +100,6 @@ msgstr "Deze pagina bestaat niet"
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Onbekende gebruiker." msgstr "Onbekende gebruiker."
@ -171,8 +170,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "U en vrienden" msgstr "U en vrienden"
#: 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 "Updates van %1$s en vrienden op %2$s." msgstr "Updates van %1$s en vrienden op %2$s."
@ -193,12 +192,12 @@ msgstr "Updates van %1$s en vrienden op %2$s."
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 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."
@ -506,7 +505,7 @@ msgstr "Ongeldig token."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -656,7 +655,7 @@ msgstr "Niet-ondersteund bestandsformaat."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%1$s / Favorieten van %2$s" msgstr "%1$s / Favorieten van %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 updates op de favorietenlijst geplaatst door %2$s / %3$s" msgstr "%1$s updates op de favorietenlijst geplaatst door %2$s / %3$s"
@ -667,7 +666,7 @@ msgstr "%1$s updates op de favorietenlijst geplaatst door %2$s / %3$s"
msgid "%s timeline" msgid "%s timeline"
msgstr "%s tijdlijn" msgstr "%s tijdlijn"
#: 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!"
@ -683,12 +682,12 @@ msgstr "%1$s / Updates over %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 updates die een reactie zijn op updates van %2$s / %3$s." msgstr "%1$s updates die een reactie zijn op updates van %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 publieke tijdlijn" msgstr "%s publieke tijdlijn"
#: 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 updates van iedereen" msgstr "%s updates van iedereen"
@ -698,7 +697,7 @@ msgstr "%s updates van iedereen"
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "Herhaald naar %s" msgstr "Herhaald naar %s"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, php-format #, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "Herhaald van %s" msgstr "Herhaald van %s"
@ -708,7 +707,7 @@ msgstr "Herhaald van %s"
msgid "Notices tagged with %s" msgid "Notices tagged with %s"
msgstr "Mededelingen met het label %s" msgstr "Mededelingen met het label %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 "Updates met het label %1$s op %2$s!" msgstr "Updates met het label %1$s op %2$s!"
@ -770,7 +769,7 @@ msgid "Preview"
msgstr "Voorvertoning" msgstr "Voorvertoning"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Verwijderen" msgstr "Verwijderen"
@ -952,7 +951,7 @@ msgstr "U bent niet de eigenaar van deze applicatie."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." 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."
@ -981,7 +980,7 @@ 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -1012,7 +1011,7 @@ msgstr "Weet u zeker dat u deze aankondiging wilt verwijderen?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Deze mededeling niet verwijderen" msgstr "Deze mededeling niet verwijderen"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Deze mededeling verwijderen" msgstr "Deze mededeling verwijderen"
@ -1254,7 +1253,7 @@ msgstr "de beschrijving is te lang (maximaal %d tekens)"
msgid "Could not update group." msgid "Could not update group."
msgstr "Het was niet mogelijk de groep bij te werken." msgstr "Het was niet mogelijk de groep bij te werken."
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Het was niet mogelijk de aliassen aan te maken." msgstr "Het was niet mogelijk de aliassen aan te maken."
@ -2355,7 +2354,7 @@ msgid "Only "
msgstr "Alleen " msgstr "Alleen "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Geen ondersteund gegevensformaat." msgstr "Geen ondersteund gegevensformaat."
@ -2798,25 +2797,25 @@ msgstr "Taal is te lang (max 50 tekens)."
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Ongeldig label: '%s'" msgstr "Ongeldig label: '%s'"
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
"Het was niet mogelijk de instelling voor automatisch abonneren voor de " "Het was niet mogelijk de instelling voor automatisch abonneren voor de "
"gebruiker bij te werken." "gebruiker bij te werken."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Het was niet mogelijk de locatievoorkeuren op te slaan." msgstr "Het was niet mogelijk de locatievoorkeuren op te slaan."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Het profiel kon niet opgeslagen worden." msgstr "Het profiel kon niet opgeslagen worden."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Het was niet mogelijk de labels op te slaan." msgstr "Het was niet mogelijk de labels op te slaan."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "De instellingen zijn opgeslagen." msgstr "De instellingen zijn opgeslagen."
@ -3217,7 +3216,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "De URL van uw profiel bij een andere, compatibele microblogdienst" msgstr "De URL van uw profiel bij een andere, compatibele microblogdienst"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Abonneren" msgstr "Abonneren"
@ -3255,7 +3254,7 @@ msgstr "U kunt uw eigen mededeling niet herhalen."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "U hent die mededeling al herhaald." msgstr "U hent die mededeling al herhaald."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "Herhaald" msgstr "Herhaald"
@ -3975,15 +3974,26 @@ msgstr "Er is geen code ingevoerd"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "U bent niet geabonneerd op dat profiel." msgstr "U bent niet geabonneerd op dat profiel."
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Het was niet mogelijk het abonnement op te slaan." msgstr "Het was niet mogelijk het abonnement op te slaan."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "Dit is geen lokale gebruiker." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Het bestand bestaat niet."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "U bent niet geabonneerd op dat profiel."
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "Geabonneerd" msgstr "Geabonneerd"
@ -4047,7 +4057,7 @@ msgstr "Dit zijn de gebruikers van wie u de mededelingen volgt."
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "Dit zijn de gebruikers waarvan %s de mededelingen volgt." msgstr "Dit zijn de gebruikers waarvan %s de mededelingen volgt."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4063,16 +4073,16 @@ msgstr ""
"action.twittersettings%%), kunt u automatisch abonneren op de gebruikers die " "action.twittersettings%%), kunt u automatisch abonneren op de gebruikers die "
"u daar al volgt." "u daar al volgt."
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%s volgt niemand." msgstr "%s volgt niemand."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber" msgstr "Jabber"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS" msgstr "SMS"
@ -4503,26 +4513,26 @@ msgstr "Het was niet mogelijk het bericht bij te werken met de nieuwe URI."
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "Er is een databasefout opgetreden bij de invoer van de hashtag: %s" msgstr "Er is een databasefout opgetreden bij de invoer van de hashtag: %s"
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "" msgstr ""
"Er is een probleem opgetreden bij het opslaan van de mededeling. Deze is te " "Er is een probleem opgetreden bij het opslaan van de mededeling. Deze is te "
"lang." "lang."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "" msgstr ""
"Er was een probleem bij het opslaan van de mededeling. De gebruiker is " "Er was een probleem bij het opslaan van de mededeling. De gebruiker is "
"onbekend." "onbekend."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"U hebt te snel te veel mededelingen verstuurd. Kom even op adem en probeer " "U hebt te snel te veel mededelingen verstuurd. Kom even op adem en probeer "
"het over enige tijd weer." "het over enige tijd weer."
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
@ -4530,42 +4540,60 @@ msgstr ""
"Te veel duplicaatberichten te snel achter elkaar. Neem een adempauze en " "Te veel duplicaatberichten te snel achter elkaar. Neem een adempauze en "
"plaats over een aantal minuten pas weer een bericht." "plaats over een aantal minuten pas weer een bericht."
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
"U bent geblokkeerd en mag geen mededelingen meer achterlaten op deze site." "U bent geblokkeerd en mag geen mededelingen meer achterlaten op deze site."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling." msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling."
#: classes/Notice.php:788 #: classes/Notice.php:882
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "" msgstr ""
"Er is een probleem opgetreden bij het opslaan van het Postvak IN van de " "Er is een probleem opgetreden bij het opslaan van het Postvak IN van de "
"groep." "groep."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr ""
"Er is een databasefout opgetreden bij het invoegen van het antwoord: %s"
#: 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"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr "U mag zich niet abonneren."
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr "U bent al gebonneerd!"
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "Deze gebruiker negeert u."
#: classes/Subscription.php:157
msgid "Not subscribed!"
msgstr "Niet geabonneerd!"
#: classes/Subscription.php:163
msgid "Couldn't delete self-subscription."
msgstr "Het was niet mogelijk het abonnement op uzelf te verwijderen."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Kon abonnement niet verwijderen."
#: classes/User.php:372
#, php-format #, php-format
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "Welkom bij %1$s, @%2$s!" msgstr "Welkom bij %1$s, @%2$s!"
#: classes/User_group.php:380 #: classes/User_group.php:423
msgid "Could not create group." msgid "Could not create group."
msgstr "Het was niet mogelijk de groep aan te maken." msgstr "Het was niet mogelijk de groep aan te maken."
#: classes/User_group.php:409 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Het was niet mogelijk het groepslidmaatschap in te stellen." msgstr "Het was niet mogelijk het groepslidmaatschap in te stellen."
@ -4770,26 +4798,38 @@ msgstr ""
"Auteursrechten op inhoud en gegevens rusten bij de respectievelijke " "Auteursrechten op inhoud en gegevens rusten bij de respectievelijke "
"gebruikers. Alle rechten voorbehouden." "gebruikers. Alle rechten voorbehouden."
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "Alle " msgstr "Alle "
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "licentie." msgstr "licentie."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "Paginering" msgstr "Paginering"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "Later" msgstr "Later"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "Eerder" msgstr "Eerder"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "U mag geen wijzigingen maken aan deze website." msgstr "U mag geen wijzigingen maken aan deze website."
@ -5091,83 +5131,93 @@ msgstr "Er is een fout opgetreden bij het opslaan van de mededeling."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "Geef de naam op van de gebruiker waarop u wilt abonneren" msgstr "Geef de naam op van de gebruiker waarop u wilt abonneren"
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "De opgegeven gebruiker bestaat niet"
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "Geabonneerd op %s" msgstr "Geabonneerd op %s"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "" msgstr ""
"Geef de naam op van de gebruiker waarvoor u het abonnement wilt opzeggen" "Geef de naam op van de gebruiker waarvoor u het abonnement wilt opzeggen"
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "Uw abonnement op %s is opgezegd" msgstr "Uw abonnement op %s is opgezegd"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "Dit commando is nog niet geïmplementeerd." msgstr "Dit commando is nog niet geïmplementeerd."
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "Notificaties uitgeschakeld." msgstr "Notificaties uitgeschakeld."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "Het is niet mogelijk de mededelingen uit te schakelen." msgstr "Het is niet mogelijk de mededelingen uit te schakelen."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "Notificaties ingeschakeld." msgstr "Notificaties ingeschakeld."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "Het is niet mogelijk de notificatie uit te schakelen." msgstr "Het is niet mogelijk de notificatie uit te schakelen."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "Het aanmeldcommando is uitgeschakeld" msgstr "Het aanmeldcommando is uitgeschakeld"
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
"Deze verwijzing kan slechts één keer gebruikt worden en is twee minuten " "Deze verwijzing kan slechts één keer gebruikt worden en is twee minuten "
"geldig: %s" "geldig: %s"
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Uw abonnement op %s is opgezegd"
#: lib/command.php:709
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "U bent op geen enkele gebruiker geabonneerd." msgstr "U bent op geen enkele gebruiker geabonneerd."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "U bent geabonneerd op deze gebruiker:" msgstr[0] "U bent geabonneerd op deze gebruiker:"
msgstr[1] "U bent geabonneerd op deze gebruikers:" msgstr[1] "U bent geabonneerd op deze gebruikers:"
#: lib/command.php:690 #: lib/command.php:731
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Niemand heeft een abonnenment op u." msgstr "Niemand heeft een abonnenment op u."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Deze gebruiker is op u geabonneerd:" msgstr[0] "Deze gebruiker is op u geabonneerd:"
msgstr[1] "Deze gebruikers zijn op u geabonneerd:" msgstr[1] "Deze gebruikers zijn op u geabonneerd:"
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "U bent lid van geen enkele groep." msgstr "U bent lid van geen enkele groep."
#: lib/command.php:714 #: lib/command.php:755
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] "U bent lid van deze groep:" msgstr[0] "U bent lid van deze groep:"
msgstr[1] "U bent lid van deze groepen:" msgstr[1] "U bent lid van deze groepen:"
#: lib/command.php:728 #: lib/command.php:769
#, fuzzy
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5181,6 +5231,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5247,20 +5298,20 @@ msgstr ""
"tracks - nog niet beschikbaar\n" "tracks - nog niet beschikbaar\n"
"tracking - nog niet beschikbaar\n" "tracking - nog niet beschikbaar\n"
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Er is geen instellingenbestand aangetroffen. " msgstr "Er is geen instellingenbestand aangetroffen. "
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "Er is gezocht naar instellingenbestanden op de volgende plaatsen: " msgstr "Er is gezocht naar instellingenbestanden op de volgende plaatsen: "
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
"U kunt proberen de installer uit te voeren om dit probleem op te lossen." "U kunt proberen de installer uit te voeren om dit probleem op te lossen."
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Naar het installatieprogramma gaan." msgstr "Naar het installatieprogramma gaan."
@ -5757,7 +5808,7 @@ msgstr ""
"U hebt geen privéberichten. U kunt privéberichten verzenden aan andere " "U hebt geen privéberichten. U kunt privéberichten verzenden aan andere "
"gebruikers. Mensen kunnen u privéberichten sturen die alleen u kunt lezen." "gebruikers. Mensen kunnen u privéberichten sturen die alleen u kunt lezen."
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "van" msgstr "van"
@ -5885,48 +5936,48 @@ msgstr ""
"Het ophalen van uw geolocatie duurt langer dan verwacht. Probeer het later " "Het ophalen van uw geolocatie duurt langer dan verwacht. Probeer het later "
"nog eens" "nog eens"
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "N" msgstr "N"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "Z" msgstr "Z"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "O" msgstr "O"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "W" msgstr "W"
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "op" msgstr "op"
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "in context" msgstr "in context"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "Herhaald door" msgstr "Herhaald door"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Op deze mededeling antwoorden" msgstr "Op deze mededeling antwoorden"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "Antwoorden" msgstr "Antwoorden"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Mededeling herhaald" msgstr "Mededeling herhaald"
@ -5959,10 +6010,6 @@ msgstr ""
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Duplicaatmelding" msgstr "Duplicaatmelding"
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr "U mag zich niet abonneren."
#: lib/oauthstore.php:490 #: 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."
@ -6139,34 +6186,6 @@ msgstr "Gebruikers met een abonnement op %s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "Groepen waar %s lid van is" msgstr "Groepen waar %s lid van is"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr "U bent al gebonneerd!"
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "Deze gebruiker negeert u."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "Kan niet abonneren "
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "Het was niet mogelijk om een ander op u te laten abonneren"
#: lib/subs.php:137
msgid "Not subscribed!"
msgstr "Niet geabonneerd!"
#: lib/subs.php:142
msgid "Couldn't delete self-subscription."
msgstr "Het was niet mogelijk het abonnement op uzelf te verwijderen."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Kon abonnement niet verwijderen."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6217,67 +6236,67 @@ msgstr "Avatar bewerken"
msgid "User actions" msgid "User actions"
msgstr "Gebruikershandelingen" msgstr "Gebruikershandelingen"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Profielinstellingen bewerken" msgstr "Profielinstellingen bewerken"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "Bewerken" msgstr "Bewerken"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Deze gebruiker een direct bericht zenden" msgstr "Deze gebruiker een direct bericht zenden"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Bericht" msgstr "Bericht"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "Modereren" msgstr "Modereren"
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "een paar seconden geleden" msgstr "een paar seconden geleden"
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "ongeveer een minuut geleden" msgstr "ongeveer een minuut geleden"
#: lib/util.php:874 #: lib/util.php:956
#, 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:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "ongeveer een uur geleden" msgstr "ongeveer een uur geleden"
#: lib/util.php:878 #: lib/util.php:960
#, 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:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "ongeveer een dag geleden" msgstr "ongeveer een dag geleden"
#: lib/util.php:882 #: lib/util.php:964
#, 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:884 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "ongeveer een maand geleden" msgstr "ongeveer een maand geleden"
#: lib/util.php:886 #: lib/util.php:968
#, 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:888 #: lib/util.php:970
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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:15:29+0000\n" "PO-Revision-Date: 2010-02-24 23:51:25+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -65,7 +65,7 @@ msgstr ""
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -105,7 +105,6 @@ msgstr "Dette emneord finst ikkje."
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Brukaren finst ikkje." msgstr "Brukaren finst ikkje."
@ -168,8 +167,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "%s med vener" msgstr "%s med vener"
#: 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 "Oppdateringar frå %1$s og vener på %2$s!" msgstr "Oppdateringar frå %1$s og vener på %2$s!"
@ -190,12 +189,12 @@ msgstr "Oppdateringar frå %1$s og vener på %2$s!"
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 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."
@ -507,7 +506,7 @@ msgstr "Ugyldig storleik."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -652,7 +651,7 @@ msgstr "Støttar ikkje bileteformatet."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%s / Favorittar frå %s" msgstr "%s / Favorittar frå %s"
#: actions/apitimelinefavorites.php:120 #: actions/apitimelinefavorites.php:117
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s updates favorited by %2$s / %2$s." msgid "%1$s updates favorited by %2$s / %2$s."
msgstr "%s oppdateringar favorisert av %s / %s." msgstr "%s oppdateringar favorisert av %s / %s."
@ -663,7 +662,7 @@ msgstr "%s oppdateringar favorisert av %s / %s."
msgid "%s timeline" msgid "%s timeline"
msgstr "%s tidsline" msgstr "%s tidsline"
#: 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!"
@ -679,12 +678,12 @@ msgstr "%1$s / Oppdateringar som svarar til %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 oppdateringar som svarar på oppdateringar frå %2$s / %3$s." msgstr "%1$s oppdateringar som svarar på oppdateringar frå %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 offentleg tidsline" msgstr "%s offentleg tidsline"
#: 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 oppdateringar frå alle saman!" msgstr "%s oppdateringar frå alle saman!"
@ -694,7 +693,7 @@ msgstr "%s oppdateringar frå alle saman!"
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "Svar til %s" msgstr "Svar til %s"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, fuzzy, php-format #, fuzzy, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "Svar til %s" msgstr "Svar til %s"
@ -704,7 +703,7 @@ msgstr "Svar til %s"
msgid "Notices tagged with %s" msgid "Notices tagged with %s"
msgstr "Notisar merka med %s" msgstr "Notisar merka med %s"
#: actions/apitimelinetag.php:108 actions/tagrss.php:64 #: actions/apitimelinetag.php:104 actions/tagrss.php:64
#, fuzzy, php-format #, fuzzy, php-format
msgid "Updates tagged with %1$s on %2$s!" msgid "Updates tagged with %1$s on %2$s!"
msgstr "Oppdateringar frå %1$s på %2$s!" msgstr "Oppdateringar frå %1$s på %2$s!"
@ -766,7 +765,7 @@ msgid "Preview"
msgstr "Forhandsvis" msgstr "Forhandsvis"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Slett" msgstr "Slett"
@ -955,7 +954,7 @@ msgstr "Du er ikkje medlem av den gruppa."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Det var eit problem med sesjons billetten din." msgstr "Det var eit problem med sesjons billetten din."
@ -984,7 +983,7 @@ msgstr "Slett denne notisen"
#: 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -1017,7 +1016,7 @@ msgstr "Sikker på at du vil sletta notisen?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Kan ikkje sletta notisen." msgstr "Kan ikkje sletta notisen."
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Slett denne notisen" msgstr "Slett denne notisen"
@ -1280,7 +1279,7 @@ msgstr "skildringa er for lang (maks 140 teikn)."
msgid "Could not update group." msgid "Could not update group."
msgstr "Kann ikkje oppdatera gruppa." msgstr "Kann ikkje oppdatera gruppa."
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:433
#, fuzzy #, fuzzy
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Kunne ikkje lagre favoritt." msgstr "Kunne ikkje lagre favoritt."
@ -2371,7 +2370,7 @@ msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Ikkje eit støtta dataformat." msgstr "Ikkje eit støtta dataformat."
@ -2831,24 +2830,24 @@ msgstr "Språk er for langt (maksimalt 50 teikn)."
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Ugyldig merkelapp: %s" msgstr "Ugyldig merkelapp: %s"
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Kan ikkje oppdatera brukar for automatisk tinging." msgstr "Kan ikkje oppdatera brukar for automatisk tinging."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
#, fuzzy #, fuzzy
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Kan ikkje lagra merkelapp." msgstr "Kan ikkje lagra merkelapp."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Kan ikkje lagra profil." msgstr "Kan ikkje lagra profil."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Kan ikkje lagra merkelapp." msgstr "Kan ikkje lagra merkelapp."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Lagra innstillingar." msgstr "Lagra innstillingar."
@ -3235,7 +3234,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "URL til profilsida di på ei anna kompatibel mikrobloggingteneste." msgstr "URL til profilsida di på ei anna kompatibel mikrobloggingteneste."
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Ting" msgstr "Ting"
@ -3278,7 +3277,7 @@ msgstr "Du kan ikkje registrera deg om du ikkje godtek vilkåra i lisensen."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Du har allereie blokkert denne brukaren." msgstr "Du har allereie blokkert denne brukaren."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Lag" msgstr "Lag"
@ -3977,15 +3976,26 @@ msgstr "Ingen innskriven kode"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "Du tingar ikkje oppdateringar til den profilen." msgstr "Du tingar ikkje oppdateringar til den profilen."
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Kunne ikkje lagra abonnement." msgstr "Kunne ikkje lagra abonnement."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "Ikkje ein lokal brukar." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Denne notisen finst ikkje."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Du tingar ikkje oppdateringar til den profilen."
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "Abonnent" msgstr "Abonnent"
@ -4045,7 +4055,7 @@ msgstr "Dette er dei du lyttar til."
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "Dette er folka som %s tingar oppdateringar frå." msgstr "Dette er folka som %s tingar oppdateringar frå."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4055,16 +4065,16 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, fuzzy, php-format #, fuzzy, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%1$s høyrer no på" msgstr "%1$s høyrer no på"
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber" msgstr "Jabber"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS" msgstr "SMS"
@ -4493,22 +4503,22 @@ msgstr "Kunne ikkje oppdatere melding med ny URI."
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s" msgstr "databasefeil ved innsetjing av skigardmerkelapp (#merkelapp): %s"
#: classes/Notice.php:214 #: classes/Notice.php:222
#, fuzzy #, fuzzy
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "Eit problem oppstod ved lagring av notis." msgstr "Eit problem oppstod ved lagring av notis."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Feil ved lagring av notis. Ukjend brukar." msgstr "Feil ved lagring av notis. Ukjend brukar."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." "For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt."
#: classes/Notice.php:229 #: classes/Notice.php:237
#, fuzzy #, fuzzy
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
@ -4516,39 +4526,61 @@ msgid ""
msgstr "" msgstr ""
"For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." "For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt."
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Du kan ikkje lengre legge inn notisar på denne sida." msgstr "Du kan ikkje lengre legge inn notisar på denne sida."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Eit problem oppstod ved lagring av notis." msgstr "Eit problem oppstod ved lagring av notis."
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy #, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Eit problem oppstod ved lagring av notis." msgstr "Eit problem oppstod ved lagring av notis."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Databasefeil, kan ikkje lagra svar: %s"
#: 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)"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
#, fuzzy
msgid "You have been banned from subscribing."
msgstr "Brukaren tillet deg ikkje å tinga meldingane sine."
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr ""
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "Brukar har blokkert deg."
#: classes/Subscription.php:157
#, fuzzy
msgid "Not subscribed!"
msgstr "Ikkje tinga."
#: classes/Subscription.php:163
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Kan ikkje sletta tinging."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Kan ikkje sletta tinging."
#: classes/User.php:372
#, fuzzy, php-format #, fuzzy, php-format
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "Melding til %1$s på %2$s" msgstr "Melding til %1$s på %2$s"
#: classes/User_group.php:380 #: classes/User_group.php:423
msgid "Could not create group." msgid "Could not create group."
msgstr "Kunne ikkje laga gruppa." msgstr "Kunne ikkje laga gruppa."
#: classes/User_group.php:409 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Kunne ikkje bli med i gruppa." msgstr "Kunne ikkje bli med i gruppa."
@ -4754,26 +4786,38 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "Alle" msgstr "Alle"
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "lisens." msgstr "lisens."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "Paginering" msgstr "Paginering"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "« Etter" msgstr "« Etter"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "Før »" msgstr "Før »"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
#, fuzzy #, fuzzy
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
@ -5088,83 +5132,92 @@ msgstr "Eit problem oppstod ved lagring av notis."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "Spesifer namnet til brukaren du vil tinge" msgstr "Spesifer namnet til brukaren du vil tinge"
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "Brukaren finst ikkje."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "Tingar %s" msgstr "Tingar %s"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "Spesifer namnet til brukar du vil fjerne tinging på" msgstr "Spesifer namnet til brukar du vil fjerne tinging på"
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "Tingar ikkje %s lengre" msgstr "Tingar ikkje %s lengre"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "Kommando ikkje implementert." msgstr "Kommando ikkje implementert."
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "Notifikasjon av." msgstr "Notifikasjon av."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "Kan ikkje skru av notifikasjon." msgstr "Kan ikkje skru av notifikasjon."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "Notifikasjon på." msgstr "Notifikasjon på."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "Kan ikkje slå på notifikasjon." msgstr "Kan ikkje slå på notifikasjon."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Tingar ikkje %s lengre"
#: lib/command.php:709
#, fuzzy #, fuzzy
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "Du tingar ikkje oppdateringar til den profilen." msgstr "Du tingar ikkje oppdateringar til den profilen."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Du tingar allereie oppdatering frå desse brukarane:" msgstr[0] "Du tingar allereie oppdatering frå desse brukarane:"
msgstr[1] "Du tingar allereie oppdatering frå desse brukarane:" msgstr[1] "Du tingar allereie oppdatering frå desse brukarane:"
#: lib/command.php:690 #: lib/command.php:731
#, fuzzy #, fuzzy
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Kan ikkje tinga andre til deg." msgstr "Kan ikkje tinga andre til deg."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Kan ikkje tinga andre til deg." msgstr[0] "Kan ikkje tinga andre til deg."
msgstr[1] "Kan ikkje tinga andre til deg." msgstr[1] "Kan ikkje tinga andre til deg."
#: lib/command.php:712 #: lib/command.php:753
#, fuzzy #, fuzzy
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "Du er ikkje medlem av den gruppa." msgstr "Du er ikkje medlem av den gruppa."
#: lib/command.php:714 #: lib/command.php:755
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 er ikkje medlem av den gruppa." msgstr[0] "Du er ikkje medlem av den gruppa."
msgstr[1] "Du er ikkje medlem av den gruppa." msgstr[1] "Du er ikkje medlem av den gruppa."
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5178,6 +5231,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5205,20 +5259,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Ingen stadfestingskode." msgstr "Ingen stadfestingskode."
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Logg inn or sida" msgstr "Logg inn or sida"
@ -5646,7 +5700,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr " frå " msgstr " frå "
@ -5770,51 +5824,51 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "Nei" msgstr "Nei"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:547 #: lib/noticelist.php:558
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "Ingen innhald." msgstr "Ingen innhald."
#: lib/noticelist.php:572 #: lib/noticelist.php:583
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Lag" msgstr "Lag"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Svar på denne notisen" msgstr "Svar på denne notisen"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "Svar" msgstr "Svar"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Melding lagra" msgstr "Melding lagra"
@ -5848,11 +5902,6 @@ msgstr "Feil med å henta inn ekstern profil"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Slett notis" msgstr "Slett notis"
#: lib/oauthstore.php:465 lib/subs.php:48
#, fuzzy
msgid "You have been banned from subscribing."
msgstr "Brukaren tillet deg ikkje å tinga meldingane sine."
#: lib/oauthstore.php:490 #: 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."
@ -6040,36 +6089,6 @@ msgstr "Mennesker som tingar %s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "Grupper %s er medlem av" msgstr "Grupper %s er medlem av"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr ""
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "Brukar har blokkert deg."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "Kan ikkje tinga."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "Kan ikkje tinga andre til deg."
#: lib/subs.php:137
#, fuzzy
msgid "Not subscribed!"
msgstr "Ikkje tinga."
#: lib/subs.php:142
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Kan ikkje sletta tinging."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Kan ikkje sletta tinging."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6123,68 +6142,68 @@ msgstr "Brukarbilete"
msgid "User actions" msgid "User actions"
msgstr "Brukarverkty" msgstr "Brukarverkty"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
#, fuzzy #, fuzzy
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Profilinnstillingar" msgstr "Profilinnstillingar"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Send ei direktemelding til denne brukaren" msgstr "Send ei direktemelding til denne brukaren"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Melding" msgstr "Melding"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "eit par sekund sidan" msgstr "eit par sekund sidan"
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "omtrent eitt minutt sidan" msgstr "omtrent eitt minutt sidan"
#: lib/util.php:874 #: lib/util.php:956
#, 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:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "omtrent ein time sidan" msgstr "omtrent ein time sidan"
#: lib/util.php:878 #: lib/util.php:960
#, 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:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "omtrent ein dag sidan" msgstr "omtrent ein dag sidan"
#: lib/util.php:882 #: lib/util.php:964
#, 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:884 #: lib/util.php:966
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:886 #: lib/util.php:968
#, 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:888 #: lib/util.php:970
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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:15:35+0000\n" "PO-Revision-Date: 2010-02-24 23:51:31+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -65,7 +65,7 @@ msgstr "Wyłączenie nowych rejestracji."
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -103,7 +103,6 @@ msgstr "Nie ma takiej strony"
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Brak takiego użytkownika." msgstr "Brak takiego użytkownika."
@ -174,8 +173,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "Ty i przyjaciele" msgstr "Ty i przyjaciele"
#: 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 "Aktualizacje z %1$s i przyjaciół na %2$s." msgstr "Aktualizacje z %1$s i przyjaciół na %2$s."
@ -196,12 +195,12 @@ msgstr "Aktualizacje z %1$s i przyjaciół na %2$s."
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "Nie odnaleziono metody API." msgstr "Nie odnaleziono metody API."
@ -503,7 +502,7 @@ msgstr "Nieprawidłowy token."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -644,7 +643,7 @@ msgstr "Nieobsługiwany format."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%1$s/ulubione wpisy od %2$s" msgstr "%1$s/ulubione wpisy od %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 "Użytkownik %1$s aktualizuje ulubione według %2$s/%2$s." msgstr "Użytkownik %1$s aktualizuje ulubione według %2$s/%2$s."
@ -655,7 +654,7 @@ msgstr "Użytkownik %1$s aktualizuje ulubione według %2$s/%2$s."
msgid "%s timeline" msgid "%s timeline"
msgstr "Oś czasu użytkownika %s" msgstr "Oś czasu użytkownika %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!"
@ -671,12 +670,12 @@ msgstr "%1$s/aktualizacje wspominające %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 aktualizuje tę odpowiedź na aktualizacje od %2$s/%3$s." msgstr "%1$s aktualizuje tę odpowiedź na aktualizacje od %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 "Publiczna oś czasu użytkownika %s" msgstr "Publiczna oś czasu użytkownika %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 "Użytkownik %s aktualizuje od każdego." msgstr "Użytkownik %s aktualizuje od każdego."
@ -686,7 +685,7 @@ msgstr "Użytkownik %s aktualizuje od każdego."
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "Powtórzone dla %s" msgstr "Powtórzone dla %s"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, php-format #, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "Powtórzenia %s" msgstr "Powtórzenia %s"
@ -696,7 +695,7 @@ msgstr "Powtórzenia %s"
msgid "Notices tagged with %s" msgid "Notices tagged with %s"
msgstr "Wpisy ze znacznikiem %s" msgstr "Wpisy ze znacznikiem %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 "Aktualizacje ze znacznikiem %1$s na %2$s." msgstr "Aktualizacje ze znacznikiem %1$s na %2$s."
@ -757,7 +756,7 @@ msgid "Preview"
msgstr "Podgląd" msgstr "Podgląd"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Usuń" msgstr "Usuń"
@ -938,7 +937,7 @@ msgstr "Nie jesteś właścicielem tej aplikacji."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Wystąpił problem z tokenem sesji." msgstr "Wystąpił problem z tokenem sesji."
@ -966,7 +965,7 @@ 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -997,7 +996,7 @@ msgstr "Jesteś pewien, że chcesz usunąć ten wpis?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Nie usuwaj tego wpisu" msgstr "Nie usuwaj tego wpisu"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Usuń ten wpis" msgstr "Usuń ten wpis"
@ -1236,7 +1235,7 @@ msgstr "opis jest za długi (maksymalnie %d znaków)."
msgid "Could not update group." msgid "Could not update group."
msgstr "Nie można zaktualizować grupy." msgstr "Nie można zaktualizować grupy."
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Nie można utworzyć aliasów." msgstr "Nie można utworzyć aliasów."
@ -2315,7 +2314,7 @@ msgid "Only "
msgstr "Tylko " msgstr "Tylko "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
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."
@ -2757,23 +2756,23 @@ msgstr "Język jest za długi (maksymalnie 50 znaków)."
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Nieprawidłowy znacznik: \"%s\"" msgstr "Nieprawidłowy znacznik: \"%s\""
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Nie można zaktualizować użytkownika do automatycznej subskrypcji." msgstr "Nie można zaktualizować użytkownika do automatycznej subskrypcji."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Nie można zapisać preferencji położenia." msgstr "Nie można zapisać preferencji położenia."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Nie można zapisać profilu." msgstr "Nie można zapisać profilu."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Nie można zapisać znaczników." msgstr "Nie można zapisać znaczników."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Zapisano ustawienia." msgstr "Zapisano ustawienia."
@ -3169,7 +3168,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "Adres URL profilu na innej, zgodnej usłudze mikroblogowania" msgstr "Adres URL profilu na innej, zgodnej usłudze mikroblogowania"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Subskrybuj" msgstr "Subskrybuj"
@ -3207,7 +3206,7 @@ msgstr "Nie można powtórzyć własnego wpisu."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Już powtórzono ten wpis." msgstr "Już powtórzono ten wpis."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "Powtórzono" msgstr "Powtórzono"
@ -3919,15 +3918,26 @@ msgstr "Nie podano kodu"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "Nie jesteś subskrybowany do tego profilu." msgstr "Nie jesteś subskrybowany do tego profilu."
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Nie można zapisać subskrypcji." msgstr "Nie można zapisać subskrypcji."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "Nie jest lokalnym użytkownikiem." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Nie ma takiego pliku."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Nie jesteś subskrybowany do tego profilu."
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "Subskrybowano" msgstr "Subskrybowano"
@ -3991,7 +4001,7 @@ msgstr "Osoby, których wpisy obserwujesz."
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "Osoby, których wpisy obserwuje użytkownik %s." msgstr "Osoby, których wpisy obserwuje użytkownik %s."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4007,16 +4017,16 @@ msgstr ""
"twittersettings%%), można automatycznie subskrybować osoby, które tam już " "twittersettings%%), można automatycznie subskrybować osoby, które tam już "
"obserwujesz." "obserwujesz."
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "Użytkownik %s nie obserwuje nikogo." msgstr "Użytkownik %s nie obserwuje nikogo."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber" msgstr "Jabber"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS" msgstr "SMS"
@ -4444,22 +4454,22 @@ msgstr "Nie można zaktualizować wiadomości za pomocą nowego adresu URL."
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "Błąd bazy danych podczas wprowadzania znacznika mieszania: %s" msgstr "Błąd bazy danych podczas wprowadzania znacznika mieszania: %s"
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "Problem podczas zapisywania wpisu. Za długi." msgstr "Problem podczas zapisywania wpisu. Za długi."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Problem podczas zapisywania wpisu. Nieznany użytkownik." msgstr "Problem podczas zapisywania wpisu. Nieznany użytkownik."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"Za dużo wpisów w za krótkim czasie, weź głęboki oddech i wyślij ponownie za " "Za dużo wpisów w za krótkim czasie, weź głęboki oddech i wyślij ponownie za "
"kilka minut." "kilka minut."
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
@ -4467,38 +4477,57 @@ msgstr ""
"Za dużo takich samych wiadomości w za krótkim czasie, weź głęboki oddech i " "Za dużo takich samych wiadomości w za krótkim czasie, weź głęboki oddech i "
"wyślij ponownie za kilka minut." "wyślij ponownie za kilka minut."
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Zabroniono ci wysyłania wpisów na tej witrynie." msgstr "Zabroniono ci wysyłania wpisów na tej witrynie."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Problem podczas zapisywania wpisu." msgstr "Problem podczas zapisywania wpisu."
#: classes/Notice.php:788 #: classes/Notice.php:882
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Problem podczas zapisywania skrzynki odbiorczej grupy." msgstr "Problem podczas zapisywania skrzynki odbiorczej grupy."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Błąd bazy danych podczas wprowadzania odpowiedzi: %s"
#: 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"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr "Zablokowano subskrybowanie."
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr "Już subskrybowane."
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "Użytkownik zablokował cię."
#: classes/Subscription.php:157
msgid "Not subscribed!"
msgstr "Niesubskrybowane."
#: classes/Subscription.php:163
msgid "Couldn't delete self-subscription."
msgstr "Nie można usunąć autosubskrypcji."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Nie można usunąć subskrypcji."
#: classes/User.php:372
#, php-format #, php-format
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "Witaj w %1$s, @%2$s." msgstr "Witaj w %1$s, @%2$s."
#: classes/User_group.php:380 #: classes/User_group.php:423
msgid "Could not create group." msgid "Could not create group."
msgstr "Nie można utworzyć grupy." msgstr "Nie można utworzyć grupy."
#: classes/User_group.php:409 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Nie można ustawić członkostwa w grupie." msgstr "Nie można ustawić członkostwa w grupie."
@ -4703,26 +4732,38 @@ msgstr ""
"Prawa autorskie do treści i danych są własnością współtwórców. Wszystkie " "Prawa autorskie do treści i danych są własnością współtwórców. Wszystkie "
"prawa zastrzeżone." "prawa zastrzeżone."
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "Wszystko " msgstr "Wszystko "
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "licencja." msgstr "licencja."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "Paginacja" msgstr "Paginacja"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "Później" msgstr "Później"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "Wcześniej" msgstr "Wcześniej"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "Nie można wprowadzić zmian witryny." msgstr "Nie można wprowadzić zmian witryny."
@ -5021,85 +5062,95 @@ msgstr "Błąd podczas zapisywania wpisu."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "Podaj nazwę użytkownika do subskrybowania." msgstr "Podaj nazwę użytkownika do subskrybowania."
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "Brak takiego użytkownika."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "Subskrybowano użytkownika %s" msgstr "Subskrybowano użytkownika %s"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "Podaj nazwę użytkownika do usunięcia subskrypcji." msgstr "Podaj nazwę użytkownika do usunięcia subskrypcji."
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "Usunięto subskrypcję użytkownika %s" msgstr "Usunięto subskrypcję użytkownika %s"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "Nie zaimplementowano polecenia." msgstr "Nie zaimplementowano polecenia."
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "Wyłączono powiadomienia." msgstr "Wyłączono powiadomienia."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "Nie można wyłączyć powiadomień." msgstr "Nie można wyłączyć powiadomień."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "Włączono powiadomienia." msgstr "Włączono powiadomienia."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "Nie można włączyć powiadomień." msgstr "Nie można włączyć powiadomień."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "Polecenie logowania jest wyłączone" msgstr "Polecenie logowania jest wyłączone"
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
"Tego odnośnika można użyć tylko raz i będzie prawidłowy tylko przez dwie " "Tego odnośnika można użyć tylko raz i będzie prawidłowy tylko przez dwie "
"minuty: %s." "minuty: %s."
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Usunięto subskrypcję użytkownika %s"
#: lib/command.php:709
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "Nie subskrybujesz nikogo." msgstr "Nie subskrybujesz nikogo."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Subskrybujesz tę osobę:" msgstr[0] "Subskrybujesz tę osobę:"
msgstr[1] "Subskrybujesz te osoby:" msgstr[1] "Subskrybujesz te osoby:"
msgstr[2] "Subskrybujesz te osoby:" msgstr[2] "Subskrybujesz te osoby:"
#: lib/command.php:690 #: lib/command.php:731
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Nikt cię nie subskrybuje." msgstr "Nikt cię nie subskrybuje."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Ta osoba cię subskrybuje:" msgstr[0] "Ta osoba cię subskrybuje:"
msgstr[1] "Te osoby cię subskrybują:" msgstr[1] "Te osoby cię subskrybują:"
msgstr[2] "Te osoby cię subskrybują:" msgstr[2] "Te osoby cię subskrybują:"
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "Nie jesteś członkiem żadnej grupy." msgstr "Nie jesteś członkiem żadnej grupy."
#: lib/command.php:714 #: lib/command.php:755
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] "Jesteś członkiem tej grupy:" msgstr[0] "Jesteś członkiem tej grupy:"
msgstr[1] "Jesteś członkiem tych grup:" msgstr[1] "Jesteś członkiem tych grup:"
msgstr[2] "Jesteś członkiem tych grup:" msgstr[2] "Jesteś członkiem tych grup:"
#: lib/command.php:728 #: lib/command.php:769
#, fuzzy
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5113,6 +5164,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5179,19 +5231,19 @@ msgstr ""
"tracks - jeszcze nie zaimplementowano\n" "tracks - jeszcze nie zaimplementowano\n"
"tracking - jeszcze nie zaimplementowano\n" "tracking - jeszcze nie zaimplementowano\n"
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Nie odnaleziono pliku konfiguracji." msgstr "Nie odnaleziono pliku konfiguracji."
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "Szukano plików konfiguracji w następujących miejscach: " msgstr "Szukano plików konfiguracji w następujących miejscach: "
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "Należy uruchomić instalator, aby to naprawić." msgstr "Należy uruchomić instalator, aby to naprawić."
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Przejdź do instalatora." msgstr "Przejdź do instalatora."
@ -5688,7 +5740,7 @@ msgstr ""
"rozmowę z innymi użytkownikami. Inni mogą wysyłać ci wiadomości tylko dla " "rozmowę z innymi użytkownikami. Inni mogą wysyłać ci wiadomości tylko dla "
"twoich oczu." "twoich oczu."
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "z" msgstr "z"
@ -5811,48 +5863,48 @@ msgstr ""
"Pobieranie danych geolokalizacji trwa dłużej niż powinno, proszę spróbować " "Pobieranie danych geolokalizacji trwa dłużej niż powinno, proszę spróbować "
"ponownie później" "ponownie później"
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "Północ" msgstr "Północ"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "Południe" msgstr "Południe"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "Wschód" msgstr "Wschód"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "Zachód" msgstr "Zachód"
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "w" msgstr "w"
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "w rozmowie" msgstr "w rozmowie"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "Powtórzone przez" msgstr "Powtórzone przez"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Odpowiedz na ten wpis" msgstr "Odpowiedz na ten wpis"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "Odpowiedz" msgstr "Odpowiedz"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Powtórzono wpis" msgstr "Powtórzono wpis"
@ -5884,10 +5936,6 @@ msgstr "Błąd podczas wprowadzania zdalnego profilu"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Duplikat wpisu" msgstr "Duplikat wpisu"
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr "Zablokowano subskrybowanie."
#: lib/oauthstore.php:490 #: 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."
@ -6065,34 +6113,6 @@ msgstr "Osoby subskrybowane do %s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "Grupy %s są członkiem" msgstr "Grupy %s są członkiem"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr "Już subskrybowane."
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "Użytkownik zablokował cię."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "Nie można subskrybować."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "Nie można subskrybować innych do ciebie."
#: lib/subs.php:137
msgid "Not subscribed!"
msgstr "Niesubskrybowane."
#: lib/subs.php:142
msgid "Couldn't delete self-subscription."
msgstr "Nie można usunąć autosubskrypcji."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Nie można usunąć subskrypcji."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6143,67 +6163,67 @@ msgstr "Zmodyfikuj awatar"
msgid "User actions" msgid "User actions"
msgstr "Czynności użytkownika" msgstr "Czynności użytkownika"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Zmodyfikuj ustawienia profilu" msgstr "Zmodyfikuj ustawienia profilu"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "Edycja" msgstr "Edycja"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Wyślij bezpośrednią wiadomość do tego użytkownika" msgstr "Wyślij bezpośrednią wiadomość do tego użytkownika"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Wiadomość" msgstr "Wiadomość"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "Moderuj" msgstr "Moderuj"
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "kilka sekund temu" msgstr "kilka sekund temu"
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "około minutę temu" msgstr "około minutę temu"
#: lib/util.php:874 #: lib/util.php:956
#, 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:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "około godzinę temu" msgstr "około godzinę temu"
#: lib/util.php:878 #: lib/util.php:960
#, 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:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "blisko dzień temu" msgstr "blisko dzień temu"
#: lib/util.php:882 #: lib/util.php:964
#, 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:884 #: lib/util.php:966
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:886 #: lib/util.php:968
#, 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:888 #: lib/util.php:970
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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:15:39+0000\n" "PO-Revision-Date: 2010-02-24 23:51:34+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -63,7 +63,7 @@ msgstr "Impossibilitar registos novos."
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -102,7 +102,6 @@ msgstr "Página não encontrada."
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Utilizador não encontrado." msgstr "Utilizador não encontrado."
@ -171,8 +170,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "Você e seus amigos" msgstr "Você e seus 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 "Actualizações de %1$s e amigos no %2$s!" msgstr "Actualizações de %1$s e amigos no %2$s!"
@ -193,12 +192,12 @@ msgstr "Actualizações de %1$s e amigos no %2$s!"
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 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."
@ -500,7 +499,7 @@ msgstr "Tamanho inválido."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -642,7 +641,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 actualizações preferidas por %2$s / %2$s." msgstr "%1$s actualizações preferidas por %2$s / %2$s."
@ -653,7 +652,7 @@ msgstr "%1$s actualizações preferidas por %2$s / %2$s."
msgid "%s timeline" msgid "%s timeline"
msgstr "Notas de %s" msgstr "Notas 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!"
@ -669,12 +668,12 @@ msgstr "%1$s / Actualizações que mencionam %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 actualizações em resposta a actualizações de %2$s / %3$s." msgstr "%1$s actualizações em resposta a actualizações 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 "Notas públicas de %s" msgstr "Notas 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 actualizações de todos!" msgstr "%s actualizações de todos!"
@ -684,7 +683,7 @@ msgstr "%s actualizações de todos!"
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 "Repetências de %s" msgstr "Repetências de %s"
@ -694,7 +693,7 @@ msgstr "Repetências de %s"
msgid "Notices tagged with %s" msgid "Notices tagged with %s"
msgstr "Notas categorizadas com %s" msgstr "Notas categorizadas com %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 "Actualizações categorizadas com %1$s em %2$s!" msgstr "Actualizações categorizadas com %1$s em %2$s!"
@ -755,7 +754,7 @@ msgid "Preview"
msgstr "Antevisão" msgstr "Antevisão"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Apagar" msgstr "Apagar"
@ -940,7 +939,7 @@ msgstr "Não é membro deste grupo."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Ocorreu um problema com a sua sessão." msgstr "Ocorreu um problema com a sua sessão."
@ -972,7 +971,7 @@ msgstr "Apagar esta nota"
#: 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -1003,7 +1002,7 @@ msgstr "Tem a certeza de que quer apagar esta nota?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Não apagar esta nota" msgstr "Não apagar esta nota"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Apagar esta nota" msgstr "Apagar esta nota"
@ -1256,7 +1255,7 @@ msgstr "descrição é demasiada extensa (máx. %d caracteres)."
msgid "Could not update group." msgid "Could not update group."
msgstr "Não foi possível actualizar o grupo." msgstr "Não foi possível actualizar o grupo."
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Não foi possível criar sinónimos." msgstr "Não foi possível criar sinónimos."
@ -2348,7 +2347,7 @@ msgid "Only "
msgstr "Apenas " msgstr "Apenas "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
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."
@ -2795,23 +2794,23 @@ msgstr "Idioma é demasiado extenso (máx. 50 caracteres)."
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Categoria inválida: \"%s\"" msgstr "Categoria inválida: \"%s\""
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Não foi possível actualizar o utilizador para subscrição automática." msgstr "Não foi possível actualizar o utilizador para subscrição automática."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Não foi possível gravar as preferências de localização." msgstr "Não foi possível gravar as preferências de localização."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Não foi possível gravar o perfil." msgstr "Não foi possível gravar o perfil."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Não foi possível gravar as categorias." msgstr "Não foi possível gravar as categorias."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Configurações gravadas." msgstr "Configurações gravadas."
@ -3210,7 +3209,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "URL do seu perfil noutro serviço de microblogues compatível" msgstr "URL do seu perfil noutro serviço de microblogues compatível"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Subscrever" msgstr "Subscrever"
@ -3248,7 +3247,7 @@ msgstr "Não pode repetir a sua própria nota."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Já repetiu essa nota." msgstr "Já repetiu essa nota."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "Repetida" msgstr "Repetida"
@ -3964,15 +3963,26 @@ msgstr "Nenhum código introduzido"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "Não subscreveu esse perfil." msgstr "Não subscreveu esse perfil."
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Não foi possível gravar a subscrição." msgstr "Não foi possível gravar a subscrição."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "O utilizador não é local." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Ficheiro não foi encontrado."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Não subscreveu esse perfil."
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "Subscrito" msgstr "Subscrito"
@ -4036,7 +4046,7 @@ msgstr "Estas são as pessoas cujas notas está a escutar."
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "Estas são as pessoas cujas notas %s está a escutar." msgstr "Estas são as pessoas cujas notas %s está a escutar."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4052,16 +4062,16 @@ msgstr ""
"twittersettings%%) pode subscrever automaticamente as pessoas que já segue " "twittersettings%%) pode subscrever automaticamente as pessoas que já segue "
"lá." "lá."
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%s não está a ouvir ninguém." msgstr "%s não está a ouvir ninguém."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber" msgstr "Jabber"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS" msgstr "SMS"
@ -4489,22 +4499,22 @@ msgstr "Não foi possível actualizar a mensagem com a nova URI."
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "Erro na base de dados ao inserir a marca: %s" msgstr "Erro na base de dados ao inserir a marca: %s"
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "Problema na gravação da nota. Demasiado longa." msgstr "Problema na gravação da nota. Demasiado longa."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Problema na gravação da nota. Utilizador desconhecido." msgstr "Problema na gravação da nota. Utilizador desconhecido."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"Demasiadas notas, demasiado rápido; descanse e volte a publicar daqui a " "Demasiadas notas, demasiado rápido; descanse e volte a publicar daqui a "
"alguns minutos." "alguns minutos."
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
@ -4512,39 +4522,58 @@ msgstr ""
"Demasiadas mensagens duplicadas, demasiado rápido; descanse e volte a " "Demasiadas mensagens duplicadas, demasiado rápido; descanse e volte a "
"publicar daqui a alguns minutos." "publicar daqui a alguns minutos."
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Está proibido de publicar notas neste site." msgstr "Está proibido de publicar notas neste site."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Problema na gravação da nota." msgstr "Problema na gravação da nota."
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy #, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Problema na gravação da nota." msgstr "Problema na gravação da nota."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Ocorreu um erro na base de dados ao inserir a resposta: %s"
#: 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"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr "Foi bloqueado de fazer subscrições"
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr "Já subscrito!"
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "O utilizador bloqueou-o."
#: classes/Subscription.php:157
msgid "Not subscribed!"
msgstr "Não subscrito!"
#: classes/Subscription.php:163
msgid "Couldn't delete self-subscription."
msgstr "Não foi possível apagar a auto-subscrição."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Não foi possível apagar a subscrição."
#: classes/User.php:372
#, php-format #, php-format
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "%1$s dá-lhe as boas-vindas, @%2$s!" msgstr "%1$s dá-lhe as boas-vindas, @%2$s!"
#: classes/User_group.php:380 #: classes/User_group.php:423
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:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Não foi possível configurar membros do grupo." msgstr "Não foi possível configurar membros do grupo."
@ -4745,26 +4774,38 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "Tudo " msgstr "Tudo "
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "licença." msgstr "licença."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "Paginação" msgstr "Paginação"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "Posteriores" msgstr "Posteriores"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "Anteriores" msgstr "Anteriores"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "Não pode fazer alterações a este site." msgstr "Não pode fazer alterações a este site."
@ -5066,82 +5107,93 @@ msgstr "Erro ao gravar nota."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "Introduza o nome do utilizador para subscrever" msgstr "Introduza o nome do utilizador para subscrever"
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
#, fuzzy
msgid "No such user"
msgstr "Utilizador não encontrado."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "Subscreveu %s" msgstr "Subscreveu %s"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "Introduza o nome do utilizador para deixar de subscrever" msgstr "Introduza o nome do utilizador para deixar de subscrever"
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "Deixou de subscrever %s" msgstr "Deixou de subscrever %s"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "Comando ainda não implementado." msgstr "Comando ainda não implementado."
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "Notificação desligada." msgstr "Notificação desligada."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "Não foi possível desligar a notificação." msgstr "Não foi possível desligar a notificação."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "Notificação ligada." msgstr "Notificação ligada."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "Não foi possível ligar a notificação." msgstr "Não foi possível ligar a notificação."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "Comando para iniciar sessão foi desactivado" msgstr "Comando para iniciar sessão foi desactivado"
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
"Esta ligação é utilizável uma única vez e só durante os próximos 2 minutos: %" "Esta ligação é utilizável uma única vez e só durante os próximos 2 minutos: %"
"s" "s"
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Deixou de subscrever %s"
#: lib/command.php:709
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "Não subscreveu ninguém." msgstr "Não subscreveu ninguém."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Subscreveu esta pessoa:" msgstr[0] "Subscreveu esta pessoa:"
msgstr[1] "Subscreveu estas pessoas:" msgstr[1] "Subscreveu estas pessoas:"
#: lib/command.php:690 #: lib/command.php:731
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Ninguém subscreve as suas notas." msgstr "Ninguém subscreve as suas notas."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Esta pessoa subscreve as suas notas:" msgstr[0] "Esta pessoa subscreve as suas notas:"
msgstr[1] "Estas pessoas subscrevem as suas notas:" msgstr[1] "Estas pessoas subscrevem as suas notas:"
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "Não está em nenhum grupo." msgstr "Não está em nenhum grupo."
#: lib/command.php:714 #: lib/command.php:755
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] "Está no grupo:" msgstr[0] "Está no grupo:"
msgstr[1] "Está nos grupos:" msgstr[1] "Está nos grupos:"
#: lib/command.php:728 #: lib/command.php:769
#, fuzzy
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5155,6 +5207,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5219,19 +5272,19 @@ msgstr ""
"tracks - ainda não implementado.\n" "tracks - ainda não implementado.\n"
"tracking - ainda não implementado.\n" "tracking - ainda não implementado.\n"
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Ficheiro de configuração não encontrado. " msgstr "Ficheiro de configuração não encontrado. "
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "Procurei ficheiros de configuração nos seguintes sítios: " msgstr "Procurei ficheiros de configuração nos seguintes sítios: "
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "Talvez queira correr o instalador para resolver esta questão." msgstr "Talvez queira correr o instalador para resolver esta questão."
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Ir para o instalador." msgstr "Ir para o instalador."
@ -5727,7 +5780,7 @@ msgstr ""
"conversa com outros utilizadores. Outros podem enviar-lhe mensagens, a que " "conversa com outros utilizadores. Outros podem enviar-lhe mensagens, a que "
"só você terá acesso." "só você terá acesso."
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "de" msgstr "de"
@ -5852,48 +5905,48 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "N" msgstr "N"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "S" msgstr "S"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "E" msgstr "E"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "O" msgstr "O"
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "coords." msgstr "coords."
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "no contexto" msgstr "no contexto"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "Repetida por" msgstr "Repetida por"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Responder a esta nota" msgstr "Responder a esta nota"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "Responder" msgstr "Responder"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Nota repetida" msgstr "Nota repetida"
@ -5925,10 +5978,6 @@ msgstr "Erro ao inserir perfil remoto"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Nota duplicada" msgstr "Nota duplicada"
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr "Foi bloqueado de fazer subscrições"
#: lib/oauthstore.php:490 #: 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."
@ -6105,34 +6154,6 @@ msgstr "Pessoas que subscrevem %s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "Grupos de que %s é membro" msgstr "Grupos de que %s é membro"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr "Já subscrito!"
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "O utilizador bloqueou-o."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "Não foi possível subscrever."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "Não foi possível que outro o subscrevesse."
#: lib/subs.php:137
msgid "Not subscribed!"
msgstr "Não subscrito!"
#: lib/subs.php:142
msgid "Couldn't delete self-subscription."
msgstr "Não foi possível apagar a auto-subscrição."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Não foi possível apagar a subscrição."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6183,67 +6204,67 @@ msgstr "Editar Avatar"
msgid "User actions" msgid "User actions"
msgstr "Acções do utilizador" msgstr "Acções do utilizador"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Editar configurações do perfil" msgstr "Editar configurações do perfil"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "Editar" msgstr "Editar"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Enviar mensagem directa a este utilizador" msgstr "Enviar mensagem directa a este utilizador"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Mensagem" msgstr "Mensagem"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "Moderar" msgstr "Moderar"
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "há alguns segundos" msgstr "há alguns segundos"
#: lib/util.php:872 #: lib/util.php:954
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:874 #: lib/util.php:956
#, 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:876 #: lib/util.php:958
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:878 #: lib/util.php:960
#, 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:880 #: lib/util.php:962
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:882 #: lib/util.php:964
#, 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:884 #: lib/util.php:966
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:886 #: lib/util.php:968
#, 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:888 #: lib/util.php:970
msgid "about a year ago" msgid "about a year ago"
msgstr "há cerca de um ano" msgstr "há cerca de um ano"

View File

@ -11,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-14 20:05+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-14 20:07:20+0000\n" "PO-Revision-Date: 2010-02-24 23:51:37+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 (r62476); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -63,7 +63,7 @@ msgstr "Desabilita novos registros."
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -101,7 +101,6 @@ msgstr "Esta página não existe."
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Este usuário não existe." msgstr "Este usuário não existe."
@ -195,11 +194,11 @@ msgstr "Atualizações de %1$s e amigos no %2$s!"
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:182 actions/apitimelinehome.php:184 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:194 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 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!"
@ -503,7 +502,7 @@ msgstr "Token inválido."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -763,7 +762,7 @@ msgid "Preview"
msgstr "Visualização" msgstr "Visualização"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Excluir" msgstr "Excluir"
@ -945,7 +944,7 @@ msgstr "Você não é o dono desta aplicação."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." 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."
@ -974,7 +973,7 @@ 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -1005,7 +1004,7 @@ msgstr "Tem certeza que deseja excluir esta mensagem?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Não excluir esta mensagem." msgstr "Não excluir esta mensagem."
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Excluir esta mensagem" msgstr "Excluir esta mensagem"
@ -1246,7 +1245,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:423 #: actions/editgroup.php:259 classes/User_group.php:433
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."
@ -2343,7 +2342,7 @@ msgid "Only "
msgstr "Apenas " msgstr "Apenas "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
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."
@ -2786,23 +2785,23 @@ msgstr "O nome do idioma é muito extenso (máx. 50 caracteres)."
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Etiqueta inválida: \"%s\"" msgstr "Etiqueta inválida: \"%s\""
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Não foi possível atualizar o usuário para assinar automaticamente." msgstr "Não foi possível atualizar o usuário para assinar automaticamente."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Não foi possível salvar as preferências de localização." msgstr "Não foi possível salvar as preferências de localização."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Não foi possível salvar o perfil." msgstr "Não foi possível salvar o perfil."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Não foi possível salvar as etiquetas." msgstr "Não foi possível salvar as etiquetas."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "As configurações foram salvas." msgstr "As configurações foram salvas."
@ -3202,7 +3201,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "URL do seu perfil em outro serviço de microblog compatível" msgstr "URL do seu perfil em outro serviço de microblog compatível"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Assinar" msgstr "Assinar"
@ -3239,7 +3238,7 @@ msgstr "Você não pode repetir sua própria mensagem."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Você já repetiu essa mensagem." msgstr "Você já repetiu essa mensagem."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "Repetida" msgstr "Repetida"
@ -3254,9 +3253,9 @@ msgid "Replies to %s"
msgstr "Respostas para %s" msgstr "Respostas para %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 "Respostas para %1$s no %2$s" msgstr "Respostas para %1$s, pág. %2$d"
#: actions/replies.php:144 #: actions/replies.php:144
#, php-format #, php-format
@ -3324,9 +3323,8 @@ msgid "Sessions"
msgstr "Sessões" msgstr "Sessões"
#: actions/sessionsadminpanel.php:65 #: actions/sessionsadminpanel.php:65
#, fuzzy
msgid "Session settings for this StatusNet site." msgid "Session settings for this StatusNet site."
msgstr "Configurações da aparência deste site StatusNet." msgstr "Configurações da sessão deste site StatusNet."
#: actions/sessionsadminpanel.php:175 #: actions/sessionsadminpanel.php:175
msgid "Handle sessions" msgid "Handle sessions"
@ -3381,9 +3379,9 @@ msgid "Statistics"
msgstr "Estatísticas" msgstr "Estatísticas"
#: actions/showapplication.php:203 #: 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 "criado por %1$s - %2$s acessa por padrão - %3$d usuários" msgstr "Criado por %1$s - acesso %2$s por padrão - %3$d usuários"
#: actions/showapplication.php:213 #: actions/showapplication.php:213
msgid "Application actions" msgid "Application actions"
@ -3426,14 +3424,13 @@ msgstr ""
"assinatura em texto plano." "assinatura em texto plano."
#: actions/showapplication.php:309 #: actions/showapplication.php:309
#, fuzzy
msgid "Are you sure you want to reset your consumer key and secret?" msgid "Are you sure you want to reset your consumer key and secret?"
msgstr "Tem certeza que deseja excluir esta mensagem?" msgstr "Tem certeza que deseja restaurar sua chave e segredo de consumidor?"
#: 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 "Mensagens favoritas de %s" msgstr "Mensagens favoritas de %1$s, pág. %2$d"
#: actions/showfavorites.php:132 #: actions/showfavorites.php:132
msgid "Could not retrieve favorite notices." msgid "Could not retrieve favorite notices."
@ -3493,9 +3490,9 @@ msgid "%s group"
msgstr "Grupo %s" msgstr "Grupo %s"
#: actions/showgroup.php:84 #: actions/showgroup.php:84
#, fuzzy, php-format #, php-format
msgid "%1$s group, page %2$d" msgid "%1$s group, page %2$d"
msgstr "Membros do grupo %1$s, pág. %2$d" msgstr "Grupo %1$s, pág. %2$d"
#: actions/showgroup.php:218 #: actions/showgroup.php:218
msgid "Group profile" msgid "Group profile"
@ -3618,9 +3615,9 @@ msgid " tagged %s"
msgstr " etiquetada %s" msgstr " etiquetada %s"
#: actions/showstream.php:79 #: actions/showstream.php:79
#, fuzzy, php-format #, php-format
msgid "%1$s, page %2$d" msgid "%1$s, page %2$d"
msgstr "%1$s e amigos, pág. %2$d" msgstr "%1$s, pág. %2$d"
#: actions/showstream.php:122 #: actions/showstream.php:122
#, php-format #, php-format
@ -3954,15 +3951,26 @@ msgstr "Não foi digitado nenhum código"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "Você não está assinando esse perfil." msgstr "Você não está assinando esse perfil."
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Não foi possível salvar a assinatura." msgstr "Não foi possível salvar a assinatura."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "Não é um usuário local." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Esse arquivo não existe."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Você não está assinando esse perfil."
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "Assinado" msgstr "Assinado"
@ -4026,7 +4034,7 @@ msgstr "Estas são as pessoas cujas mensagens você acompanha."
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "Estas são as pessoas cujas mensagens %s acompanha." msgstr "Estas são as pessoas cujas mensagens %s acompanha."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4042,23 +4050,23 @@ msgstr ""
"[usuário do Twitter](%%action.twittersettings%%), você pode assinar " "[usuário do Twitter](%%action.twittersettings%%), você pode assinar "
"automaticamente as pessoas que já segue lá." "automaticamente as pessoas que já segue lá."
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%s não está acompanhando ninguém." msgstr "%s não está acompanhando ninguém."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber" msgstr "Jabber"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS" msgstr "SMS"
#: actions/tag.php:68 #: actions/tag.php:68
#, fuzzy, php-format #, php-format
msgid "Notices tagged with %1$s, page %2$d" msgid "Notices tagged with %1$s, page %2$d"
msgstr "Usuários auto-etiquetados com %1$s - pág. %2$d" msgstr "Mensagens etiquetadas com %1$s, pág. %2$d"
#: actions/tag.php:86 #: actions/tag.php:86
#, php-format #, php-format
@ -4343,9 +4351,9 @@ msgid "Enjoy your hotdog!"
msgstr "Aproveite o seu cachorro-quente!" msgstr "Aproveite o seu cachorro-quente!"
#: actions/usergroups.php:64 #: actions/usergroups.php:64
#, fuzzy, php-format #, php-format
msgid "%1$s groups, page %2$d" msgid "%1$s groups, page %2$d"
msgstr "Membros do grupo %1$s, pág. %2$d" msgstr "Grupos de %1$s, pág. %2$d"
#: actions/usergroups.php:130 #: actions/usergroups.php:130
msgid "Search for more groups" msgid "Search for more groups"
@ -4479,22 +4487,22 @@ msgstr "Não foi possível atualizar a mensagem com a nova URI."
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "Erro no banco de dados durante a inserção da hashtag: %s" msgstr "Erro no banco de dados durante a inserção da hashtag: %s"
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "Problema no salvamento da mensagem. Ela é muito extensa." msgstr "Problema no salvamento da mensagem. Ela é muito extensa."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Problema no salvamento da mensagem. Usuário desconhecido." msgstr "Problema no salvamento da mensagem. Usuário desconhecido."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"Muitas mensagens em um período curto de tempo; dê uma respirada e publique " "Muitas mensagens em um período curto de tempo; dê uma respirada e publique "
"novamente daqui a alguns minutos." "novamente daqui a alguns minutos."
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
@ -4502,39 +4510,57 @@ msgstr ""
"Muitas mensagens duplicadas em um período curto de tempo; dê uma respirada e " "Muitas mensagens duplicadas em um período curto de tempo; dê uma respirada e "
"publique novamente daqui a alguns minutos." "publique novamente daqui a alguns minutos."
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Você está proibido de publicar mensagens neste site." msgstr "Você está proibido de publicar mensagens neste site."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Problema no salvamento da mensagem." msgstr "Problema no salvamento da mensagem."
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Problema no salvamento da mensagem." msgstr "Problema no salvamento das mensagens recebidas do grupo."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Erro no banco de dados na inserção da reposta: %s"
#: 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"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr "Você está proibido de assinar."
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr "Já assinado!"
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "O usuário bloqueou você."
#: classes/Subscription.php:157
msgid "Not subscribed!"
msgstr "Não assinado!"
#: classes/Subscription.php:163
msgid "Couldn't delete self-subscription."
msgstr "Não foi possível excluir a auto-assinatura."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Não foi possível excluir a assinatura."
#: classes/User.php:372
#, php-format #, php-format
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:413 #: classes/User_group.php:423
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:442 #: classes/User_group.php:452
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."
@ -4737,26 +4763,38 @@ msgstr ""
"Conteúdo e dados licenciados pelos colaboradores. Todos os direitos " "Conteúdo e dados licenciados pelos colaboradores. Todos os direitos "
"reservados." "reservados."
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "Todas " msgstr "Todas "
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "licença." msgstr "licença."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "Paginação" msgstr "Paginação"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "Próximo" msgstr "Próximo"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "Anterior" msgstr "Anterior"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "Você não pode fazer alterações neste site." msgstr "Você não pode fazer alterações neste site."
@ -4786,32 +4824,33 @@ msgid "Design configuration"
msgstr "Configuração da aparência" msgstr "Configuração da aparência"
#: lib/adminpanelaction.php:322 #: lib/adminpanelaction.php:322
#, fuzzy
msgid "User configuration" msgid "User configuration"
msgstr "Configuração dos caminhos" msgstr "Configuração do usuário"
#: lib/adminpanelaction.php:327 #: lib/adminpanelaction.php:327
#, fuzzy
msgid "Access configuration" msgid "Access configuration"
msgstr "Configuração da aparência" msgstr "Configuração do acesso"
#: lib/adminpanelaction.php:332 #: lib/adminpanelaction.php:332
msgid "Paths configuration" msgid "Paths configuration"
msgstr "Configuração dos caminhos" msgstr "Configuração dos caminhos"
#: lib/adminpanelaction.php:337 #: lib/adminpanelaction.php:337
#, fuzzy
msgid "Sessions configuration" msgid "Sessions configuration"
msgstr "Configuração da aparência" msgstr "Configuração das sessões"
#: lib/apiauth.php:95 #: 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 ""
"Os recursos de API exigem acesso de leitura e escrita, mas você possui "
"somente acesso de leitura."
#: lib/apiauth.php:273 #: 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 ""
"A tentativa de autenticação na API falhou, identificação = %1$s, proxy = %2"
"$s, ip = %3$s"
#: lib/applicationeditform.php:136 #: lib/applicationeditform.php:136
msgid "Edit application" msgid "Edit application"
@ -5056,82 +5095,92 @@ msgstr "Erro no salvamento da mensagem."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "Especifique o nome do usuário que será assinado" msgstr "Especifique o nome do usuário que será assinado"
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "Este usuário não existe."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "Efetuada a assinatura de %s" msgstr "Efetuada a assinatura de %s"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "Especifique o nome do usuário cuja assinatura será cancelada" msgstr "Especifique o nome do usuário cuja assinatura será cancelada"
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "Cancelada a assinatura de %s" msgstr "Cancelada a assinatura de %s"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "O comando não foi implementado ainda." msgstr "O comando não foi implementado ainda."
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "Notificação desligada." msgstr "Notificação desligada."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "Não é possível desligar a notificação." msgstr "Não é possível desligar a notificação."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "Notificação ligada." msgstr "Notificação ligada."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "Não é possível ligar a notificação." msgstr "Não é possível ligar a notificação."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "O comando para autenticação está desabilitado" msgstr "O comando para autenticação está desabilitado"
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
"Este link é utilizável somente uma vez e é válido somente por dois minutos: %" "Este link é utilizável somente uma vez e é válido somente por dois minutos: %"
"s" "s"
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Cancelada a assinatura de %s"
#: lib/command.php:709
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "Você não está assinando ninguém." msgstr "Você não está assinando ninguém."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Você já está assinando esta pessoa:" msgstr[0] "Você já está assinando esta pessoa:"
msgstr[1] "Você já está assinando estas pessoas:" msgstr[1] "Você já está assinando estas pessoas:"
#: lib/command.php:690 #: lib/command.php:731
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Ninguém o assinou ainda." msgstr "Ninguém o assinou ainda."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Esta pessoa está assinando você:" msgstr[0] "Esta pessoa está assinando você:"
msgstr[1] "Estas pessoas estão assinando você:" msgstr[1] "Estas pessoas estão assinando você:"
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "Você não é membro de nenhum grupo." msgstr "Você não é membro de nenhum grupo."
#: lib/command.php:714 #: lib/command.php:755
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] "Você é membro deste grupo:" msgstr[0] "Você é membro deste grupo:"
msgstr[1] "Você é membro destes grupos:" msgstr[1] "Você é membro destes grupos:"
#: lib/command.php:728 #: lib/command.php:769
#, fuzzy
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5145,6 +5194,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5210,19 +5260,19 @@ msgstr ""
"tracks - não implementado ainda\n" "tracks - não implementado ainda\n"
"tracking - não implementado ainda\n" "tracking - não implementado ainda\n"
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Não foi encontrado nenhum arquivo de configuração. " msgstr "Não foi encontrado nenhum arquivo de configuração. "
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "Eu procurei pelos arquivos de configuração nos seguintes lugares: " msgstr "Eu procurei pelos arquivos de configuração nos seguintes lugares: "
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "Você pode querer executar o instalador para corrigir isto." msgstr "Você pode querer executar o instalador para corrigir isto."
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Ir para o instalador." msgstr "Ir para o instalador."
@ -5717,7 +5767,7 @@ msgstr ""
"privadas para envolver outras pessoas em uma conversa. Você também pode " "privadas para envolver outras pessoas em uma conversa. Você também pode "
"receber mensagens privadas." "receber mensagens privadas."
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "de" msgstr "de"
@ -5845,48 +5895,48 @@ msgstr ""
"Desculpe, mas recuperar a sua geolocalização está demorando mais que o " "Desculpe, mas recuperar a sua geolocalização está demorando mais que o "
"esperado. Por favor, tente novamente mais tarde." "esperado. Por favor, tente novamente mais tarde."
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "N" msgstr "N"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "S" msgstr "S"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "L" msgstr "L"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "O" msgstr "O"
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "em" msgstr "em"
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "no contexto" msgstr "no contexto"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "Repetida por" msgstr "Repetida por"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Responder a esta mensagem" msgstr "Responder a esta mensagem"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "Responder" msgstr "Responder"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Mensagem repetida" msgstr "Mensagem repetida"
@ -5918,10 +5968,6 @@ 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:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr "Você está proibido de assinar."
#: lib/oauthstore.php:490 #: 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."
@ -6029,7 +6075,7 @@ msgstr "Repetir esta mensagem"
#: 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 "Nenhum usuário definido para o modo de usuário único."
#: lib/sandboxform.php:67 #: lib/sandboxform.php:67
msgid "Sandbox" msgid "Sandbox"
@ -6098,34 +6144,6 @@ msgstr "Assinantes de %s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "Grupos dos quais %s é membro" msgstr "Grupos dos quais %s é membro"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr "Já assinado!"
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "O usuário bloqueou você."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "Não foi possível assinar."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "Não foi possível fazer com que outros o assinem."
#: lib/subs.php:137
msgid "Not subscribed!"
msgstr "Não assinado!"
#: lib/subs.php:142
msgid "Couldn't delete self-subscription."
msgstr "Não foi possível excluir a auto-assinatura."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Não foi possível excluir a assinatura."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6176,67 +6194,67 @@ msgstr "Editar o avatar"
msgid "User actions" msgid "User actions"
msgstr "Ações do usuário" msgstr "Ações do usuário"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Editar as configurações do perfil" msgstr "Editar as configurações do perfil"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "Editar" msgstr "Editar"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Enviar uma mensagem para este usuário." msgstr "Enviar uma mensagem para este usuário."
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Mensagem" msgstr "Mensagem"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "Moderar" msgstr "Moderar"
#: lib/util.php:871 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "alguns segundos atrás" msgstr "alguns segundos atrás"
#: lib/util.php:873 #: lib/util.php:954
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:875 #: lib/util.php:956
#, 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:877 #: lib/util.php:958
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:879 #: lib/util.php:960
#, 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:881 #: lib/util.php:962
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:883 #: lib/util.php:964
#, 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:885 #: lib/util.php:966
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:887 #: lib/util.php:968
#, 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:889 #: lib/util.php:970
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

@ -12,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-14 20:05+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-14 20:07:23+0000\n" "PO-Revision-Date: 2010-02-24 23:51:41+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 (r62476); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -66,7 +66,7 @@ msgstr "Отключить новые регистрации."
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -104,7 +104,6 @@ msgstr "Нет такой страницы"
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Нет такого пользователя." msgstr "Нет такого пользователя."
@ -196,11 +195,11 @@ msgstr "Обновлено от %1$s и его друзей на %2$s!"
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:182 actions/apitimelinehome.php:184 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:194 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "Метод API не найден." msgstr "Метод API не найден."
@ -505,7 +504,7 @@ msgstr "Неправильный токен"
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -761,7 +760,7 @@ msgid "Preview"
msgstr "Просмотр" msgstr "Просмотр"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Удалить" msgstr "Удалить"
@ -942,7 +941,7 @@ msgstr "Вы не являетесь владельцем этого прило
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста."
@ -971,7 +970,7 @@ 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -1002,7 +1001,7 @@ msgstr "Вы уверены, что хотите удалить эту запи
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Не удалять эту запись" msgstr "Не удалять эту запись"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Удалить эту запись" msgstr "Удалить эту запись"
@ -1243,7 +1242,7 @@ msgstr "Слишком длинное описание (максимум %d си
msgid "Could not update group." msgid "Could not update group."
msgstr "Не удаётся обновить информацию о группе." msgstr "Не удаётся обновить информацию о группе."
#: actions/editgroup.php:259 classes/User_group.php:423 #: actions/editgroup.php:259 classes/User_group.php:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Не удаётся создать алиасы." msgstr "Не удаётся создать алиасы."
@ -2335,7 +2334,7 @@ msgid "Only "
msgstr "Только " msgstr "Только "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Неподдерживаемый формат данных." msgstr "Неподдерживаемый формат данных."
@ -2775,23 +2774,23 @@ msgstr "Слишком длинный язык (более 50 символов).
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Неверный тег: «%s»" msgstr "Неверный тег: «%s»"
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Не удаётся обновить пользователя для автоподписки." msgstr "Не удаётся обновить пользователя для автоподписки."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Не удаётся сохранить настройки местоположения." msgstr "Не удаётся сохранить настройки местоположения."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Не удаётся сохранить профиль." msgstr "Не удаётся сохранить профиль."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Не удаётся сохранить теги." msgstr "Не удаётся сохранить теги."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Настройки сохранены." msgstr "Настройки сохранены."
@ -3188,7 +3187,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "Адрес URL твоего профиля на другом подходящем сервисе микроблогинга" msgstr "Адрес URL твоего профиля на другом подходящем сервисе микроблогинга"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Подписаться" msgstr "Подписаться"
@ -3224,7 +3223,7 @@ msgstr "Вы не можете повторить собственную зап
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Вы уже повторили эту запись." msgstr "Вы уже повторили эту запись."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "Повторено" msgstr "Повторено"
@ -3942,15 +3941,26 @@ msgstr "Код не введён"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "Вы не подписаны на этот профиль." msgstr "Вы не подписаны на этот профиль."
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Не удаётся сохранить подписку." msgstr "Не удаётся сохранить подписку."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "Не локальный пользователь." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Нет такого файла."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Вы не подписаны на этот профиль."
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "Подписано" msgstr "Подписано"
@ -4014,7 +4024,7 @@ msgstr "Это пользователи, записи которых вы чит
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "Это пользователи, записи которых читает %s." msgstr "Это пользователи, записи которых читает %s."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4030,16 +4040,16 @@ msgstr ""
"пользуетесь [Твиттером](%%action.twittersettings%%), то можете автоматически " "пользуетесь [Твиттером](%%action.twittersettings%%), то можете автоматически "
"подписаться на тех людей, за которыми уже следите там." "подписаться на тех людей, за которыми уже следите там."
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%s не просматривает ничьи записи." msgstr "%s не просматривает ничьи записи."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber" msgstr "Jabber"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "СМС" msgstr "СМС"
@ -4464,22 +4474,22 @@ msgstr "Не удаётся обновить сообщение с новым UR
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "Ошибка баз данных при вставке хеш-тегов для %s" msgstr "Ошибка баз данных при вставке хеш-тегов для %s"
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "Проблемы с сохранением записи. Слишком длинно." msgstr "Проблемы с сохранением записи. Слишком длинно."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Проблема при сохранении записи. Неизвестный пользователь." msgstr "Проблема при сохранении записи. Неизвестный пользователь."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"Слишком много записей за столь короткий срок; передохните немного и " "Слишком много записей за столь короткий срок; передохните немного и "
"попробуйте вновь через пару минут." "попробуйте вновь через пару минут."
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
@ -4487,38 +4497,57 @@ msgstr ""
"Слишком много одинаковых записей за столь короткий срок; передохните немного " "Слишком много одинаковых записей за столь короткий срок; передохните немного "
"и попробуйте вновь через пару минут." "и попробуйте вновь через пару минут."
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Вам запрещено поститься на этом сайте (бан)" msgstr "Вам запрещено поститься на этом сайте (бан)"
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Проблемы с сохранением записи." msgstr "Проблемы с сохранением записи."
#: classes/Notice.php:788 #: classes/Notice.php:882
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Проблемы с сохранением входящих сообщений группы." msgstr "Проблемы с сохранением входящих сообщений группы."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Ошибка баз данных при вставке ответа для %s"
#: 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"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr "Вы заблокированы от подписки."
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr "Уже подписаны!"
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "Пользователь заблокировал Вас."
#: classes/Subscription.php:157
msgid "Not subscribed!"
msgstr "Не подписаны!"
#: classes/Subscription.php:163
msgid "Couldn't delete self-subscription."
msgstr "Невозможно удалить самоподписку."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Не удаётся удалить подписку."
#: classes/User.php:372
#, php-format #, php-format
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:413 #: classes/User_group.php:423
msgid "Could not create group." msgid "Could not create group."
msgstr "Не удаётся создать группу." msgstr "Не удаётся создать группу."
#: classes/User_group.php:442 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Не удаётся назначить членство в группе." msgstr "Не удаётся назначить членство в группе."
@ -4723,26 +4752,38 @@ msgstr ""
"Авторские права на содержание и данные принадлежат разработчикам. Все права " "Авторские права на содержание и данные принадлежат разработчикам. Все права "
"защищены." "защищены."
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "All " msgstr "All "
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "license." msgstr "license."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "Разбиение на страницы" msgstr "Разбиение на страницы"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "Сюда" msgstr "Сюда"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "Туда" msgstr "Туда"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "Вы не можете изменять этот сайт." msgstr "Вы не можете изменять этот сайт."
@ -5041,83 +5082,93 @@ msgstr "Проблемы с сохранением записи."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "Укажите имя пользователя для подписки." msgstr "Укажите имя пользователя для подписки."
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "Нет такого пользователя."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "Подписано на %s" msgstr "Подписано на %s"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "Укажите имя пользователя для отмены подписки." msgstr "Укажите имя пользователя для отмены подписки."
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "Отписано от %s" msgstr "Отписано от %s"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "Команда ещё не выполнена." msgstr "Команда ещё не выполнена."
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "Оповещение отсутствует." msgstr "Оповещение отсутствует."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "Нет оповещения." msgstr "Нет оповещения."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "Есть оповещение." msgstr "Есть оповещение."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "Есть оповещение." msgstr "Есть оповещение."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "Команда входа отключена" msgstr "Команда входа отключена"
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "Эта ссылка действительна только один раз в течение 2 минут: %s" msgstr "Эта ссылка действительна только один раз в течение 2 минут: %s"
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Отписано от %s"
#: lib/command.php:709
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "Вы ни на кого не подписаны." msgstr "Вы ни на кого не подписаны."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Вы подписаны на этих людей:" msgstr[0] "Вы подписаны на этих людей:"
msgstr[1] "Вы подписаны на этих людей:" msgstr[1] "Вы подписаны на этих людей:"
msgstr[2] "Вы подписаны на этих людей:" msgstr[2] "Вы подписаны на этих людей:"
#: lib/command.php:690 #: lib/command.php:731
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Никто не подписан на вас." msgstr "Никто не подписан на вас."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Эти люди подписались на вас:" msgstr[0] "Эти люди подписались на вас:"
msgstr[1] "Эти люди подписались на вас:" msgstr[1] "Эти люди подписались на вас:"
msgstr[2] "Эти люди подписались на вас:" msgstr[2] "Эти люди подписались на вас:"
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "Вы не состоите ни в одной группе." msgstr "Вы не состоите ни в одной группе."
#: lib/command.php:714 #: lib/command.php:755
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] "Вы являетесь участником следующих групп:" msgstr[0] "Вы являетесь участником следующих групп:"
msgstr[1] "Вы являетесь участником следующих групп:" msgstr[1] "Вы являетесь участником следующих групп:"
msgstr[2] "Вы являетесь участником следующих групп:" msgstr[2] "Вы являетесь участником следующих групп:"
#: lib/command.php:728 #: lib/command.php:769
#, fuzzy
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5131,6 +5182,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5195,19 +5247,19 @@ msgstr ""
"tracks — пока не реализовано.\n" "tracks — пока не реализовано.\n"
"tracking — пока не реализовано.\n" "tracking — пока не реализовано.\n"
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Конфигурационный файл не найден. " msgstr "Конфигурационный файл не найден. "
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "Конфигурационные файлы искались в следующих местах: " msgstr "Конфигурационные файлы искались в следующих местах: "
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "Возможно, вы решите запустить установщик для исправления этого." msgstr "Возможно, вы решите запустить установщик для исправления этого."
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Перейти к установщику" msgstr "Перейти к установщику"
@ -5703,7 +5755,7 @@ msgstr ""
"вовлечения других пользователей в разговор. Сообщения, получаемые от других " "вовлечения других пользователей в разговор. Сообщения, получаемые от других "
"людей, видите только вы." "людей, видите только вы."
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "от " msgstr "от "
@ -5828,48 +5880,48 @@ msgstr ""
"К сожалению, получение информации о вашем местонахождении заняло больше " "К сожалению, получение информации о вашем местонахождении заняло больше "
"времени, чем ожидалось; повторите попытку позже" "времени, чем ожидалось; повторите попытку позже"
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\" %4$s %5$u°%6$u'%7$u\" %8$s" msgstr "%1$u°%2$u'%3$u\" %4$s %5$u°%6$u'%7$u\" %8$s"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "с. ш." msgstr "с. ш."
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "ю. ш." msgstr "ю. ш."
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "в. д." msgstr "в. д."
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "з. д." msgstr "з. д."
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "на" msgstr "на"
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "в контексте" msgstr "в контексте"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "Повторено" msgstr "Повторено"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Ответить на эту запись" msgstr "Ответить на эту запись"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "Ответить" msgstr "Ответить"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Запись повторена" msgstr "Запись повторена"
@ -5901,10 +5953,6 @@ msgstr "Ошибка вставки удалённого профиля"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Дублировать запись" msgstr "Дублировать запись"
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr "Вы заблокированы от подписки."
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Не удаётся вставить новую подписку." msgstr "Не удаётся вставить новую подписку."
@ -6081,34 +6129,6 @@ msgstr "Люди подписанные на %s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "Группы, в которых состоит %s" msgstr "Группы, в которых состоит %s"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr "Уже подписаны!"
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "Пользователь заблокировал Вас."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "Подписка неудачна."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "Не удаётся подписать других на вашу ленту."
#: lib/subs.php:137
msgid "Not subscribed!"
msgstr "Не подписаны!"
#: lib/subs.php:142
msgid "Couldn't delete self-subscription."
msgstr "Невозможно удалить самоподписку."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Не удаётся удалить подписку."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6159,67 +6179,67 @@ msgstr "Изменить аватару"
msgid "User actions" msgid "User actions"
msgstr "Действия пользователя" msgstr "Действия пользователя"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Изменение настроек профиля" msgstr "Изменение настроек профиля"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "Редактировать" msgstr "Редактировать"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Послать приватное сообщение этому пользователю." msgstr "Послать приватное сообщение этому пользователю."
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Сообщение" msgstr "Сообщение"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "Модерировать" msgstr "Модерировать"
#: lib/util.php:871 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "пару секунд назад" msgstr "пару секунд назад"
#: lib/util.php:873 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "около минуты назад" msgstr "около минуты назад"
#: lib/util.php:875 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "около %d минут(ы) назад" msgstr "около %d минут(ы) назад"
#: lib/util.php:877 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "около часа назад" msgstr "около часа назад"
#: lib/util.php:879 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "около %d часа(ов) назад" msgstr "около %d часа(ов) назад"
#: lib/util.php:881 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "около дня назад" msgstr "около дня назад"
#: lib/util.php:883 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "около %d дня(ей) назад" msgstr "около %d дня(ей) назад"
#: lib/util.php:885 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "около месяца назад" msgstr "около месяца назад"
#: lib/util.php:887 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "около %d месяца(ев) назад" msgstr "около %d месяца(ев) назад"
#: lib/util.php:889 #: lib/util.php:970
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-14 20:05+0000\n" "POT-Creation-Date: 2010-02-24 23:49+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"
@ -58,7 +58,7 @@ msgstr ""
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -96,7 +96,6 @@ msgstr ""
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "" msgstr ""
@ -181,11 +180,11 @@ msgstr ""
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:182 actions/apitimelinehome.php:184 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:194 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "" msgstr ""
@ -481,7 +480,7 @@ msgstr ""
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -731,7 +730,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -909,7 +908,7 @@ msgstr ""
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -935,7 +934,7 @@ 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -964,7 +963,7 @@ msgstr ""
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "" msgstr ""
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "" msgstr ""
@ -1201,7 +1200,7 @@ msgstr ""
msgid "Could not update group." msgid "Could not update group."
msgstr "" msgstr ""
#: actions/editgroup.php:259 classes/User_group.php:423 #: actions/editgroup.php:259 classes/User_group.php:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "" msgstr ""
@ -2196,7 +2195,7 @@ msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -2628,23 +2627,23 @@ msgstr ""
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "" msgstr ""
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "" msgstr ""
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "" msgstr ""
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "" msgstr ""
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "" msgstr ""
@ -2997,7 +2996,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "" msgstr ""
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "" msgstr ""
@ -3033,7 +3032,7 @@ msgstr ""
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "" msgstr ""
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "" msgstr ""
@ -3697,15 +3696,24 @@ msgstr ""
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "" msgstr ""
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "" msgstr ""
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "" msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
msgid "No such profile."
msgstr ""
#: actions/subscribe.php:117
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "" msgstr ""
@ -3765,7 +3773,7 @@ msgstr ""
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "" msgstr ""
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -3775,16 +3783,16 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "" msgstr ""
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "" msgstr ""
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "" msgstr ""
@ -4178,57 +4186,76 @@ msgstr ""
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "" msgstr ""
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "" msgstr ""
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "" msgstr ""
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "" msgstr ""
#: classes/Notice.php:788 #: classes/Notice.php:882
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "" msgstr ""
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr ""
#: classes/Notice.php:1271
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr ""
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr ""
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr ""
#: classes/Subscription.php:157
msgid "Not subscribed!"
msgstr ""
#: classes/Subscription.php:163
msgid "Couldn't delete self-subscription."
msgstr ""
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr ""
#: classes/User.php:372
#, php-format #, php-format
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "" msgstr ""
#: classes/User_group.php:413 #: classes/User_group.php:423
msgid "Could not create group." msgid "Could not create group."
msgstr "" msgstr ""
#: classes/User_group.php:442 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "" msgstr ""
@ -4424,26 +4451,38 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "" msgstr ""
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "" msgstr ""
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "" msgstr ""
@ -4734,80 +4773,89 @@ msgstr ""
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "" msgstr ""
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr ""
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "" msgstr ""
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "" msgstr ""
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "" msgstr ""
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "" msgstr ""
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "" msgstr ""
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "" msgstr ""
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "" msgstr ""
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "" msgstr ""
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, php-format
msgid "Unsubscribed %s"
msgstr ""
#: lib/command.php:709
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "" msgstr ""
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: lib/command.php:690 #: lib/command.php:731
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "" msgstr ""
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "" msgstr ""
#: lib/command.php:714 #: lib/command.php:755
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] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -4821,6 +4869,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -4848,19 +4897,19 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "" msgstr ""
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""
@ -5266,7 +5315,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "" msgstr ""
@ -5386,48 +5435,48 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "" msgstr ""
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "" msgstr ""
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "" msgstr ""
#: lib/noticelist.php:641 #: lib/noticelist.php:655
msgid "Notice repeated" msgid "Notice repeated"
msgstr "" msgstr ""
@ -5459,10 +5508,6 @@ msgstr ""
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "" msgstr ""
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr ""
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "" msgstr ""
@ -5639,34 +5684,6 @@ msgstr ""
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "" msgstr ""
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr ""
#: lib/subs.php:56
msgid "User has blocked you."
msgstr ""
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr ""
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr ""
#: lib/subs.php:137
msgid "Not subscribed!"
msgstr ""
#: lib/subs.php:142
msgid "Couldn't delete self-subscription."
msgstr ""
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr ""
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -5717,67 +5734,67 @@ msgstr ""
msgid "User actions" msgid "User actions"
msgstr "" msgstr ""
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "" msgstr ""
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "" msgstr ""
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "" msgstr ""
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:871 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "" msgstr ""
#: lib/util.php:873 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "" msgstr ""
#: lib/util.php:875 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "" msgstr ""
#: lib/util.php:877 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "" msgstr ""
#: lib/util.php:879 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "" msgstr ""
#: lib/util.php:881 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "" msgstr ""
#: lib/util.php:883 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "" msgstr ""
#: lib/util.php:885 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "" msgstr ""
#: lib/util.php:887 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "" msgstr ""
#: lib/util.php:889 #: lib/util.php:970
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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:15:57+0000\n" "PO-Revision-Date: 2010-02-24 23:51:44+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -62,7 +62,7 @@ msgstr "Inaktivera nya registreringar."
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -100,7 +100,6 @@ msgstr "Ingen sådan sida"
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Ingen sådan användare." msgstr "Ingen sådan användare."
@ -169,8 +168,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "Du och vänner" msgstr "Du och vänner"
#: 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 "Uppdateringar från %1$s och vänner på %2$s!" msgstr "Uppdateringar från %1$s och vänner på %2$s!"
@ -191,12 +190,12 @@ msgstr "Uppdateringar från %1$s och vänner på %2$s!"
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "API-metod hittades inte." msgstr "API-metod hittades inte."
@ -495,7 +494,7 @@ msgstr "Ogiltig token."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -635,7 +634,7 @@ msgstr "Format som inte stödjs."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%1$s / Favoriter från %2$s" msgstr "%1$s / Favoriter från %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 uppdateringar markerade som favorit av %2$s / %2$s." msgstr "%1$s uppdateringar markerade som favorit av %2$s / %2$s."
@ -646,7 +645,7 @@ msgstr "%1$s uppdateringar markerade som favorit av %2$s / %2$s."
msgid "%s timeline" msgid "%s timeline"
msgstr "%s tidslinje" msgstr "%s tidslinje"
#: 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!"
@ -662,12 +661,12 @@ msgstr "%1$s / Uppdateringar som nämner %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 uppdateringar med svar på uppdatering från %2$s / %3$s." msgstr "%1$s uppdateringar med svar på uppdatering från %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 publika tidslinje" msgstr "%s publika tidslinje"
#: 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 uppdateringar från alla!" msgstr "%s uppdateringar från alla!"
@ -677,7 +676,7 @@ msgstr "%s uppdateringar från alla!"
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "Upprepat till %s" msgstr "Upprepat till %s"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, php-format #, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "Upprepningar av %s" msgstr "Upprepningar av %s"
@ -687,7 +686,7 @@ msgstr "Upprepningar av %s"
msgid "Notices tagged with %s" msgid "Notices tagged with %s"
msgstr "Notiser taggade med %s" msgstr "Notiser taggade med %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 "Uppdateringar taggade med %1$s på %2$s!" msgstr "Uppdateringar taggade med %1$s på %2$s!"
@ -749,7 +748,7 @@ msgid "Preview"
msgstr "Förhandsgranska" msgstr "Förhandsgranska"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Ta bort" msgstr "Ta bort"
@ -931,7 +930,7 @@ msgstr "Du är inte ägaren av denna applikation."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." 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."
@ -960,7 +959,7 @@ 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -991,7 +990,7 @@ msgstr "Är du säker på att du vill ta bort denna notis?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Ta inte bort denna notis" msgstr "Ta inte bort denna notis"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Ta bort denna notis" msgstr "Ta bort denna notis"
@ -1232,7 +1231,7 @@ msgstr "beskrivning är för lång (max %d tecken)."
msgid "Could not update group." msgid "Could not update group."
msgstr "Kunde inte uppdatera grupp." msgstr "Kunde inte uppdatera grupp."
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Kunde inte skapa alias." msgstr "Kunde inte skapa alias."
@ -2315,7 +2314,7 @@ msgid "Only "
msgstr "Bara " msgstr "Bara "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
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"
@ -2756,23 +2755,23 @@ msgstr "Språknamn är för långt (max 50 tecken)."
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Ogiltig tagg: \"%s\"" msgstr "Ogiltig tagg: \"%s\""
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Kunde inte uppdatera användaren för automatisk prenumeration." msgstr "Kunde inte uppdatera användaren för automatisk prenumeration."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Kunde inte spara platsinställningar." msgstr "Kunde inte spara platsinställningar."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Kunde inte spara profil." msgstr "Kunde inte spara profil."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Kunde inte spara taggar." msgstr "Kunde inte spara taggar."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Inställningar sparade." msgstr "Inställningar sparade."
@ -3171,7 +3170,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "URL till din profil på en annan kompatibel mikrobloggtjänst" msgstr "URL till din profil på en annan kompatibel mikrobloggtjänst"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Prenumerera" msgstr "Prenumerera"
@ -3209,7 +3208,7 @@ msgstr "Du kan inte upprepa din egna notis."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Du har redan upprepat denna notis." msgstr "Du har redan upprepat denna notis."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "Upprepad" msgstr "Upprepad"
@ -3918,15 +3917,26 @@ msgstr "Ingen kod ifylld"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "Du är inte prenumerat hos den profilen." msgstr "Du är inte prenumerat hos den profilen."
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Kunde inte spara prenumeration." msgstr "Kunde inte spara prenumeration."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "Inte en lokal användare." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Ingen sådan fil."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Du är inte prenumerat hos den profilen."
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "Prenumerant" msgstr "Prenumerant"
@ -3990,7 +4000,7 @@ msgstr "Det är dessa personer vars meddelanden du lyssnar på."
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "Det är dessa personer vars notiser %s lyssnar på." msgstr "Det är dessa personer vars notiser %s lyssnar på."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4006,16 +4016,16 @@ msgstr ""
"twittersettings%%) kan du prenumerera automatiskt på personer som du redan " "twittersettings%%) kan du prenumerera automatiskt på personer som du redan "
"följer där." "följer där."
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%s lyssnar inte på någon." msgstr "%s lyssnar inte på någon."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber" msgstr "Jabber"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS" msgstr "SMS"
@ -4443,22 +4453,22 @@ msgstr "Kunde inte uppdatera meddelande med ny URI."
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "Databasfel vid infogning av hashtag: %s" msgstr "Databasfel vid infogning av hashtag: %s"
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "Problem vid sparande av notis. För långt." msgstr "Problem vid sparande av notis. För långt."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Problem vid sparande av notis. Okänd användare." msgstr "Problem vid sparande av notis. Okänd användare."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"För många notiser för snabbt; ta en vilopaus och posta igen om ett par " "För många notiser för snabbt; ta en vilopaus och posta igen om ett par "
"minuter." "minuter."
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
@ -4466,38 +4476,57 @@ msgstr ""
"För många duplicerade meddelanden för snabbt; ta en vilopaus och posta igen " "För många duplicerade meddelanden för snabbt; ta en vilopaus och posta igen "
"om ett par minuter." "om ett par minuter."
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Du är utestängd från att posta notiser på denna webbplats." msgstr "Du är utestängd från att posta notiser på denna webbplats."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Problem med att spara notis." msgstr "Problem med att spara notis."
#: classes/Notice.php:788 #: classes/Notice.php:882
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Problem med att spara gruppinkorg." msgstr "Problem med att spara gruppinkorg."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Databasfel vid infogning av svar: %s"
#: 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"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr "Du har blivit utestängd från att prenumerera."
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr "Redan prenumerant!"
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "Användaren har blockerat dig."
#: classes/Subscription.php:157
msgid "Not subscribed!"
msgstr "Inte prenumerant!"
#: classes/Subscription.php:163
msgid "Couldn't delete self-subscription."
msgstr "Kunde inte ta bort själv-prenumeration."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Kunde inte ta bort prenumeration."
#: classes/User.php:372
#, php-format #, php-format
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "Välkommen till %1$s, @%2$s!" msgstr "Välkommen till %1$s, @%2$s!"
#: classes/User_group.php:380 #: classes/User_group.php:423
msgid "Could not create group." msgid "Could not create group."
msgstr "Kunde inte skapa grupp." msgstr "Kunde inte skapa grupp."
#: classes/User_group.php:409 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Kunde inte ställa in gruppmedlemskap." msgstr "Kunde inte ställa in gruppmedlemskap."
@ -4699,26 +4728,38 @@ msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
"Innehåll och data copyright av medarbetare. Alla rättigheter reserverade." "Innehåll och data copyright av medarbetare. Alla rättigheter reserverade."
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "Alla " msgstr "Alla "
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "licens." msgstr "licens."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "Numrering av sidor" msgstr "Numrering av sidor"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "Senare" msgstr "Senare"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "Tidigare" msgstr "Tidigare"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "Du kan inte göra förändringar av denna webbplats." msgstr "Du kan inte göra förändringar av denna webbplats."
@ -5016,81 +5057,91 @@ msgstr "Fel vid sparande av notis."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "Ange namnet på användaren att prenumerara på" msgstr "Ange namnet på användaren att prenumerara på"
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "Ingen sådan användare."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "Prenumerar på %s" msgstr "Prenumerar på %s"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "Ange namnet på användaren att avsluta prenumeration på" msgstr "Ange namnet på användaren att avsluta prenumeration på"
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "Prenumeration hos %s avslutad" msgstr "Prenumeration hos %s avslutad"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "Kommando inte implementerat än." msgstr "Kommando inte implementerat än."
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "Notifikation av." msgstr "Notifikation av."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "Kan inte sätta på notifikation." msgstr "Kan inte sätta på notifikation."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "Notifikation på." msgstr "Notifikation på."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "Kan inte stänga av notifikation." msgstr "Kan inte stänga av notifikation."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "Inloggningskommando är inaktiverat" msgstr "Inloggningskommando är inaktiverat"
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
"Denna länk är endast användbar en gång, och gäller bara i 2 minuter: %s" "Denna länk är endast användbar en gång, och gäller bara i 2 minuter: %s"
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Prenumeration hos %s avslutad"
#: lib/command.php:709
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "Du prenumererar inte på någon." msgstr "Du prenumererar inte på någon."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Du prenumererar på denna person:" msgstr[0] "Du prenumererar på denna person:"
msgstr[1] "Du prenumererar på dessa personer:" msgstr[1] "Du prenumererar på dessa personer:"
#: lib/command.php:690 #: lib/command.php:731
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Ingen prenumerar på dig." msgstr "Ingen prenumerar på dig."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Denna person prenumererar på dig:" msgstr[0] "Denna person prenumererar på dig:"
msgstr[1] "Dessa personer prenumererar på dig:" msgstr[1] "Dessa personer prenumererar på dig:"
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "Du är inte medlem i några grupper." msgstr "Du är inte medlem i några grupper."
#: lib/command.php:714 #: lib/command.php:755
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 är en medlem i denna grupp:" msgstr[0] "Du är en medlem i denna grupp:"
msgstr[1] "Du är en medlem i dessa grupper:" msgstr[1] "Du är en medlem i dessa grupper:"
#: lib/command.php:728 #: lib/command.php:769
#, fuzzy
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5104,6 +5155,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5168,19 +5220,19 @@ msgstr ""
"tracks - inte implementerat än.\n" "tracks - inte implementerat än.\n"
"tracking - inte implementerat än.\n" "tracking - inte implementerat än.\n"
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Ingen konfigurationsfil hittades. " msgstr "Ingen konfigurationsfil hittades. "
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "Jag letade efter konfigurationsfiler på följande platser: " msgstr "Jag letade efter konfigurationsfiler på följande platser: "
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "Du kanske vill köra installeraren för att åtgärda detta." msgstr "Du kanske vill köra installeraren för att åtgärda detta."
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Gå till installeraren." msgstr "Gå till installeraren."
@ -5673,7 +5725,7 @@ msgstr ""
"engagera andra användare i konversationen. Folk kan skicka meddelanden till " "engagera andra användare i konversationen. Folk kan skicka meddelanden till "
"dig som bara du ser." "dig som bara du ser."
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "från" msgstr "från"
@ -5799,48 +5851,48 @@ msgstr ""
"Tyvärr, hämtning av din geografiska plats tar längre tid än förväntat, var " "Tyvärr, hämtning av din geografiska plats tar längre tid än förväntat, var "
"god försök igen senare" "god försök igen senare"
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "N" msgstr "N"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "S" msgstr "S"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "Ö" msgstr "Ö"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "V" msgstr "V"
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "på" msgstr "på"
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "i sammanhang" msgstr "i sammanhang"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "Upprepad av" msgstr "Upprepad av"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Svara på denna notis" msgstr "Svara på denna notis"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "Svara" msgstr "Svara"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Notis upprepad" msgstr "Notis upprepad"
@ -5872,10 +5924,6 @@ msgstr "Fel vid infogning av fjärrprofilen"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Duplicerad notis" msgstr "Duplicerad notis"
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr "Du har blivit utestängd från att prenumerera."
#: lib/oauthstore.php:490 #: 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."
@ -6052,34 +6100,6 @@ msgstr "Personer som prenumererar på %s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "Grupper %s är en medlem i" msgstr "Grupper %s är en medlem i"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr "Redan prenumerant!"
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "Användaren har blockerat dig."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "Kunde inte prenumerera."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "Kunde inte göra andra till prenumeranter hos dig."
#: lib/subs.php:137
msgid "Not subscribed!"
msgstr "Inte prenumerant!"
#: lib/subs.php:142
msgid "Couldn't delete self-subscription."
msgstr "Kunde inte ta bort själv-prenumeration."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Kunde inte ta bort prenumeration."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6130,67 +6150,67 @@ msgstr "Redigera avatar"
msgid "User actions" msgid "User actions"
msgstr "Åtgärder för användare" msgstr "Åtgärder för användare"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Redigera profilinställningar" msgstr "Redigera profilinställningar"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "Redigera" msgstr "Redigera"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Skicka ett direktmeddelande till denna användare" msgstr "Skicka ett direktmeddelande till denna användare"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Meddelande" msgstr "Meddelande"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "Moderera" msgstr "Moderera"
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "ett par sekunder sedan" msgstr "ett par sekunder sedan"
#: lib/util.php:872 #: lib/util.php:954
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:874 #: lib/util.php:956
#, 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:876 #: lib/util.php:958
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:878 #: lib/util.php:960
#, 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:880 #: lib/util.php:962
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:882 #: lib/util.php:964
#, 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:884 #: lib/util.php:966
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:886 #: lib/util.php:968
#, 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:888 #: lib/util.php:970
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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:16:03+0000\n" "PO-Revision-Date: 2010-02-24 23:51:47+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -62,7 +62,7 @@ msgstr "కొత్త నమోదులను అచేతనంచేయి.
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -101,7 +101,6 @@ msgstr "అటువంటి పేజీ లేదు"
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "అటువంటి వాడుకరి లేరు." msgstr "అటువంటి వాడుకరి లేరు."
@ -163,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 ""
@ -185,12 +184,12 @@ msgstr ""
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "నిర్ధారణ సంకేతం కనబడలేదు." msgstr "నిర్ధారణ సంకేతం కనబడలేదు."
@ -494,7 +493,7 @@ msgstr "తప్పుడు పరిమాణం."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -633,7 +632,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
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s updates favorited by %2$s / %2$s." msgid "%1$s updates favorited by %2$s / %2$s."
msgstr "%s యొక్క మైక్రోబ్లాగు" msgstr "%s యొక్క మైక్రోబ్లాగు"
@ -644,7 +643,7 @@ msgstr "%s యొక్క మైక్రోబ్లాగు"
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!"
@ -660,12 +659,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 "అందరి నుండి %s తాజాకరణలు!" msgstr "అందరి నుండి %s తాజాకరణలు!"
@ -675,7 +674,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 యొక్క పునరావృతాలు"
@ -685,7 +684,7 @@ msgstr "%s యొక్క పునరావృతాలు"
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
#, fuzzy, php-format #, fuzzy, php-format
msgid "Updates tagged with %1$s on %2$s!" msgid "Updates tagged with %1$s on %2$s!"
msgstr "%s యొక్క మైక్రోబ్లాగు" msgstr "%s యొక్క మైక్రోబ్లాగు"
@ -747,7 +746,7 @@ msgid "Preview"
msgstr "మునుజూపు" msgstr "మునుజూపు"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "తొలగించు" msgstr "తొలగించు"
@ -927,7 +926,7 @@ msgstr "మీరు ఈ ఉపకరణం యొక్క యజమాని
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -955,7 +954,7 @@ 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -984,7 +983,7 @@ msgstr "మీరు నిజంగానే ఈ నోటీసుని త
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "ఈ నోటీసుని తొలగించకు" msgstr "ఈ నోటీసుని తొలగించకు"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "ఈ నోటీసుని తొలగించు" msgstr "ఈ నోటీసుని తొలగించు"
@ -1227,7 +1226,7 @@ msgstr "వివరణ చాలా పెద్దదిగా ఉంది (1
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:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "మారుపేర్లని సృష్టించలేకపోయాం." msgstr "మారుపేర్లని సృష్టించలేకపోయాం."
@ -2247,7 +2246,7 @@ msgid "Only "
msgstr "మాత్రమే " msgstr "మాత్రమే "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -2694,24 +2693,24 @@ msgstr "భాష మరీ పెద్దగా ఉంది (50 అక్ష
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "'%s' అనే హోమ్ పేజీ సరైనదికాదు" msgstr "'%s' అనే హోమ్ పేజీ సరైనదికాదు"
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
#, fuzzy #, fuzzy
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "ట్యాగులని భద్రపరచలేకున్నాం." msgstr "ట్యాగులని భద్రపరచలేకున్నాం."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం." msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "ట్యాగులని భద్రపరచలేకున్నాం." msgstr "ట్యాగులని భద్రపరచలేకున్నాం."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "అమరికలు భద్రమయ్యాయి." msgstr "అమరికలు భద్రమయ్యాయి."
@ -3084,7 +3083,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "" msgstr ""
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "చందాచేరు" msgstr "చందాచేరు"
@ -3123,7 +3122,7 @@ msgstr "ఈ లైసెన్సుకి అంగీకరించకపో
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "మీరు ఇప్పటికే ఆ వాడుకరిని నిరోధించారు." msgstr "మీరు ఇప్పటికే ఆ వాడుకరిని నిరోధించారు."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "సృష్టితం" msgstr "సృష్టితం"
@ -3802,16 +3801,26 @@ msgstr ""
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "" msgstr ""
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
#, fuzzy #, fuzzy
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "చందాని సృష్టించలేకపోయాం." msgstr "చందాని సృష్టించలేకపోయాం."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "స్థానిక వాడుకరి కాదు." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "అటువంటి ఫైలు లేదు."
#: actions/subscribe.php:117
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
#: actions/subscribe.php:145
#, fuzzy #, fuzzy
msgid "Subscribed" msgid "Subscribed"
msgstr "చందాదార్లు" msgstr "చందాదార్లు"
@ -3873,7 +3882,7 @@ msgstr ""
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "" msgstr ""
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -3883,16 +3892,16 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "" msgstr ""
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "జాబర్" msgstr "జాబర్"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "" msgstr ""
@ -4291,60 +4300,81 @@ msgstr ""
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "" msgstr ""
#: classes/Notice.php:214 #: classes/Notice.php:222
#, fuzzy #, fuzzy
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు."
#: classes/Notice.php:218 #: classes/Notice.php:226
#, fuzzy #, fuzzy
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "ఈ సైటులో నోటీసులు రాయడం నుండి మిమ్మల్ని నిషేధించారు." msgstr "ఈ సైటులో నోటీసులు రాయడం నుండి మిమ్మల్ని నిషేధించారు."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు."
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy #, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr ""
#: 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)"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr "చందాచేరడం నుండి మిమ్మల్ని నిషేధించారు."
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr "ఇప్పటికే చందాచేరారు!"
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "వాడుకరి మిమ్మల్ని నిరోధించారు."
#: classes/Subscription.php:157
#, fuzzy
msgid "Not subscribed!"
msgstr "చందాదార్లు"
#: classes/Subscription.php:163
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "చందాని తొలగించలేకపోయాం."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "చందాని తొలగించలేకపోయాం."
#: classes/User.php:372
#, php-format #, php-format
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "@%2$s, %1$sకి స్వాగతం!" msgstr "@%2$s, %1$sకి స్వాగతం!"
#: classes/User_group.php:380 #: classes/User_group.php:423
msgid "Could not create group." msgid "Could not create group."
msgstr "గుంపుని సృష్టించలేకపోయాం." msgstr "గుంపుని సృష్టించలేకపోయాం."
#: classes/User_group.php:409 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "గుంపు సభ్యత్వాన్ని అమర్చలేకపోయాం." msgstr "గుంపు సభ్యత్వాన్ని అమర్చలేకపోయాం."
@ -4549,26 +4579,38 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "అన్నీ " msgstr "అన్నీ "
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "పేజీకరణ" msgstr "పేజీకరణ"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "తర్వాత" msgstr "తర్వాత"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "ఇంతక్రితం" msgstr "ఇంతక్రితం"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "ఈ సైటుకి మీరు మార్పులు చేయలేరు." msgstr "ఈ సైటుకి మీరు మార్పులు చేయలేరు."
@ -4875,80 +4917,89 @@ msgstr "సందేశాన్ని భద్రపరచడంలో పొ
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "ఏవరికి చందా చేరాలనుకుంటున్నారో ఆ వాడుకరి పేరు తెలియజేయండి" msgstr "ఏవరికి చందా చేరాలనుకుంటున్నారో ఆ వాడుకరి పేరు తెలియజేయండి"
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "అటువంటి వాడుకరి లేరు"
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "%sకి చందా చేరారు" msgstr "%sకి చందా చేరారు"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "ఎవరి నుండి చందా విరమించాలనుకుంటున్నారో ఆ వాడుకరి పేరు తెలియజేయండి" msgstr "ఎవరి నుండి చందా విరమించాలనుకుంటున్నారో ఆ వాడుకరి పేరు తెలియజేయండి"
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "%s నుండి చందా విరమించారు" msgstr "%s నుండి చందా విరమించారు"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "" msgstr ""
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "" msgstr ""
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "" msgstr ""
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "" msgstr ""
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "" msgstr ""
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "ఈ లంకెని ఒకే సారి ఉపయోగించగలరు, మరియు అది పనిచేసేది 2 నిమిషాలు మాత్రమే: %s" msgstr "ఈ లంకెని ఒకే సారి ఉపయోగించగలరు, మరియు అది పనిచేసేది 2 నిమిషాలు మాత్రమే: %s"
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "%s నుండి చందా విరమించారు"
#: lib/command.php:709
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "మీరు ఎవరికీ చందాచేరలేదు." msgstr "మీరు ఎవరికీ చందాచేరలేదు."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "%sకి స్పందనలు" msgstr[0] "%sకి స్పందనలు"
msgstr[1] "%sకి స్పందనలు" msgstr[1] "%sకి స్పందనలు"
#: lib/command.php:690 #: lib/command.php:731
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "మీకు చందాదార్లు ఎవరూ లేరు." msgstr "మీకు చందాదార్లు ఎవరూ లేరు."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "%sకి స్పందనలు" msgstr[0] "%sకి స్పందనలు"
msgstr[1] "%sకి స్పందనలు" msgstr[1] "%sకి స్పందనలు"
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "మీరు ఏ గుంపులోనూ సభ్యులు కాదు." msgstr "మీరు ఏ గుంపులోనూ సభ్యులు కాదు."
#: lib/command.php:714 #: lib/command.php:755
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] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" msgstr[0] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!"
msgstr[1] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!" msgstr[1] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!"
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -4962,6 +5013,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -4989,20 +5041,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "నిర్ధారణ సంకేతం లేదు." msgstr "నిర్ధారణ సంకేతం లేదు."
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""
@ -5434,7 +5486,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "నుండి" msgstr "నుండి"
@ -5558,49 +5610,49 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "ఉ" msgstr "ఉ"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "ద" msgstr "ద"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "తూ" msgstr "తూ"
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "ప" msgstr "ప"
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "సందర్భంలో" msgstr "సందర్భంలో"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "సృష్టితం" msgstr "సృష్టితం"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "ఈ నోటీసుపై స్పందించండి" msgstr "ఈ నోటీసుపై స్పందించండి"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "స్పందించండి" msgstr "స్పందించండి"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "నోటీసుని తొలగించాం." msgstr "నోటీసుని తొలగించాం."
@ -5635,10 +5687,6 @@ msgstr "దూరపు ప్రొపైలుని చేర్చటంల
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "కొత్త సందేశం" msgstr "కొత్త సందేశం"
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr "చందాచేరడం నుండి మిమ్మల్ని నిషేధించారు."
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "" msgstr ""
@ -5821,36 +5869,6 @@ msgstr "%sకి చందాచేరిన వ్యక్తులు"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "%s సభ్యులుగా ఉన్న గుంపులు" msgstr "%s సభ్యులుగా ఉన్న గుంపులు"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr "ఇప్పటికే చందాచేరారు!"
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "వాడుకరి మిమ్మల్ని నిరోధించారు."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "చందా చేర్చలేకపోయాం."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr ""
#: lib/subs.php:137
#, fuzzy
msgid "Not subscribed!"
msgstr "చందాదార్లు"
#: lib/subs.php:142
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "చందాని తొలగించలేకపోయాం."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "చందాని తొలగించలేకపోయాం."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -5903,68 +5921,68 @@ msgstr "అవతారాన్ని మార్చు"
msgid "User actions" msgid "User actions"
msgstr "వాడుకరి చర్యలు" msgstr "వాడుకరి చర్యలు"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
#, fuzzy #, fuzzy
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "ఫ్రొఫైలు అమరికలు" msgstr "ఫ్రొఫైలు అమరికలు"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "మార్చు" msgstr "మార్చు"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "ఈ వాడుకరికి ఒక నేరు సందేశాన్ని పంపించండి" msgstr "ఈ వాడుకరికి ఒక నేరు సందేశాన్ని పంపించండి"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "సందేశం" msgstr "సందేశం"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "కొన్ని క్షణాల క్రితం" msgstr "కొన్ని క్షణాల క్రితం"
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "ఓ నిమిషం క్రితం" msgstr "ఓ నిమిషం క్రితం"
#: lib/util.php:874 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "%d నిమిషాల క్రితం" msgstr "%d నిమిషాల క్రితం"
#: lib/util.php:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "ఒక గంట క్రితం" msgstr "ఒక గంట క్రితం"
#: lib/util.php:878 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "%d గంటల క్రితం" msgstr "%d గంటల క్రితం"
#: lib/util.php:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "ఓ రోజు క్రితం" msgstr "ఓ రోజు క్రితం"
#: lib/util.php:882 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "%d రోజుల క్రితం" msgstr "%d రోజుల క్రితం"
#: lib/util.php:884 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "ఓ నెల క్రితం" msgstr "ఓ నెల క్రితం"
#: lib/util.php:886 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "%d నెలల క్రితం" msgstr "%d నెలల క్రితం"
#: lib/util.php:888 #: lib/util.php:970
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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:16:08+0000\n" "PO-Revision-Date: 2010-02-24 23:51:50+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -66,7 +66,7 @@ msgstr ""
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -106,7 +106,6 @@ msgstr "Böyle bir durum mesajı yok."
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Böyle bir kullanıcı yok." msgstr "Böyle bir kullanıcı yok."
@ -169,8 +168,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "%s ve arkadaşları" msgstr "%s ve arkadaşları"
#: 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 ""
@ -191,12 +190,12 @@ msgstr ""
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "Onay kodu bulunamadı." msgstr "Onay kodu bulunamadı."
@ -509,7 +508,7 @@ msgstr "Geçersiz büyüklük."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -655,7 +654,7 @@ msgstr "Desteklenmeyen görüntü dosyası biçemi."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%1$s'in %2$s'deki durum mesajları " msgstr "%1$s'in %2$s'deki durum mesajları "
#: actions/apitimelinefavorites.php:120 #: actions/apitimelinefavorites.php:117
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s updates favorited by %2$s / %2$s." msgid "%1$s updates favorited by %2$s / %2$s."
msgstr "%s adli kullanicinin durum mesajlari" msgstr "%s adli kullanicinin durum mesajlari"
@ -666,7 +665,7 @@ msgstr "%s adli kullanicinin durum mesajlari"
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!"
@ -682,12 +681,12 @@ msgstr "%1$s'in %2$s'deki durum mesajları "
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 ""
@ -697,7 +696,7 @@ msgstr ""
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "%s için cevaplar" msgstr "%s için cevaplar"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, fuzzy, php-format #, fuzzy, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "%s için cevaplar" msgstr "%s için cevaplar"
@ -707,7 +706,7 @@ msgstr "%s için cevaplar"
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
#, fuzzy, php-format #, fuzzy, php-format
msgid "Updates tagged with %1$s on %2$s!" msgid "Updates tagged with %1$s on %2$s!"
msgstr "%s adli kullanicinin durum mesajlari" msgstr "%s adli kullanicinin durum mesajlari"
@ -771,7 +770,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -962,7 +961,7 @@ msgstr "Bize o profili yollamadınız"
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -991,7 +990,7 @@ msgstr "Kendinizi ve ilgi alanlarınızı 140 karakter ile anlatın"
#: 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -1021,7 +1020,7 @@ msgstr ""
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Böyle bir durum mesajı yok." msgstr "Böyle bir durum mesajı yok."
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "" msgstr ""
@ -1280,7 +1279,7 @@ msgstr "Hakkında bölümü çok uzun (azm 140 karakter)."
msgid "Could not update group." msgid "Could not update group."
msgstr "Kullanıcı güncellenemedi." msgstr "Kullanıcı güncellenemedi."
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:433
#, fuzzy #, fuzzy
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Avatar bilgisi kaydedilemedi" msgstr "Avatar bilgisi kaydedilemedi"
@ -2334,7 +2333,7 @@ msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -2794,25 +2793,25 @@ msgstr ""
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "%s Geçersiz başlangıç sayfası" msgstr "%s Geçersiz başlangıç sayfası"
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
#, fuzzy #, fuzzy
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Profil kaydedilemedi." msgstr "Profil kaydedilemedi."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Profil kaydedilemedi." msgstr "Profil kaydedilemedi."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
#, fuzzy #, fuzzy
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Profil kaydedilemedi." msgstr "Profil kaydedilemedi."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Ayarlar kaydedildi." msgstr "Ayarlar kaydedildi."
@ -3177,7 +3176,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "" msgstr ""
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Abone ol" msgstr "Abone ol"
@ -3217,7 +3216,7 @@ msgstr "Eğer lisansı kabul etmezseniz kayıt olamazsınız."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Zaten giriş yapmış durumdasıznız!" msgstr "Zaten giriş yapmış durumdasıznız!"
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Yarat" msgstr "Yarat"
@ -3905,17 +3904,27 @@ msgstr ""
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "Bize o profili yollamadınız" msgstr "Bize o profili yollamadınız"
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
#, fuzzy #, fuzzy
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Abonelik oluşturulamadı." msgstr "Abonelik oluşturulamadı."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
#, fuzzy msgid "This action only accepts POST requests."
msgid "Not a local user." msgstr ""
msgstr "Böyle bir kullanıcı yok."
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Böyle bir durum mesajı yok."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Bize o profili yollamadınız"
#: actions/subscribe.php:145
#, fuzzy #, fuzzy
msgid "Subscribed" msgid "Subscribed"
msgstr "Abone ol" msgstr "Abone ol"
@ -3976,7 +3985,7 @@ msgstr "Sizin durumlarını takip ettiğiniz kullanıcılar"
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "%s adlı kullanıcının durumlarını takip ettiği kullanıcılar" msgstr "%s adlı kullanıcının durumlarını takip ettiği kullanıcılar"
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -3986,17 +3995,17 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, fuzzy, php-format #, fuzzy, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%1$s %2$s'da durumunuzu takip ediyor" msgstr "%1$s %2$s'da durumunuzu takip ediyor"
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
#, fuzzy #, fuzzy
msgid "Jabber" msgid "Jabber"
msgstr "JabberID yok." msgstr "JabberID yok."
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "" msgstr ""
@ -4413,61 +4422,83 @@ msgstr ""
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "" msgstr ""
#: classes/Notice.php:214 #: classes/Notice.php:222
#, fuzzy #, fuzzy
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "Durum mesajını kaydederken hata oluştu." msgstr "Durum mesajını kaydederken hata oluştu."
#: classes/Notice.php:218 #: classes/Notice.php:226
#, fuzzy #, fuzzy
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Durum mesajını kaydederken hata oluştu." msgstr "Durum mesajını kaydederken hata oluştu."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Durum mesajını kaydederken hata oluştu." msgstr "Durum mesajını kaydederken hata oluştu."
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy #, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Durum mesajını kaydederken hata oluştu." msgstr "Durum mesajını kaydederken hata oluştu."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Cevap eklenirken veritabanı hatası: %s"
#: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr ""
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr ""
#: classes/Subscription.php:74
#, fuzzy
msgid "User has blocked you."
msgstr "Kullanıcının profili yok."
#: classes/Subscription.php:157
#, fuzzy
msgid "Not subscribed!"
msgstr "Bu kullanıcıyı zaten takip etmiyorsunuz!"
#: classes/Subscription.php:163
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Abonelik silinemedi."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Abonelik silinemedi."
#: classes/User.php:372
#, php-format #, php-format
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:423
#, fuzzy #, fuzzy
msgid "Could not create group." msgid "Could not create group."
msgstr "Avatar bilgisi kaydedilemedi" msgstr "Avatar bilgisi kaydedilemedi"
#: classes/User_group.php:409 #: classes/User_group.php:452
#, fuzzy #, fuzzy
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Abonelik oluşturulamadı." msgstr "Abonelik oluşturulamadı."
@ -4679,28 +4710,40 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1139 #: lib/action.php:1141
#, fuzzy #, fuzzy
msgid "After" msgid "After"
msgstr "« Sonra" msgstr "« Sonra"
#: lib/action.php:1147 #: lib/action.php:1149
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "Önce »" msgstr "Önce »"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "" msgstr ""
@ -5013,80 +5056,90 @@ msgstr "Durum mesajını kaydederken hata oluştu."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "" msgstr ""
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
#, fuzzy
msgid "No such user"
msgstr "Böyle bir kullanıcı yok."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "" msgstr ""
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "" msgstr ""
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "" msgstr ""
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "" msgstr ""
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "" msgstr ""
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "" msgstr ""
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "" msgstr ""
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "" msgstr ""
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Aboneliği sonlandır"
#: lib/command.php:709
#, fuzzy #, fuzzy
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "Bize o profili yollamadınız" msgstr "Bize o profili yollamadınız"
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Bize o profili yollamadınız" msgstr[0] "Bize o profili yollamadınız"
#: lib/command.php:690 #: lib/command.php:731
#, fuzzy #, fuzzy
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Uzaktan abonelik" msgstr "Uzaktan abonelik"
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Uzaktan abonelik" msgstr[0] "Uzaktan abonelik"
#: lib/command.php:712 #: lib/command.php:753
#, fuzzy #, fuzzy
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "Bize o profili yollamadınız" msgstr "Bize o profili yollamadınız"
#: lib/command.php:714 #: lib/command.php:755
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] "Bize o profili yollamadınız" msgstr[0] "Bize o profili yollamadınız"
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5100,6 +5153,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5127,20 +5181,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Onay kodu yok." msgstr "Onay kodu yok."
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""
@ -5569,7 +5623,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "" msgstr ""
@ -5694,51 +5748,51 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:547 #: lib/noticelist.php:558
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "İçerik yok!" msgstr "İçerik yok!"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Yarat" msgstr "Yarat"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:599 #: lib/noticelist.php:611
#, fuzzy #, fuzzy
msgid "Reply" msgid "Reply"
msgstr "cevapla" msgstr "cevapla"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Durum mesajları" msgstr "Durum mesajları"
@ -5772,10 +5826,6 @@ msgstr "Uzak profil eklemede hata oluştu"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Yeni durum mesajı" msgstr "Yeni durum mesajı"
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr ""
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Yeni abonelik eklenemedi." msgstr "Yeni abonelik eklenemedi."
@ -5962,37 +6012,6 @@ msgstr "Uzaktan abonelik"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "" msgstr ""
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr ""
#: lib/subs.php:56
#, fuzzy
msgid "User has blocked you."
msgstr "Kullanıcının profili yok."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr ""
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr ""
#: lib/subs.php:137
#, fuzzy
msgid "Not subscribed!"
msgstr "Bu kullanıcıyı zaten takip etmiyorsunuz!"
#: lib/subs.php:142
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Abonelik silinemedi."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Abonelik silinemedi."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6046,68 +6065,68 @@ msgstr "Avatar"
msgid "User actions" msgid "User actions"
msgstr "" msgstr ""
#: lib/userprofile.php:248 #: lib/userprofile.php:251
#, fuzzy #, fuzzy
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Profil ayarları" msgstr "Profil ayarları"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "" msgstr ""
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "" msgstr ""
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "birkaç saniye önce" msgstr "birkaç saniye önce"
#: lib/util.php:872 #: lib/util.php:954
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:874 #: lib/util.php:956
#, 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:876 #: lib/util.php:958
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:878 #: lib/util.php:960
#, 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:880 #: lib/util.php:962
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:882 #: lib/util.php:964
#, 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:884 #: lib/util.php:966
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:886 #: lib/util.php:968
#, 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:888 #: lib/util.php:970
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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:16:16+0000\n" "PO-Revision-Date: 2010-02-24 23:51:53+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -65,7 +65,7 @@ msgstr "Скасувати подальшу регістрацію."
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -103,7 +103,6 @@ msgstr "Немає такої сторінки"
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Такого користувача немає." msgstr "Такого користувача немає."
@ -171,8 +170,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!"
@ -193,12 +192,12 @@ msgstr "Оновлення від %1$s та друзів на %2$s!"
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
msgid "API method not found." msgid "API method not found."
msgstr "API метод не знайдено." msgstr "API метод не знайдено."
@ -500,7 +499,7 @@ msgstr "Невірний токен."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -646,7 +645,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."
@ -657,7 +656,7 @@ msgstr "%1$s оновлення обраних від %2$s / %2$s."
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!"
@ -673,12 +672,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 оновлення від усіх!"
@ -688,7 +687,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"
@ -698,7 +697,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!"
@ -759,7 +758,7 @@ msgid "Preview"
msgstr "Перегляд" msgstr "Перегляд"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "Видалити" msgstr "Видалити"
@ -940,7 +939,7 @@ msgstr "Ви не є власником цього додатку."
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Виникли певні проблеми з токеном поточної сесії." msgstr "Виникли певні проблеми з токеном поточної сесії."
@ -969,7 +968,7 @@ 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -998,7 +997,7 @@ msgstr "Ви впевненні, що бажаєте видалити цей д
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Не видаляти цей допис" msgstr "Не видаляти цей допис"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Видалити допис" msgstr "Видалити допис"
@ -1239,7 +1238,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:433
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Неможна призначити додаткові імена." msgstr "Неможна призначити додаткові імена."
@ -2324,7 +2323,7 @@ msgid "Only "
msgstr "Лише " msgstr "Лише "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "Такий формат даних не підтримується." msgstr "Такий формат даних не підтримується."
@ -2766,23 +2765,23 @@ msgstr "Мова задовга (50 знаків максимум)."
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Недійсний теґ: \"%s\"" msgstr "Недійсний теґ: \"%s\""
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Не вдалося оновити користувача для автопідписки." msgstr "Не вдалося оновити користувача для автопідписки."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Не вдалося зберегти налаштування розташування." msgstr "Не вдалося зберегти налаштування розташування."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Не вдалося зберегти профіль." msgstr "Не вдалося зберегти профіль."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Не вдалося зберегти теґи." msgstr "Не вдалося зберегти теґи."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Налаштування збережено." msgstr "Налаштування збережено."
@ -3179,7 +3178,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "URL-адреса Вашого профілю на іншому сумісному сервісі" msgstr "URL-адреса Вашого профілю на іншому сумісному сервісі"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Підписатись" msgstr "Підписатись"
@ -3216,7 +3215,7 @@ msgstr "Ви не можете вторувати своїм власним до
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Ви вже вторували цьому допису." msgstr "Ви вже вторували цьому допису."
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
msgid "Repeated" msgid "Repeated"
msgstr "Вторування" msgstr "Вторування"
@ -3928,15 +3927,26 @@ msgstr "Код не введено"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "Ви не підписані до цього профілю." msgstr "Ви не підписані до цього профілю."
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Не вдалося зберегти підписку." msgstr "Не вдалося зберегти підписку."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
msgid "Not a local user." msgid "This action only accepts POST requests."
msgstr "Такого користувача немає." msgstr ""
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Такого файлу немає."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Ви не підписані до цього профілю."
#: actions/subscribe.php:145
msgid "Subscribed" msgid "Subscribed"
msgstr "Підписані" msgstr "Підписані"
@ -4000,7 +4010,7 @@ msgstr "Тут представлені ті, за чиїми дописами
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "Тут представлені ті, за чиїми дописами слідкує %s." msgstr "Тут представлені ті, за чиїми дописами слідкує %s."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4016,16 +4026,16 @@ msgstr ""
"action.twittersettings%%), то можете автоматично підписатись до людей, за " "action.twittersettings%%), то можете автоматично підписатись до людей, за "
"якими слідкуєте там." "якими слідкуєте там."
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%s не відслідковує нічого" msgstr "%s не відслідковує нічого"
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
msgid "Jabber" msgid "Jabber"
msgstr "Jabber" msgstr "Jabber"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "СМС" msgstr "СМС"
@ -4450,22 +4460,22 @@ msgstr "Не можна оновити повідомлення з новим UR
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "Помилка бази даних при додаванні теґу: %s" msgstr "Помилка бази даних при додаванні теґу: %s"
#: classes/Notice.php:214 #: classes/Notice.php:222
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "Проблема при збереженні допису. Надто довге." msgstr "Проблема при збереженні допису. Надто довге."
#: classes/Notice.php:218 #: classes/Notice.php:226
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Проблема при збереженні допису. Невідомий користувач." msgstr "Проблема при збереженні допису. Невідомий користувач."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
"Дуже багато дописів за короткий термін; ходіть подихайте повітрям і " "Дуже багато дописів за короткий термін; ходіть подихайте повітрям і "
"повертайтесь за кілька хвилин." "повертайтесь за кілька хвилин."
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
@ -4473,38 +4483,57 @@ msgstr ""
"Дуже багато повідомлень за короткий термін; ходіть подихайте повітрям і " "Дуже багато повідомлень за короткий термін; ходіть подихайте повітрям і "
"повертайтесь за кілька хвилин." "повертайтесь за кілька хвилин."
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Вам заборонено надсилати дописи до цього сайту." msgstr "Вам заборонено надсилати дописи до цього сайту."
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Проблема при збереженні допису." msgstr "Проблема при збереженні допису."
#: classes/Notice.php:788 #: classes/Notice.php:882
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Проблема при збереженні вхідних дописів для групи." msgstr "Проблема при збереженні вхідних дописів для групи."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Помилка бази даних при додаванні відповіді: %s"
#: 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"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr "Вас позбавлено можливості підписатись."
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr "Вже підписаний!"
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr "Користувач заблокував Вас."
#: classes/Subscription.php:157
msgid "Not subscribed!"
msgstr "Не підписано!"
#: classes/Subscription.php:163
msgid "Couldn't delete self-subscription."
msgstr "Не можу видалити самопідписку."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Не вдалося видалити підписку."
#: classes/User.php:372
#, php-format #, php-format
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:423
msgid "Could not create group." msgid "Could not create group."
msgstr "Не вдалося створити нову групу." msgstr "Не вдалося створити нову групу."
#: classes/User_group.php:409 #: classes/User_group.php:452
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Не вдалося встановити членство." msgstr "Не вдалося встановити членство."
@ -4706,26 +4735,38 @@ msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
"Авторські права на зміст і дані належать розробникам. Всі права захищено." "Авторські права на зміст і дані належать розробникам. Всі права захищено."
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "Всі " msgstr "Всі "
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "ліцензія." msgstr "ліцензія."
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "Нумерація сторінок" msgstr "Нумерація сторінок"
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "Вперед" msgstr "Вперед"
#: lib/action.php:1147 #: lib/action.php:1149
msgid "Before" msgid "Before"
msgstr "Назад" msgstr "Назад"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "Ви не можете щось змінювати на цьому сайті." msgstr "Ви не можете щось змінювати на цьому сайті."
@ -5023,84 +5064,94 @@ msgstr "Проблема при збереженні допису."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "Зазначте ім’я користувача, до якого бажаєте підписатись" msgstr "Зазначте ім’я користувача, до якого бажаєте підписатись"
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "Такого користувача немає."
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "Підписано до %s" msgstr "Підписано до %s"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "Зазначте ім’я користувача, від якого бажаєте відписатись" msgstr "Зазначте ім’я користувача, від якого бажаєте відписатись"
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "Відписано від %s" msgstr "Відписано від %s"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "Виконання команди ще не завершено." msgstr "Виконання команди ще не завершено."
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "Сповіщення вимкнуто." msgstr "Сповіщення вимкнуто."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "Не можна вимкнути сповіщення." msgstr "Не можна вимкнути сповіщення."
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "Сповіщення увімкнуто." msgstr "Сповіщення увімкнуто."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "Не можна увімкнути сповіщення." msgstr "Не можна увімкнути сповіщення."
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "Команду входу відключено" msgstr "Команду входу відключено"
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
"Це посилання можна використати лише раз, воно дійсне протягом 2 хвилин: %s" "Це посилання можна використати лише раз, воно дійсне протягом 2 хвилин: %s"
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Відписано від %s"
#: lib/command.php:709
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "Ви не маєте жодних підписок." msgstr "Ви не маєте жодних підписок."
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Ви підписані до цієї особи:" msgstr[0] "Ви підписані до цієї особи:"
msgstr[1] "Ви підписані до цих людей:" msgstr[1] "Ви підписані до цих людей:"
msgstr[2] "Ви підписані до цих людей:" msgstr[2] "Ви підписані до цих людей:"
#: lib/command.php:690 #: lib/command.php:731
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "До Вас ніхто не підписаний." msgstr "До Вас ніхто не підписаний."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Ця особа є підписаною до Вас:" msgstr[0] "Ця особа є підписаною до Вас:"
msgstr[1] "Ці люди підписані до Вас:" msgstr[1] "Ці люди підписані до Вас:"
msgstr[2] "Ці люди підписані до Вас:" msgstr[2] "Ці люди підписані до Вас:"
#: lib/command.php:712 #: lib/command.php:753
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "Ви не є учасником жодної групи." msgstr "Ви не є учасником жодної групи."
#: lib/command.php:714 #: lib/command.php:755
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] "Ви є учасником групи:" msgstr[0] "Ви є учасником групи:"
msgstr[1] "Ви є учасником таких груп:" msgstr[1] "Ви є учасником таких груп:"
msgstr[2] "Ви є учасником таких груп:" msgstr[2] "Ви є учасником таких груп:"
#: lib/command.php:728 #: lib/command.php:769
#, fuzzy
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5114,6 +5165,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5176,19 +5228,19 @@ msgstr ""
"tracks — наразі не виконується\n" "tracks — наразі не виконується\n"
"tracking — наразі не виконується\n" "tracking — наразі не виконується\n"
#: lib/common.php:135 #: lib/common.php:136
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Файлу конфігурації не знайдено. " msgstr "Файлу конфігурації не знайдено. "
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "Шукав файли конфігурації в цих місцях: " msgstr "Шукав файли конфігурації в цих місцях: "
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "Запустіть файл інсталяції, аби полагодити це." msgstr "Запустіть файл інсталяції, аби полагодити це."
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Іти до файлу інсталяції." msgstr "Іти до файлу інсталяції."
@ -5683,7 +5735,7 @@ msgstr ""
"повідомлення аби долучити користувачів до розмови. Такі повідомлення бачите " "повідомлення аби долучити користувачів до розмови. Такі повідомлення бачите "
"лише Ви." "лише Ви."
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "від" msgstr "від"
@ -5808,48 +5860,48 @@ msgstr ""
"На жаль, отримання інформації щодо Вашого місцезнаходження займе більше " "На жаль, отримання інформації щодо Вашого місцезнаходження займе більше "
"часу, ніж очікувалось; будь ласка, спробуйте пізніше" "часу, ніж очікувалось; будь ласка, спробуйте пізніше"
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "Півн." msgstr "Півн."
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "Півд." msgstr "Півд."
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "Сх." msgstr "Сх."
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "Зах." msgstr "Зах."
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "в" msgstr "в"
#: lib/noticelist.php:547 #: lib/noticelist.php:558
msgid "in context" msgid "in context"
msgstr "в контексті" msgstr "в контексті"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
msgid "Repeated by" msgid "Repeated by"
msgstr "Вторуванні" msgstr "Вторуванні"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Відповісти на цей допис" msgstr "Відповісти на цей допис"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "Відповісти" msgstr "Відповісти"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Допис вторували" msgstr "Допис вторували"
@ -5881,10 +5933,6 @@ msgstr "Помилка при додаванні віддаленого проф
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "Дублікат допису" msgstr "Дублікат допису"
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr "Вас позбавлено можливості підписатись."
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "Не вдалося додати нову підписку." msgstr "Не вдалося додати нову підписку."
@ -6061,34 +6109,6 @@ msgstr "Люди підписані до %s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "%s бере участь в цих групах" msgstr "%s бере участь в цих групах"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr "Вже підписаний!"
#: lib/subs.php:56
msgid "User has blocked you."
msgstr "Користувач заблокував Вас."
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "Невдала підписка."
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "Не вдалося підписати інших до Вас."
#: lib/subs.php:137
msgid "Not subscribed!"
msgstr "Не підписано!"
#: lib/subs.php:142
msgid "Couldn't delete self-subscription."
msgstr "Не можу видалити самопідписку."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Не вдалося видалити підписку."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6139,67 +6159,67 @@ msgstr "Аватара"
msgid "User actions" msgid "User actions"
msgstr "Діяльність користувача" msgstr "Діяльність користувача"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Налаштування профілю" msgstr "Налаштування профілю"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "Правка" msgstr "Правка"
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Надіслати пряме повідомлення цьому користувачеві" msgstr "Надіслати пряме повідомлення цьому користувачеві"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "Повідомлення" msgstr "Повідомлення"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "Модерувати" msgstr "Модерувати"
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "мить тому" msgstr "мить тому"
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "хвилину тому" msgstr "хвилину тому"
#: lib/util.php:874 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "близько %d хвилин тому" msgstr "близько %d хвилин тому"
#: lib/util.php:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "годину тому" msgstr "годину тому"
#: lib/util.php:878 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "близько %d годин тому" msgstr "близько %d годин тому"
#: lib/util.php:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "день тому" msgstr "день тому"
#: lib/util.php:882 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "близько %d днів тому" msgstr "близько %d днів тому"
#: lib/util.php:884 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "місяць тому" msgstr "місяць тому"
#: lib/util.php:886 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "близько %d місяців тому" msgstr "близько %d місяців тому"
#: lib/util.php:888 #: lib/util.php:970
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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:16:19+0000\n" "PO-Revision-Date: 2010-02-24 23:51:57+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -65,7 +65,7 @@ msgstr ""
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -105,7 +105,6 @@ msgstr "Không có tin nhắn nào."
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "Không có user nào." msgstr "Không có user nào."
@ -168,8 +167,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "%s và bạn bè" msgstr "%s và bạn bè"
#: 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 ""
@ -190,12 +189,12 @@ msgstr ""
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 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!"
@ -511,7 +510,7 @@ msgstr "Kích thước không hợp lệ."
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -656,7 +655,7 @@ msgstr "Không hỗ trợ kiểu file ảnh này."
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "Tìm kiếm các tin nhắn ưa thích của %s" msgstr "Tìm kiếm các tin nhắn ưa thích của %s"
#: actions/apitimelinefavorites.php:120 #: actions/apitimelinefavorites.php:117
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s updates favorited by %2$s / %2$s." msgid "%1$s updates favorited by %2$s / %2$s."
msgstr "Tất cả các cập nhật của %s" msgstr "Tất cả các cập nhật của %s"
@ -667,7 +666,7 @@ msgstr "Tất cả các cập nhật của %s"
msgid "%s timeline" msgid "%s timeline"
msgstr "Dòng tin nhắn của %s" msgstr "Dòng tin nhắn của %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!"
@ -683,12 +682,12 @@ msgstr "%1$s / Các cập nhật đang trả lời tới %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 "" msgstr ""
#: actions/apitimelinepublic.php:107 actions/publicrss.php:103 #: actions/apitimelinepublic.php:111 actions/publicrss.php:103
#, fuzzy, php-format #, fuzzy, php-format
msgid "%s public timeline" msgid "%s public timeline"
msgstr "Dòng tin công cộng" msgstr "Dòng tin công cộng"
#: 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 cập nhật từ tất cả mọi người!" msgstr "%s cập nhật từ tất cả mọi người!"
@ -698,7 +697,7 @@ msgstr "%s cập nhật từ tất cả mọi người!"
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "Trả lời cho %s" msgstr "Trả lời cho %s"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, fuzzy, php-format #, fuzzy, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "Trả lời cho %s" msgstr "Trả lời cho %s"
@ -708,7 +707,7 @@ msgstr "Trả lời cho %s"
msgid "Notices tagged with %s" msgid "Notices tagged with %s"
msgstr "Thông báo được gắn thẻ %s" msgstr "Thông báo được gắn thẻ %s"
#: actions/apitimelinetag.php:108 actions/tagrss.php:64 #: actions/apitimelinetag.php:104 actions/tagrss.php:64
#, fuzzy, php-format #, fuzzy, php-format
msgid "Updates tagged with %1$s on %2$s!" msgid "Updates tagged with %1$s on %2$s!"
msgstr "Dòng tin nhắn cho %s" msgstr "Dòng tin nhắn cho %s"
@ -774,7 +773,7 @@ msgid "Preview"
msgstr "Xem trước" msgstr "Xem trước"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
#, fuzzy #, fuzzy
msgid "Delete" msgid "Delete"
msgstr "Xóa tin nhắn" msgstr "Xóa tin nhắn"
@ -966,7 +965,7 @@ msgstr "Bạn chưa cập nhật thông tin riêng"
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
#, fuzzy #, fuzzy
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa." msgstr "Có lỗi xảy ra khi thao tác. Hãy thử lại lần nữa."
@ -996,7 +995,7 @@ msgstr "Xóa tin nhắn"
#: 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -1027,7 +1026,7 @@ msgstr "Bạn có chắc chắn là muốn xóa tin nhắn này không?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Không thể xóa tin nhắn này." msgstr "Không thể xóa tin nhắn này."
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
#, fuzzy #, fuzzy
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Xóa tin nhắn" msgstr "Xóa tin nhắn"
@ -1299,7 +1298,7 @@ msgstr "Lý lịch quá dài (không quá 140 ký tự)"
msgid "Could not update group." msgid "Could not update group."
msgstr "Không thể cập nhật thành viên." msgstr "Không thể cập nhật thành viên."
#: actions/editgroup.php:259 classes/User_group.php:390 #: actions/editgroup.php:259 classes/User_group.php:433
#, fuzzy #, fuzzy
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "Không thể tạo favorite." msgstr "Không thể tạo favorite."
@ -2423,7 +2422,7 @@ msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
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."
@ -2891,26 +2890,26 @@ msgstr "Ngôn ngữ quá dài (tối đa là 50 ký tự)."
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Trang chủ '%s' không hợp lệ" msgstr "Trang chủ '%s' không hợp lệ"
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
#, fuzzy #, fuzzy
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Không thể cập nhật thành viên." msgstr "Không thể cập nhật thành viên."
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
#, fuzzy #, fuzzy
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "Không thể lưu hồ sơ cá nhân." msgstr "Không thể lưu hồ sơ cá nhân."
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Không thể lưu hồ sơ cá nhân." msgstr "Không thể lưu hồ sơ cá nhân."
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
#, fuzzy #, fuzzy
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Không thể lưu hồ sơ cá nhân." msgstr "Không thể lưu hồ sơ cá nhân."
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "Đã lưu các điều chỉnh." msgstr "Đã lưu các điều chỉnh."
@ -3295,7 +3294,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "URL trong hồ sơ cá nhân của bạn ở trên các trang microblogging khác" msgstr "URL trong hồ sơ cá nhân của bạn ở trên các trang microblogging khác"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "Theo bạn này" msgstr "Theo bạn này"
@ -3336,7 +3335,7 @@ msgstr "Bạn không thể đăng ký nếu không đồng ý các điều kho
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Bạn đã theo những người này:" msgstr "Bạn đã theo những người này:"
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Tạo" msgstr "Tạo"
@ -4044,17 +4043,27 @@ msgstr "Không có mã nào được nhập"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
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/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
#, fuzzy #, fuzzy
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "Không thể tạo đăng nhận." msgstr "Không thể tạo đăng nhận."
#: actions/subscribe.php:55 #: actions/subscribe.php:77
#, fuzzy msgid "This action only accepts POST requests."
msgid "Not a local user." msgstr ""
msgstr "Không có user nào."
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "Không có tin nhắn nào."
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "Bạn chưa cập nhật thông tin riêng"
#: actions/subscribe.php:145
#, fuzzy #, fuzzy
msgid "Subscribed" msgid "Subscribed"
msgstr "Theo bạn này" msgstr "Theo bạn này"
@ -4115,7 +4124,7 @@ msgstr "Có nhiều người gửi lời nhắn để bạn nghe theo."
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "Có nhiều người gửi lời nhắn để %s nghe theo." msgstr "Có nhiều người gửi lời nhắn để %s nghe theo."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4125,17 +4134,17 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, fuzzy, php-format #, fuzzy, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%1$s dang theo doi tin nhan cua ban tren %2$s." msgstr "%1$s dang theo doi tin nhan cua ban tren %2$s."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
#, fuzzy #, fuzzy
msgid "Jabber" msgid "Jabber"
msgstr "Không có Jabber ID." msgstr "Không có Jabber ID."
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS" msgstr "SMS"
@ -4565,61 +4574,83 @@ msgstr "Không thể cập nhật thông tin user với địa chỉ email đã
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %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:214 #: classes/Notice.php:222
#, fuzzy #, fuzzy
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "Có lỗi xảy ra khi lưu tin nhắn." msgstr "Có lỗi xảy ra khi lưu tin nhắn."
#: classes/Notice.php:218 #: classes/Notice.php:226
#, fuzzy #, fuzzy
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "Có lỗi xảy ra khi lưu tin nhắn." msgstr "Có lỗi xảy ra khi lưu tin nhắn."
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Có lỗi xảy ra khi lưu tin nhắn." msgstr "Có lỗi xảy ra khi lưu tin nhắn."
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy #, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "Có lỗi xảy ra khi lưu tin nhắn." msgstr "Có lỗi xảy ra khi lưu tin nhắn."
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "Lỗi cơ sở dữ liệu khi chèn trả lời: %s"
#: 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)"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr ""
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr ""
#: classes/Subscription.php:74
#, fuzzy
msgid "User has blocked you."
msgstr "Người dùng không có thông tin."
#: classes/Subscription.php:157
#, fuzzy
msgid "Not subscribed!"
msgstr "Chưa đăng nhận!"
#: classes/Subscription.php:163
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Không thể xóa đăng nhận."
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "Không thể xóa đăng nhận."
#: classes/User.php:372
#, fuzzy, php-format #, fuzzy, php-format
msgid "Welcome to %1$s, @%2$s!" msgid "Welcome to %1$s, @%2$s!"
msgstr "%s chào mừng bạn " msgstr "%s chào mừng bạn "
#: classes/User_group.php:380 #: classes/User_group.php:423
#, fuzzy #, fuzzy
msgid "Could not create group." msgid "Could not create group."
msgstr "Không thể tạo favorite." msgstr "Không thể tạo favorite."
#: classes/User_group.php:409 #: classes/User_group.php:452
#, fuzzy #, fuzzy
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "Không thể tạo đăng nhận." msgstr "Không thể tạo đăng nhận."
@ -4836,28 +4867,40 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1139 #: lib/action.php:1141
#, fuzzy #, fuzzy
msgid "After" msgid "After"
msgstr "Sau" msgstr "Sau"
#: lib/action.php:1147 #: lib/action.php:1149
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "Trước" msgstr "Trước"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
#, fuzzy #, fuzzy
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
@ -5176,82 +5219,92 @@ msgstr "Có lỗi xảy ra khi lưu tin nhắn."
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "" msgstr ""
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
#, fuzzy
msgid "No such user"
msgstr "Không có user nào."
#: lib/command.php:561
#, fuzzy, php-format #, fuzzy, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "Theo nhóm này" msgstr "Theo nhóm này"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "" msgstr ""
#: lib/command.php:582 #: lib/command.php:595
#, fuzzy, php-format #, fuzzy, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "Hết theo" msgstr "Hết theo"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "" msgstr ""
#: lib/command.php:603 #: lib/command.php:616
#, fuzzy #, fuzzy
msgid "Notification off." msgid "Notification off."
msgstr "Không có mã số xác nhận." msgstr "Không có mã số xác nhận."
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "" msgstr ""
#: lib/command.php:626 #: lib/command.php:639
#, fuzzy #, fuzzy
msgid "Notification on." msgid "Notification on."
msgstr "Không có mã số xác nhận." msgstr "Không có mã số xác nhận."
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "" msgstr ""
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "Hết theo"
#: lib/command.php:709
#, fuzzy #, fuzzy
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
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"
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "Bạn đã theo những người này:" msgstr[0] "Bạn đã theo những người này:"
#: lib/command.php:690 #: lib/command.php:731
#, fuzzy #, fuzzy
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "Không thể tạo favorite." msgstr "Không thể tạo favorite."
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "Không thể tạo favorite." msgstr[0] "Không thể tạo favorite."
#: lib/command.php:712 #: lib/command.php:753
#, fuzzy #, fuzzy
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
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"
#: lib/command.php:714 #: lib/command.php:755
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] "Bạn chưa cập nhật thông tin riêng" msgstr[0] "Bạn chưa cập nhật thông tin riêng"
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5265,6 +5318,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5292,20 +5346,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Không có mã số xác nhận." msgstr "Không có mã số xác nhận."
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""
@ -5791,7 +5845,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr " từ " msgstr " từ "
@ -5919,52 +5973,52 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "Không" msgstr "Không"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:547 #: lib/noticelist.php:558
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "Không có nội dung!" msgstr "Không có nội dung!"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Tạo" msgstr "Tạo"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
#, fuzzy #, fuzzy
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Trả lời tin nhắn này" msgstr "Trả lời tin nhắn này"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "Trả lời" msgstr "Trả lời"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Tin đã gửi" msgstr "Tin đã gửi"
@ -6001,10 +6055,6 @@ 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:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr ""
#: lib/oauthstore.php:490 #: 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."
@ -6197,39 +6247,6 @@ msgstr "Theo nhóm này"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "" msgstr ""
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr ""
#: lib/subs.php:56
#, fuzzy
msgid "User has blocked you."
msgstr "Người dùng không có thông tin."
#: lib/subs.php:63
#, fuzzy
msgid "Could not subscribe."
msgstr "Chưa đăng nhận!"
#: lib/subs.php:82
#, fuzzy
msgid "Could not subscribe other to you."
msgstr "Không thể tạo favorite."
#: lib/subs.php:137
#, fuzzy
msgid "Not subscribed!"
msgstr "Chưa đăng nhận!"
#: lib/subs.php:142
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Không thể xóa đăng nhận."
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "Không thể xóa đăng nhận."
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6286,70 +6303,70 @@ msgstr "Hình đại diện"
msgid "User actions" msgid "User actions"
msgstr "Không tìm thấy action" msgstr "Không tìm thấy action"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
#, fuzzy #, fuzzy
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "Các thiết lập cho Hồ sơ cá nhân" msgstr "Các thiết lập cho Hồ sơ cá nhân"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: lib/userprofile.php:272 #: lib/userprofile.php:275
#, fuzzy #, fuzzy
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "Bạn đã theo những người này:" msgstr "Bạn đã theo những người này:"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
#, fuzzy #, fuzzy
msgid "Message" msgid "Message"
msgstr "Tin mới nhất" msgstr "Tin mới nhất"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:870 #: lib/util.php:952
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:872 #: lib/util.php:954
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:874 #: lib/util.php:956
#, 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:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "1 giờ trước" msgstr "1 giờ trước"
#: lib/util.php:878 #: lib/util.php:960
#, 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:880 #: lib/util.php:962
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:882 #: lib/util.php:964
#, 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:884 #: lib/util.php:966
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:886 #: lib/util.php:968
#, 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:888 #: lib/util.php:970
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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:16:22+0000\n" "PO-Revision-Date: 2010-02-24 23:52:00+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -68,7 +68,7 @@ msgstr ""
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -107,7 +107,6 @@ msgstr "没有该页面"
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "没有这个用户。" msgstr "没有这个用户。"
@ -170,8 +169,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "%s 及好友" msgstr "%s 及好友"
#: 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 "来自%2$s 上 %1$s 和好友的更新!" msgstr "来自%2$s 上 %1$s 和好友的更新!"
@ -192,12 +191,12 @@ msgstr "来自%2$s 上 %1$s 和好友的更新!"
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "API 方法未实现!" msgstr "API 方法未实现!"
@ -509,7 +508,7 @@ msgstr "大小不正确。"
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -654,7 +653,7 @@ msgstr "不支持这种图像格式。"
msgid "%1$s / Favorites from %2$s" msgid "%1$s / Favorites from %2$s"
msgstr "%s 的收藏 / %s" msgstr "%s 的收藏 / %s"
#: actions/apitimelinefavorites.php:120 #: actions/apitimelinefavorites.php:117
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s updates favorited by %2$s / %2$s." msgid "%1$s updates favorited by %2$s / %2$s."
msgstr "%s 收藏了 %s 的 %s 通告。" msgstr "%s 收藏了 %s 的 %s 通告。"
@ -665,7 +664,7 @@ msgstr "%s 收藏了 %s 的 %s 通告。"
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!"
@ -681,12 +680,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 "回复 %2$s / %3$s 的 %1$s 更新。" msgstr "回复 %2$s / %3$s 的 %1$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 消息!"
@ -696,7 +695,7 @@ msgstr "来自所有人的 %s 消息!"
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "%s 的回复" msgstr "%s 的回复"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:114
#, fuzzy, php-format #, fuzzy, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "%s 的回复" msgstr "%s 的回复"
@ -706,7 +705,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
#, fuzzy, php-format #, fuzzy, php-format
msgid "Updates tagged with %1$s on %2$s!" msgid "Updates tagged with %1$s on %2$s!"
msgstr "%2$s 上 %1$s 的更新!" msgstr "%2$s 上 %1$s 的更新!"
@ -769,7 +768,7 @@ msgid "Preview"
msgstr "预览" msgstr "预览"
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
#, fuzzy #, fuzzy
msgid "Delete" msgid "Delete"
msgstr "删除" msgstr "删除"
@ -962,7 +961,7 @@ msgstr "您未告知此个人信息"
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
#, fuzzy #, fuzzy
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "会话标识有问题,请重试。" msgstr "会话标识有问题,请重试。"
@ -992,7 +991,7 @@ 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -1023,7 +1022,7 @@ msgstr "确定要删除这条消息吗?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "无法删除通告。" msgstr "无法删除通告。"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
#, fuzzy #, fuzzy
msgid "Delete this notice" msgid "Delete this notice"
msgstr "删除通告" msgstr "删除通告"
@ -1287,7 +1286,7 @@ msgstr "描述过长(不能超过140字符)。"
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:433
#, fuzzy #, fuzzy
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "无法创建收藏。" msgstr "无法创建收藏。"
@ -2373,7 +2372,7 @@ msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "不支持的数据格式。" msgstr "不支持的数据格式。"
@ -2831,25 +2830,25 @@ msgstr "语言过长(不能超过50个字符)。"
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "主页'%s'不正确" msgstr "主页'%s'不正确"
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "无法更新用户的自动订阅选项。" msgstr "无法更新用户的自动订阅选项。"
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
#, fuzzy #, fuzzy
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "无法保存个人信息。" msgstr "无法保存个人信息。"
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "无法保存个人信息。" msgstr "无法保存个人信息。"
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
#, fuzzy #, fuzzy
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "无法保存个人信息。" msgstr "无法保存个人信息。"
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "设置已保存。" msgstr "设置已保存。"
@ -3227,7 +3226,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "您在其他兼容的微博客服务的个人信息URL" msgstr "您在其他兼容的微博客服务的个人信息URL"
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "订阅" msgstr "订阅"
@ -3270,7 +3269,7 @@ msgstr "您必须同意此授权方可注册。"
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "您已成功阻止该用户:" msgstr "您已成功阻止该用户:"
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "创建" msgstr "创建"
@ -3973,17 +3972,27 @@ msgstr "没有输入验证码"
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "您未告知此个人信息" msgstr "您未告知此个人信息"
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
#, fuzzy #, fuzzy
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "无法删除订阅。" msgstr "无法删除订阅。"
#: actions/subscribe.php:55 #: actions/subscribe.php:77
#, fuzzy msgid "This action only accepts POST requests."
msgid "Not a local user." msgstr ""
msgstr "没有这个用户。"
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "没有这份通告。"
#: actions/subscribe.php:117
#, fuzzy
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr "您未告知此个人信息"
#: actions/subscribe.php:145
#, fuzzy #, fuzzy
msgid "Subscribed" msgid "Subscribed"
msgstr "订阅" msgstr "订阅"
@ -4044,7 +4053,7 @@ msgstr "这是您订阅的用户。"
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "这是 %s 订阅的用户。" msgstr "这是 %s 订阅的用户。"
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -4054,17 +4063,17 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, fuzzy, php-format #, fuzzy, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%1$s 开始关注您的 %2$s 信息。" msgstr "%1$s 开始关注您的 %2$s 信息。"
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
#, fuzzy #, fuzzy
msgid "Jabber" msgid "Jabber"
msgstr "没有 Jabber ID。" msgstr "没有 Jabber ID。"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "SMS短信" msgstr "SMS短信"
@ -4490,61 +4499,84 @@ msgstr "无法添加新URI的信息。"
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "添加标签时数据库出错:%s" msgstr "添加标签时数据库出错:%s"
#: classes/Notice.php:214 #: classes/Notice.php:222
#, fuzzy #, fuzzy
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "保存通告时出错。" msgstr "保存通告时出错。"
#: classes/Notice.php:218 #: classes/Notice.php:226
#, fuzzy #, fuzzy
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "保存通告时出错。" msgstr "保存通告时出错。"
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。"
#: classes/Notice.php:229 #: classes/Notice.php:237
#, fuzzy #, fuzzy
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。"
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "在这个网站你被禁止发布消息。" msgstr "在这个网站你被禁止发布消息。"
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "保存通告时出错。" msgstr "保存通告时出错。"
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy #, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "保存通告时出错。" msgstr "保存通告时出错。"
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "添加回复时数据库出错:%s"
#: 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)"
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
#, fuzzy
msgid "You have been banned from subscribing."
msgstr "那个用户阻止了你的订阅。"
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr ""
#: classes/Subscription.php:74
#, fuzzy
msgid "User has blocked you."
msgstr "用户没有个人信息。"
#: classes/Subscription.php:157
#, fuzzy
msgid "Not subscribed!"
msgstr "未订阅!"
#: classes/Subscription.php:163
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "无法删除订阅。"
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "无法删除订阅。"
#: classes/User.php:372
#, fuzzy, php-format #, fuzzy, php-format
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:423
msgid "Could not create group." msgid "Could not create group."
msgstr "无法创建组。" msgstr "无法创建组。"
#: classes/User_group.php:409 #: classes/User_group.php:452
#, fuzzy #, fuzzy
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "无法删除订阅。" msgstr "无法删除订阅。"
@ -4757,28 +4789,40 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "全部" msgstr "全部"
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "注册证" msgstr "注册证"
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "分页" msgstr "分页"
#: lib/action.php:1139 #: lib/action.php:1141
#, fuzzy #, fuzzy
msgid "After" msgid "After"
msgstr "« 之后" msgstr "« 之后"
#: lib/action.php:1147 #: lib/action.php:1149
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "之前 »" msgstr "之前 »"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
#, fuzzy #, fuzzy
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
@ -5093,80 +5137,89 @@ msgstr "保存通告时出错。"
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "指定要订阅的用户名" msgstr "指定要订阅的用户名"
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
msgid "No such user"
msgstr "没有这个用户。"
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "订阅 %s" msgstr "订阅 %s"
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "指定要取消订阅的用户名" msgstr "指定要取消订阅的用户名"
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "取消订阅 %s" msgstr "取消订阅 %s"
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "命令尚未实现。" msgstr "命令尚未实现。"
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "通告关闭。" msgstr "通告关闭。"
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "无法关闭通告。" msgstr "无法关闭通告。"
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "通告开启。" msgstr "通告开启。"
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "无法开启通告。" msgstr "无法开启通告。"
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "取消订阅 %s"
#: lib/command.php:709
#, fuzzy #, fuzzy
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "您未告知此个人信息" msgstr "您未告知此个人信息"
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "您已订阅这些用户:" msgstr[0] "您已订阅这些用户:"
#: lib/command.php:690 #: lib/command.php:731
#, fuzzy #, fuzzy
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "无法订阅他人更新。" msgstr "无法订阅他人更新。"
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "无法订阅他人更新。" msgstr[0] "无法订阅他人更新。"
#: lib/command.php:712 #: lib/command.php:753
#, fuzzy #, fuzzy
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "您未告知此个人信息" msgstr "您未告知此个人信息"
#: lib/command.php:714 #: lib/command.php:755
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] "您未告知此个人信息" msgstr[0] "您未告知此个人信息"
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5180,6 +5233,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5207,20 +5261,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "没有验证码" msgstr "没有验证码"
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
msgstr "登入本站" msgstr "登入本站"
@ -5659,7 +5713,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr " 从 " msgstr " 从 "
@ -5786,53 +5840,53 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "否" msgstr "否"
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:547 #: lib/noticelist.php:558
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "没有内容!" msgstr "没有内容!"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "创建" msgstr "创建"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
#, fuzzy #, fuzzy
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "无法删除通告。" msgstr "无法删除通告。"
#: lib/noticelist.php:599 #: lib/noticelist.php:611
#, fuzzy #, fuzzy
msgid "Reply" msgid "Reply"
msgstr "回复" msgstr "回复"
#: lib/noticelist.php:641 #: lib/noticelist.php:655
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "消息已发布。" msgstr "消息已发布。"
@ -5867,11 +5921,6 @@ msgstr "添加远程的个人信息出错"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "删除通告" msgstr "删除通告"
#: lib/oauthstore.php:465 lib/subs.php:48
#, fuzzy
msgid "You have been banned from subscribing."
msgstr "那个用户阻止了你的订阅。"
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "无法添加新的订阅。" msgstr "无法添加新的订阅。"
@ -6063,37 +6112,6 @@ msgstr "订阅 %s"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "%s 组是成员组成了" msgstr "%s 组是成员组成了"
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr ""
#: lib/subs.php:56
#, fuzzy
msgid "User has blocked you."
msgstr "用户没有个人信息。"
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr "无法订阅。"
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr "无法订阅他人更新。"
#: lib/subs.php:137
#, fuzzy
msgid "Not subscribed!"
msgstr "未订阅!"
#: lib/subs.php:142
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "无法删除订阅。"
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "无法删除订阅。"
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -6151,70 +6169,70 @@ msgstr "头像"
msgid "User actions" msgid "User actions"
msgstr "未知动作" msgstr "未知动作"
#: lib/userprofile.php:248 #: lib/userprofile.php:251
#, fuzzy #, fuzzy
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "个人设置" msgstr "个人设置"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: lib/userprofile.php:272 #: lib/userprofile.php:275
#, fuzzy #, fuzzy
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "无法向此用户发送消息。" msgstr "无法向此用户发送消息。"
#: lib/userprofile.php:273 #: lib/userprofile.php:276
#, fuzzy #, fuzzy
msgid "Message" msgid "Message"
msgstr "新消息" msgstr "新消息"
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "几秒前" msgstr "几秒前"
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "一分钟前" msgstr "一分钟前"
#: lib/util.php:874 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "%d 分钟前" msgstr "%d 分钟前"
#: lib/util.php:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "一小时前" msgstr "一小时前"
#: lib/util.php:878 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "%d 小时前" msgstr "%d 小时前"
#: lib/util.php:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "一天前" msgstr "一天前"
#: lib/util.php:882 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "%d 天前" msgstr "%d 天前"
#: lib/util.php:884 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "一个月前" msgstr "一个月前"
#: lib/util.php:886 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "%d 个月前" msgstr "%d 个月前"
#: lib/util.php:888 #: lib/util.php:970
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-11 08:14+0000\n" "POT-Creation-Date: 2010-02-24 23:49+0000\n"
"PO-Revision-Date: 2010-02-11 08:16:25+0000\n" "PO-Revision-Date: 2010-02-24 23:52:03+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 (r62295); Translate extension (2010-01-16)\n" "X-Generator: MediaWiki 1.17alpha (r62925); 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"
@ -63,7 +63,7 @@ msgstr ""
#: actions/othersettings.php:126 actions/pathsadminpanel.php:351 #: actions/othersettings.php:126 actions/pathsadminpanel.php:351
#: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199 #: actions/profilesettings.php:174 actions/sessionsadminpanel.php:199
#: actions/siteadminpanel.php:336 actions/smssettings.php:181 #: actions/siteadminpanel.php:336 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:208 actions/tagother.php:154
#: actions/useradminpanel.php:293 lib/applicationeditform.php:333 #: actions/useradminpanel.php:293 lib/applicationeditform.php:333
#: lib/applicationeditform.php:334 lib/designsettings.php:256 #: lib/applicationeditform.php:334 lib/designsettings.php:256
#: lib/groupeditform.php:202 #: lib/groupeditform.php:202
@ -103,7 +103,6 @@ msgstr "無此通知"
#: lib/command.php:163 lib/command.php:302 lib/command.php:355 #: lib/command.php:163 lib/command.php:302 lib/command.php:355
#: lib/command.php:401 lib/command.php:462 lib/command.php:518 #: lib/command.php:401 lib/command.php:462 lib/command.php:518
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:125
msgid "No such user." msgid "No such user."
msgstr "無此使用者" msgstr "無此使用者"
@ -166,8 +165,8 @@ msgstr ""
msgid "You and friends" msgid "You and friends"
msgstr "%s與好友" msgstr "%s與好友"
#: 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 ""
@ -188,12 +187,12 @@ msgstr ""
#: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112 #: actions/apistatusesdestroy.php:102 actions/apistatusesretweets.php:112
#: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137 #: actions/apistatusesshow.php:108 actions/apistatusnetconfig.php:137
#: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111 #: actions/apistatusnetversion.php:93 actions/apisubscriptions.php:111
#: actions/apitimelinefavorites.php:146 actions/apitimelinefriends.php:155 #: actions/apitimelinefavorites.php:183 actions/apitimelinefriends.php:187
#: actions/apitimelinegroup.php:150 actions/apitimelinehome.php:156 #: actions/apitimelinegroup.php:195 actions/apitimelinehome.php:184
#: actions/apitimelinementions.php:151 actions/apitimelinepublic.php:131 #: actions/apitimelinementions.php:175 actions/apitimelinepublic.php:152
#: actions/apitimelineretweetedtome.php:121 #: actions/apitimelineretweetedtome.php:121
#: actions/apitimelineretweetsofme.php:122 actions/apitimelinetag.php:141 #: actions/apitimelineretweetsofme.php:152 actions/apitimelinetag.php:166
#: actions/apitimelineuser.php:166 actions/apiusershow.php:101 #: actions/apitimelineuser.php:207 actions/apiusershow.php:101
#, fuzzy #, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "確認碼遺失" msgstr "確認碼遺失"
@ -501,7 +500,7 @@ msgstr "尺寸錯誤"
#: actions/profilesettings.php:194 actions/recoverpassword.php:337 #: actions/profilesettings.php:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:86 actions/tagother.php:166
#: actions/unsubscribe.php:69 actions/userauthorization.php:52 #: actions/unsubscribe.php:69 actions/userauthorization.php:52
#: lib/designsettings.php:294 #: lib/designsettings.php:294
msgid "There was a problem with your session token. Try again, please." msgid "There was a problem with your session token. Try again, please."
@ -645,7 +644,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
#, fuzzy, php-format #, fuzzy, php-format
msgid "%1$s updates favorited by %2$s / %2$s." msgid "%1$s updates favorited by %2$s / %2$s."
msgstr "&s的微型部落格" msgstr "&s的微型部落格"
@ -656,7 +655,7 @@ msgstr "&s的微型部落格"
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!"
@ -672,12 +671,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 "" 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 ""
@ -687,7 +686,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 ""
@ -697,7 +696,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
#, fuzzy, php-format #, fuzzy, php-format
msgid "Updates tagged with %1$s on %2$s!" msgid "Updates tagged with %1$s on %2$s!"
msgstr "&s的微型部落格" msgstr "&s的微型部落格"
@ -761,7 +760,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 actions/showapplication.php:252 #: actions/avatarsettings.php:149 actions/showapplication.php:252
#: lib/deleteuserform.php:66 lib/noticelist.php:624 #: lib/deleteuserform.php:66 lib/noticelist.php:637
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -952,7 +951,7 @@ msgstr "無法連結到伺服器:%s"
#: actions/deleteapplication.php:102 actions/editapplication.php:127 #: actions/deleteapplication.php:102 actions/editapplication.php:127
#: actions/newapplication.php:110 actions/showapplication.php:118 #: actions/newapplication.php:110 actions/showapplication.php:118
#: lib/action.php:1195 #: lib/action.php:1197
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -981,7 +980,7 @@ msgstr "請在140個字以內描述你自己與你的興趣"
#: 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
#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 #: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89
#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 #: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:96
#: actions/tagother.php:33 actions/unsubscribe.php:52 #: actions/tagother.php:33 actions/unsubscribe.php:52
#: lib/adminpanelaction.php:72 lib/profileformaction.php:63 #: lib/adminpanelaction.php:72 lib/profileformaction.php:63
#: lib/settingsaction.php:72 #: lib/settingsaction.php:72
@ -1011,7 +1010,7 @@ msgstr ""
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "無此通知" msgstr "無此通知"
#: actions/deletenotice.php:146 lib/noticelist.php:624 #: actions/deletenotice.php:146 lib/noticelist.php:637
msgid "Delete this notice" msgid "Delete this notice"
msgstr "" msgstr ""
@ -1268,7 +1267,7 @@ msgstr "自我介紹過長(共140個字元)"
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:433
#, fuzzy #, fuzzy
msgid "Could not create aliases." msgid "Could not create aliases."
msgstr "無法存取個人圖像資料" msgstr "無法存取個人圖像資料"
@ -2293,7 +2292,7 @@ msgid "Only "
msgstr "" msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1040
#: lib/api.php:1068 lib/api.php:1178 #: lib/api.php:1068 lib/api.php:1177
msgid "Not a supported data format." msgid "Not a supported data format."
msgstr "" msgstr ""
@ -2740,25 +2739,25 @@ msgstr ""
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "個人首頁連結%s無效" msgstr "個人首頁連結%s無效"
#: actions/profilesettings.php:302 #: actions/profilesettings.php:306
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:359 #: actions/profilesettings.php:363
#, fuzzy #, fuzzy
msgid "Couldn't save location prefs." msgid "Couldn't save location prefs."
msgstr "無法儲存個人資料" msgstr "無法儲存個人資料"
#: actions/profilesettings.php:371 #: actions/profilesettings.php:375
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "無法儲存個人資料" msgstr "無法儲存個人資料"
#: actions/profilesettings.php:379 #: actions/profilesettings.php:383
#, fuzzy #, fuzzy
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "無法儲存個人資料" msgstr "無法儲存個人資料"
#: actions/profilesettings.php:387 lib/adminpanelaction.php:137 #: actions/profilesettings.php:391 lib/adminpanelaction.php:137
msgid "Settings saved." msgid "Settings saved."
msgstr "" msgstr ""
@ -3114,7 +3113,7 @@ msgid "URL of your profile on another compatible microblogging service"
msgstr "" msgstr ""
#: actions/remotesubscribe.php:137 lib/subscribeform.php:139 #: actions/remotesubscribe.php:137 lib/subscribeform.php:139
#: lib/userprofile.php:365 #: lib/userprofile.php:368
msgid "Subscribe" msgid "Subscribe"
msgstr "" msgstr ""
@ -3153,7 +3152,7 @@ msgstr ""
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "無此使用者" msgstr "無此使用者"
#: actions/repeat.php:114 lib/noticelist.php:642 #: actions/repeat.php:114 lib/noticelist.php:656
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "新增" msgstr "新增"
@ -3836,17 +3835,26 @@ msgstr ""
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "" msgstr ""
#: actions/subedit.php:83 #: actions/subedit.php:83 classes/Subscription.php:89
#: classes/Subscription.php:116
#, fuzzy #, fuzzy
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "註冊失敗" msgstr "註冊失敗"
#: actions/subscribe.php:55 #: actions/subscribe.php:77
#, fuzzy msgid "This action only accepts POST requests."
msgid "Not a local user." msgstr ""
msgstr "無此使用者"
#: actions/subscribe.php:69 #: actions/subscribe.php:107
#, fuzzy
msgid "No such profile."
msgstr "無此通知"
#: actions/subscribe.php:117
msgid "You cannot subscribe to an OMB 0.1 remote profile with this action."
msgstr ""
#: actions/subscribe.php:145
#, fuzzy #, fuzzy
msgid "Subscribed" msgid "Subscribed"
msgstr "此帳號已註冊" msgstr "此帳號已註冊"
@ -3907,7 +3915,7 @@ msgstr ""
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "" msgstr ""
#: actions/subscriptions.php:121 #: actions/subscriptions.php:126
#, php-format #, php-format
msgid "" msgid ""
"You're not listening to anyone's notices right now, try subscribing to " "You're not listening to anyone's notices right now, try subscribing to "
@ -3917,17 +3925,17 @@ msgid ""
"automatically subscribe to people you already follow there." "automatically subscribe to people you already follow there."
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:128 actions/subscriptions.php:132
#, fuzzy, php-format #, fuzzy, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "現在%1$s在%2$s成為你的粉絲囉" msgstr "現在%1$s在%2$s成為你的粉絲囉"
#: actions/subscriptions.php:194 #: actions/subscriptions.php:199
#, fuzzy #, fuzzy
msgid "Jabber" msgid "Jabber"
msgstr "查無此Jabber ID" msgstr "查無此Jabber ID"
#: actions/subscriptions.php:199 lib/connectsettingsaction.php:115 #: actions/subscriptions.php:204 lib/connectsettingsaction.php:115
msgid "SMS" msgid "SMS"
msgstr "" msgstr ""
@ -4335,61 +4343,82 @@ msgstr ""
msgid "DB error inserting hashtag: %s" msgid "DB error inserting hashtag: %s"
msgstr "" msgstr ""
#: classes/Notice.php:214 #: classes/Notice.php:222
#, fuzzy #, fuzzy
msgid "Problem saving notice. Too long." msgid "Problem saving notice. Too long."
msgstr "儲存使用者發生錯誤" msgstr "儲存使用者發生錯誤"
#: classes/Notice.php:218 #: classes/Notice.php:226
#, fuzzy #, fuzzy
msgid "Problem saving notice. Unknown user." msgid "Problem saving notice. Unknown user."
msgstr "儲存使用者發生錯誤" msgstr "儲存使用者發生錯誤"
#: classes/Notice.php:223 #: classes/Notice.php:231
msgid "" msgid ""
"Too many notices too fast; take a breather and post again in a few minutes." "Too many notices too fast; take a breather and post again in a few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:229 #: classes/Notice.php:237
msgid "" msgid ""
"Too many duplicate messages too quickly; take a breather and post again in a " "Too many duplicate messages too quickly; take a breather and post again in a "
"few minutes." "few minutes."
msgstr "" msgstr ""
#: classes/Notice.php:235 #: classes/Notice.php:243
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:294 classes/Notice.php:319 #: classes/Notice.php:309 classes/Notice.php:335
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "" msgstr ""
#: classes/Notice.php:788 #: classes/Notice.php:882
#, fuzzy #, fuzzy
msgid "Problem saving group inbox." msgid "Problem saving group inbox."
msgstr "儲存使用者發生錯誤" msgstr "儲存使用者發生錯誤"
#: classes/Notice.php:848 #: classes/Notice.php:1407
#, php-format
msgid "DB error inserting reply: %s"
msgstr "增加回覆時,資料庫發生錯誤: %s"
#: classes/Notice.php:1235
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
#: classes/User.php:385 #: classes/Subscription.php:66 lib/oauthstore.php:465
msgid "You have been banned from subscribing."
msgstr ""
#: classes/Subscription.php:70
msgid "Already subscribed!"
msgstr ""
#: classes/Subscription.php:74
msgid "User has blocked you."
msgstr ""
#: classes/Subscription.php:157
#, fuzzy
msgid "Not subscribed!"
msgstr "此帳號已註冊"
#: classes/Subscription.php:163
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "無法刪除帳號"
#: classes/Subscription.php:179 lib/subs.php:69
msgid "Couldn't delete subscription."
msgstr "無法刪除帳號"
#: classes/User.php:372
#, php-format #, php-format
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:423
#, fuzzy #, fuzzy
msgid "Could not create group." msgid "Could not create group."
msgstr "無法存取個人圖像資料" msgstr "無法存取個人圖像資料"
#: classes/User_group.php:409 #: classes/User_group.php:452
#, fuzzy #, fuzzy
msgid "Could not set group membership." msgid "Could not set group membership."
msgstr "註冊失敗" msgstr "註冊失敗"
@ -4596,27 +4625,39 @@ msgstr ""
msgid "Content and data copyright by contributors. All rights reserved." msgid "Content and data copyright by contributors. All rights reserved."
msgstr "" msgstr ""
#: lib/action.php:826 #: lib/action.php:827
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:831 #: lib/action.php:833
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1130 #: lib/action.php:1132
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1139 #: lib/action.php:1141
msgid "After" msgid "After"
msgstr "" msgstr ""
#: lib/action.php:1147 #: lib/action.php:1149
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "之前的內容»" msgstr "之前的內容»"
#: lib/activity.php:382
msgid "Can't handle remote content yet."
msgstr ""
#: lib/activity.php:410
msgid "Can't handle embedded XML content yet."
msgstr ""
#: lib/activity.php:414
msgid "Can't handle embedded Base64 content yet."
msgstr ""
#: lib/adminpanelaction.php:96 #: lib/adminpanelaction.php:96
msgid "You cannot make changes to this site." msgid "You cannot make changes to this site."
msgstr "" msgstr ""
@ -4919,80 +4960,90 @@ msgstr "儲存使用者發生錯誤"
msgid "Specify the name of the user to subscribe to" msgid "Specify the name of the user to subscribe to"
msgstr "" msgstr ""
#: lib/command.php:554 #: lib/command.php:554 lib/command.php:589
#, fuzzy
msgid "No such user"
msgstr "無此使用者"
#: lib/command.php:561
#, php-format #, php-format
msgid "Subscribed to %s" msgid "Subscribed to %s"
msgstr "" msgstr ""
#: lib/command.php:575 #: lib/command.php:582 lib/command.php:685
msgid "Specify the name of the user to unsubscribe from" msgid "Specify the name of the user to unsubscribe from"
msgstr "" msgstr ""
#: lib/command.php:582 #: lib/command.php:595
#, php-format #, php-format
msgid "Unsubscribed from %s" msgid "Unsubscribed from %s"
msgstr "" msgstr ""
#: lib/command.php:600 lib/command.php:623 #: lib/command.php:613 lib/command.php:636
msgid "Command not yet implemented." msgid "Command not yet implemented."
msgstr "" msgstr ""
#: lib/command.php:603 #: lib/command.php:616
msgid "Notification off." msgid "Notification off."
msgstr "" msgstr ""
#: lib/command.php:605 #: lib/command.php:618
msgid "Can't turn off notification." msgid "Can't turn off notification."
msgstr "" msgstr ""
#: lib/command.php:626 #: lib/command.php:639
msgid "Notification on." msgid "Notification on."
msgstr "" msgstr ""
#: lib/command.php:628 #: lib/command.php:641
msgid "Can't turn on notification." msgid "Can't turn on notification."
msgstr "" msgstr ""
#: lib/command.php:641 #: lib/command.php:654
msgid "Login command is disabled" msgid "Login command is disabled"
msgstr "" msgstr ""
#: lib/command.php:652 #: lib/command.php:665
#, php-format #, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s" msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr "" msgstr ""
#: lib/command.php:668 #: lib/command.php:692
#, fuzzy, php-format
msgid "Unsubscribed %s"
msgstr "此帳號已註冊"
#: lib/command.php:709
#, fuzzy #, fuzzy
msgid "You are not subscribed to anyone." msgid "You are not subscribed to anyone."
msgstr "此帳號已註冊" msgstr "此帳號已註冊"
#: lib/command.php:670 #: lib/command.php:711
msgid "You are subscribed to this person:" msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:" msgid_plural "You are subscribed to these people:"
msgstr[0] "此帳號已註冊" msgstr[0] "此帳號已註冊"
#: lib/command.php:690 #: lib/command.php:731
#, fuzzy #, fuzzy
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "無此訂閱" msgstr "無此訂閱"
#: lib/command.php:692 #: lib/command.php:733
msgid "This person is subscribed to you:" msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:" msgid_plural "These people are subscribed to you:"
msgstr[0] "無此訂閱" msgstr[0] "無此訂閱"
#: lib/command.php:712 #: lib/command.php:753
#, fuzzy #, fuzzy
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "無法連結到伺服器:%s" msgstr "無法連結到伺服器:%s"
#: lib/command.php:714 #: lib/command.php:755
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] "無法連結到伺服器:%s" msgstr[0] "無法連結到伺服器:%s"
#: lib/command.php:728 #: lib/command.php:769
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -5006,6 +5057,7 @@ msgid ""
"d <nickname> <text> - direct message to user\n" "d <nickname> <text> - direct message to user\n"
"get <nickname> - get last notice from user\n" "get <nickname> - get last notice from user\n"
"whois <nickname> - get profile info on user\n" "whois <nickname> - get profile info on user\n"
"lose <nickname> - force user to stop following you\n"
"fav <nickname> - add user's last notice as a 'fave'\n" "fav <nickname> - add user's last notice as a 'fave'\n"
"fav #<notice_id> - add notice with the given id as a 'fave'\n" "fav #<notice_id> - add notice with the given id as a 'fave'\n"
"repeat #<notice_id> - repeat a notice with a given id\n" "repeat #<notice_id> - repeat a notice with a given id\n"
@ -5033,20 +5085,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:135 #: lib/common.php:136
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "無確認碼" msgstr "無確認碼"
#: lib/common.php:136 #: lib/common.php:137
msgid "I looked for configuration files in the following places: " msgid "I looked for configuration files in the following places: "
msgstr "" msgstr ""
#: lib/common.php:138 #: lib/common.php:139
msgid "You may wish to run the installer to fix this." msgid "You may wish to run the installer to fix this."
msgstr "" msgstr ""
#: lib/common.php:139 #: lib/common.php:140
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""
@ -5469,7 +5521,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:477 #: lib/mailbox.php:227 lib/noticelist.php:482
msgid "from" msgid "from"
msgstr "" msgstr ""
@ -5594,50 +5646,50 @@ msgid ""
"try again later" "try again later"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:429
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "N" msgid "N"
msgstr "" msgstr ""
#: lib/noticelist.php:429 #: lib/noticelist.php:430
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:430 #: lib/noticelist.php:431
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:436 #: lib/noticelist.php:438
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:547 #: lib/noticelist.php:558
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "無內容" msgstr "無內容"
#: lib/noticelist.php:572 #: lib/noticelist.php:583
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "新增" msgstr "新增"
#: lib/noticelist.php:598 #: lib/noticelist.php:610
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:599 #: lib/noticelist.php:611
msgid "Reply" msgid "Reply"
msgstr "" msgstr ""
#: lib/noticelist.php:641 #: lib/noticelist.php:655
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "更新個人圖像" msgstr "更新個人圖像"
@ -5671,10 +5723,6 @@ msgstr "新增外部個人資料發生錯誤(Error inserting remote profile)"
msgid "Duplicate notice" msgid "Duplicate notice"
msgstr "新訊息" msgstr "新訊息"
#: lib/oauthstore.php:465 lib/subs.php:48
msgid "You have been banned from subscribing."
msgstr ""
#: lib/oauthstore.php:490 #: lib/oauthstore.php:490
msgid "Couldn't insert new subscription." msgid "Couldn't insert new subscription."
msgstr "無法新增訂閱" msgstr "無法新增訂閱"
@ -5858,36 +5906,6 @@ msgstr "此帳號已註冊"
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "" msgstr ""
#: lib/subs.php:52
msgid "Already subscribed!"
msgstr ""
#: lib/subs.php:56
msgid "User has blocked you."
msgstr ""
#: lib/subs.php:63
msgid "Could not subscribe."
msgstr ""
#: lib/subs.php:82
msgid "Could not subscribe other to you."
msgstr ""
#: lib/subs.php:137
#, fuzzy
msgid "Not subscribed!"
msgstr "此帳號已註冊"
#: lib/subs.php:142
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "無法刪除帳號"
#: lib/subs.php:158
msgid "Couldn't delete subscription."
msgstr "無法刪除帳號"
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
msgid "People Tagcloud as self-tagged" msgid "People Tagcloud as self-tagged"
@ -5941,68 +5959,68 @@ msgstr "個人圖像"
msgid "User actions" msgid "User actions"
msgstr "" msgstr ""
#: lib/userprofile.php:248 #: lib/userprofile.php:251
#, fuzzy #, fuzzy
msgid "Edit profile settings" msgid "Edit profile settings"
msgstr "線上即時通設定" msgstr "線上即時通設定"
#: lib/userprofile.php:249 #: lib/userprofile.php:252
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: lib/userprofile.php:272 #: lib/userprofile.php:275
msgid "Send a direct message to this user" msgid "Send a direct message to this user"
msgstr "" msgstr ""
#: lib/userprofile.php:273 #: lib/userprofile.php:276
msgid "Message" msgid "Message"
msgstr "" msgstr ""
#: lib/userprofile.php:311 #: lib/userprofile.php:314
msgid "Moderate" msgid "Moderate"
msgstr "" msgstr ""
#: lib/util.php:870 #: lib/util.php:952
msgid "a few seconds ago" msgid "a few seconds ago"
msgstr "" msgstr ""
#: lib/util.php:872 #: lib/util.php:954
msgid "about a minute ago" msgid "about a minute ago"
msgstr "" msgstr ""
#: lib/util.php:874 #: lib/util.php:956
#, php-format #, php-format
msgid "about %d minutes ago" msgid "about %d minutes ago"
msgstr "" msgstr ""
#: lib/util.php:876 #: lib/util.php:958
msgid "about an hour ago" msgid "about an hour ago"
msgstr "" msgstr ""
#: lib/util.php:878 #: lib/util.php:960
#, php-format #, php-format
msgid "about %d hours ago" msgid "about %d hours ago"
msgstr "" msgstr ""
#: lib/util.php:880 #: lib/util.php:962
msgid "about a day ago" msgid "about a day ago"
msgstr "" msgstr ""
#: lib/util.php:882 #: lib/util.php:964
#, php-format #, php-format
msgid "about %d days ago" msgid "about %d days ago"
msgstr "" msgstr ""
#: lib/util.php:884 #: lib/util.php:966
msgid "about a month ago" msgid "about a month ago"
msgstr "" msgstr ""
#: lib/util.php:886 #: lib/util.php:968
#, php-format #, php-format
msgid "about %d months ago" msgid "about %d months ago"
msgstr "" msgstr ""
#: lib/util.php:888 #: lib/util.php:970
msgid "about a year ago" msgid "about a year ago"
msgstr "" msgstr ""

Binary file not shown.

After

Width:  |  Height:  |  Size: 673 B

View File

@ -68,7 +68,7 @@ class CometPlugin extends RealtimePlugin
$ours = array('jquery.comet.js', 'cometupdate.js'); $ours = array('jquery.comet.js', 'cometupdate.js');
foreach ($ours as $script) { foreach ($ours as $script) {
$scripts[] = common_path('plugins/Comet/'.$script); $scripts[] = 'plugins/Comet/'.$script;
} }
return $scripts; return $scripts;

View File

@ -181,7 +181,7 @@ class FacebookPlugin extends Plugin
if ($this->reqFbScripts($action)) { if ($this->reqFbScripts($action)) {
$apikey = common_config('facebook', 'apikey'); $apikey = common_config('facebook', 'apikey');
$plugin_path = common_path('plugins/Facebook'); $plugin_path = 'plugins/Facebook';
$login_url = common_local_url('FBConnectAuth'); $login_url = common_local_url('FBConnectAuth');
$logout_url = common_local_url('logout'); $logout_url = common_local_url('logout');

View File

@ -89,7 +89,7 @@ class FacebookAction extends Action
function showScripts() function showScripts()
{ {
$this->script(common_path('plugins/Facebook/facebookapp.js')); $this->script('plugins/Facebook/facebookapp.js');
} }
/** /**

View File

@ -86,7 +86,11 @@ class MinifyPlugin extends Plugin
$url = parse_url($src); $url = parse_url($src);
if( empty($url['scheme']) && empty($url['host']) && empty($url['query']) && empty($url['fragment'])) if( empty($url['scheme']) && empty($url['host']) && empty($url['query']) && empty($url['fragment']))
{ {
if (strpos($src, 'plugins/') === 0 || strpos($src, 'local/') === 0) {
$src = $this->minifyUrl($src); $src = $this->minifyUrl($src);
} else {
$src = $this->minifyUrl('js/'.$src);
}
} }
} }
@ -96,7 +100,7 @@ class MinifyPlugin extends Plugin
&& is_null(common_config('theme', 'path')) && is_null(common_config('theme', 'path'))
&& is_null(common_config('theme', 'server')); && is_null(common_config('theme', 'server'));
$url = parse_url($src); $url = parse_url($src);
if( empty($url->scheme) && empty($url->host) && empty($url->query) && empty($url->fragment)) if( empty($url['scheme']) && empty($url['host']) && empty($url['query']) && empty($url['fragment']))
{ {
if(!isset($theme)) { if(!isset($theme)) {
$theme = common_config('site', 'theme'); $theme = common_config('site', 'theme');

View File

@ -1,17 +1,7 @@
<?php <?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 * StatusNet - the distributed open-source microblogging tool
* Copyright (C) 2009, StatusNet, Inc. * Copyright (C) 2009-2010, StatusNet, Inc.
* *
* This program is free software: you can redistribute it and/or modify * 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 * it under the terms of the GNU Affero General Public License as published by
@ -28,16 +18,13 @@ Author URI: http://status.net/
*/ */
/** /**
* @package FeedSubPlugin * @package OStatusPlugin
* @maintainer Brion Vibber <brion@status.net> * @maintainer Brion Vibber <brion@status.net>
*/ */
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
define('FEEDSUB_SERVICE', 100); // fixme -- avoid hardcoding these? set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/extlib/');
// We bundle the XML_Parse_Feed library...
set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/extlib');
class FeedSubException extends Exception class FeedSubException extends Exception
{ {
@ -73,15 +60,13 @@ class OStatusPlugin extends Plugin
$m->connect('main/push/callback/:feed', $m->connect('main/push/callback/:feed',
array('action' => 'pushcallback'), array('action' => 'pushcallback'),
array('feed' => '[0-9]+')); array('feed' => '[0-9]+'));
$m->connect('settings/feedsub',
array('action' => 'feedsubsettings'));
// Salmon endpoint // Salmon endpoint
$m->connect('main/salmon/user/:id', $m->connect('main/salmon/user/:id',
array('action' => 'salmon'), array('action' => 'usersalmon'),
array('id' => '[0-9]+')); array('id' => '[0-9]+'));
$m->connect('main/salmon/group/:id', $m->connect('main/salmon/group/:id',
array('action' => 'salmongroup'), array('action' => 'groupsalmon'),
array('id' => '[0-9]+')); array('id' => '[0-9]+'));
return true; return true;
} }
@ -93,9 +78,18 @@ class OStatusPlugin extends Plugin
*/ */
function onEndInitializeQueueManager(QueueManager $qm) function onEndInitializeQueueManager(QueueManager $qm)
{ {
$qm->connect('hubverify', 'HubVerifyQueueHandler'); // Prepare outgoing distributions after notice save.
$qm->connect('hubdistrib', 'HubDistribQueueHandler'); $qm->connect('ostatus', 'OStatusQueueHandler');
// Outgoing from our internal PuSH hub
$qm->connect('hubconf', 'HubConfQueueHandler');
$qm->connect('hubout', 'HubOutQueueHandler'); $qm->connect('hubout', 'HubOutQueueHandler');
// Outgoing Salmon replies (when we don't need a return value)
$qm->connect('salmon', 'SalmonQueueHandler');
// Incoming from a foreign PuSH hub
$qm->connect('pushin', 'PushInQueueHandler');
return true; return true;
} }
@ -104,7 +98,7 @@ class OStatusPlugin extends Plugin
*/ */
function onStartEnqueueNotice($notice, &$transports) function onStartEnqueueNotice($notice, &$transports)
{ {
$transports[] = 'hubdistrib'; $transports[] = 'ostatus';
return true; return true;
} }
@ -112,18 +106,23 @@ class OStatusPlugin extends Plugin
* Set up a PuSH hub link to our internal link for canonical timeline * Set up a PuSH hub link to our internal link for canonical timeline
* Atom feeds for users and groups. * Atom feeds for users and groups.
*/ */
function onStartApiAtom(AtomNoticeFeed $feed) function onStartApiAtom($feed)
{ {
$id = null; $id = null;
if ($feed instanceof AtomUserNoticeFeed) { if ($feed instanceof AtomUserNoticeFeed) {
$salmonAction = 'salmon'; $salmonAction = 'usersalmon';
$id = $feed->getUser()->id; $user = $feed->getUser();
$id = $user->id;
$profile = $user->getProfile();
$feed->setActivitySubject($profile->asActivityNoun('subject'));
} else if ($feed instanceof AtomGroupNoticeFeed) { } else if ($feed instanceof AtomGroupNoticeFeed) {
$salmonAction = 'salmongroup'; $salmonAction = 'groupsalmon';
$id = $feed->getGroup()->id; $group = $feed->getGroup();
$id = $group->id;
$feed->setActivitySubject($group->asActivitySubject());
} else { } else {
return; return true;
} }
if (!empty($id)) { if (!empty($id)) {
@ -138,23 +137,6 @@ class OStatusPlugin extends Plugin
$salmon = common_local_url($salmonAction, array('id' => $id)); $salmon = common_local_url($salmonAction, array('id' => $id));
$feed->addLink($salmon, array('rel' => 'salmon')); $feed->addLink($salmon, array('rel' => '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; return true;
} }
@ -171,6 +153,12 @@ class OStatusPlugin extends Plugin
{ {
$base = dirname(__FILE__); $base = dirname(__FILE__);
$lower = strtolower($cls); $lower = strtolower($cls);
$map = array('activityverb' => 'activity',
'activityobject' => 'activity',
'activityutils' => 'activity');
if (isset($map[$lower])) {
$lower = $map[$lower];
}
$files = array("$base/classes/$cls.php", $files = array("$base/classes/$cls.php",
"$base/lib/$lower.php"); "$base/lib/$lower.php");
if (substr($lower, -6) == 'action') { if (substr($lower, -6) == 'action') {
@ -213,60 +201,47 @@ class OStatusPlugin extends Plugin
* @fixme push webfinger lookup & sending to a background queue * @fixme push webfinger lookup & sending to a background queue
* @fixme also detect short-form name for remote subscribees where not ambiguous * @fixme also detect short-form name for remote subscribees where not ambiguous
*/ */
function onEndNoticeSave($notice) function onEndNoticeSave($notice)
{ {
$count = preg_match_all('/(\w+\.)*\w+@(\w+\.)*\w+(\w+\-\w+)*\.\w+/', $notice->content, $matches);
if ($count) {
foreach ($matches[0] as $webfinger) {
// FIXME: look up locally first
// 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;
}
// FIXME: this needs to go out in a queue handler
$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)
function onStartFindMentions($sender, $text, &$mentions)
{ {
$profile = Ostatus_profile::staticGet('profile_id', $other->id); preg_match_all('/(?:^|\s+)@((?:\w+\.)*\w+@(?:\w+\.)*\w+(?:\w+\-\w+)*\.\w+)/',
if ($feed) { $text,
$sub = new Subscription(); $wmatches,
$sub->subscribed = $other->id; PREG_OFFSET_CAPTURE);
$sub->limit(1);
if (!$sub->find(true)) { foreach ($wmatches[1] as $wmatch) {
common_log(LOG_INFO, "Unsubscribing from now-unused feed $feed->feeduri on hub $feed->huburi");
$profile->unsubscribe(); $webfinger = $wmatch[0];
$this->log(LOG_INFO, "Checking Webfinger for address '$webfinger'");
$oprofile = Ostatus_profile::ensureWebfinger($webfinger);
if (empty($oprofile)) {
$this->log(LOG_INFO, "No Ostatus_profile found for address '$webfinger'");
} else {
$this->log(LOG_INFO, "Ostatus_profile found for address '$webfinger'");
$profile = $oprofile->localProfile();
$mentions[] = array('mentioned' => array($profile),
'text' => $wmatch[0],
'position' => $wmatch[1],
'url' => $profile->profileurl);
} }
} }
return true; return true;
} }
@ -276,17 +251,464 @@ class OStatusPlugin extends Plugin
function onCheckSchema() { function onCheckSchema() {
$schema = Schema::get(); $schema = Schema::get();
$schema->ensureTable('ostatus_profile', Ostatus_profile::schemaDef()); $schema->ensureTable('ostatus_profile', Ostatus_profile::schemaDef());
$schema->ensureTable('ostatus_source', Ostatus_source::schemaDef());
$schema->ensureTable('feedsub', FeedSub::schemaDef());
$schema->ensureTable('hubsub', HubSub::schemaDef()); $schema->ensureTable('hubsub', HubSub::schemaDef());
$schema->ensureTable('magicsig', Magicsig::schemaDef());
return true; return true;
} }
function onEndShowStatusNetStyles($action) { function onEndShowStatusNetStyles($action) {
$action->cssLink(common_path('plugins/OStatus/theme/base/css/ostatus.css')); $action->cssLink('plugins/OStatus/theme/base/css/ostatus.css');
return true; return true;
} }
function onEndShowStatusNetScripts($action) { function onEndShowStatusNetScripts($action) {
$action->script(common_path('plugins/OStatus/js/ostatus.js')); $action->script('plugins/OStatus/js/ostatus.js');
return true;
}
/**
* Override the "from ostatus" bit in notice lists to link to the
* original post and show the domain it came from.
*
* @param Notice in $notice
* @param string out &$name
* @param string out &$url
* @param string out &$title
* @return mixed hook return code
*/
function onStartNoticeSourceLink($notice, &$name, &$url, &$title)
{
if ($notice->source == 'ostatus') {
if ($notice->url) {
$bits = parse_url($notice->url);
$domain = $bits['host'];
if (substr($domain, 0, 4) == 'www.') {
$name = substr($domain, 4);
} else {
$name = $domain;
}
$url = $notice->url;
$title = sprintf(_m("Sent from %s via OStatus"), $domain);
return false;
}
}
}
/**
* Send incoming PuSH feeds for OStatus endpoints in for processing.
*
* @param FeedSub $feedsub
* @param DOMDocument $feed
* @return mixed hook return code
*/
function onStartFeedSubReceive($feedsub, $feed)
{
$oprofile = Ostatus_profile::staticGet('feeduri', $feedsub->uri);
if ($oprofile) {
$oprofile->processFeed($feed, 'push');
} else {
common_log(LOG_DEBUG, "No ostatus profile for incoming feed $feedsub->uri");
}
}
/**
* When about to subscribe to a remote user, start a server-to-server
* PuSH subscription if needed. If we can't establish that, abort.
*
* @fixme If something else aborts later, we could end up with a stray
* PuSH subscription. This is relatively harmless, though.
*
* @param Profile $subscriber
* @param Profile $other
*
* @return hook return code
*
* @throws Exception
*/
function onStartSubscribe($subscriber, $other)
{
$user = User::staticGet('id', $subscriber->id);
if (empty($user)) {
return true;
}
$oprofile = Ostatus_profile::staticGet('profile_id', $other->id);
if (empty($oprofile)) {
return true;
}
if (!$oprofile->subscribe()) {
throw new Exception(_m('Could not set up remote subscription.'));
}
}
/**
* Having established a remote subscription, send a notification to the
* remote OStatus profile's endpoint.
*
* @param Profile $subscriber
* @param Profile $other
*
* @return hook return code
*
* @throws Exception
*/
function onEndSubscribe($subscriber, $other)
{
$user = User::staticGet('id', $subscriber->id);
if (empty($user)) {
return true;
}
$oprofile = Ostatus_profile::staticGet('profile_id', $other->id);
if (empty($oprofile)) {
return true;
}
$act = new Activity();
$act->verb = ActivityVerb::FOLLOW;
$act->id = TagURI::mint('follow:%d:%d:%s',
$subscriber->id,
$other->id,
common_date_iso8601(time()));
$act->time = time();
$act->title = _("Follow");
$act->content = sprintf(_("%s is now following %s."),
$subscriber->getBestName(),
$other->getBestName());
$act->actor = ActivityObject::fromProfile($subscriber);
$act->object = ActivityObject::fromProfile($other);
$oprofile->notifyActivity($act);
return true;
}
/**
* Notify remote server and garbage collect unused feeds on unsubscribe.
* @fixme send these operations to background queues
*
* @param User $user
* @param Profile $other
* @return hook return value
*/
function onEndUnsubscribe($profile, $other)
{
$user = User::staticGet('id', $profile->id);
if (empty($user)) {
return true;
}
$oprofile = Ostatus_profile::staticGet('profile_id', $other->id);
if (empty($oprofile)) {
return true;
}
// Drop the PuSH subscription if there are no other subscribers.
$oprofile->garbageCollect();
$act = new Activity();
$act->verb = ActivityVerb::UNFOLLOW;
$act->id = TagURI::mint('unfollow:%d:%d:%s',
$profile->id,
$other->id,
common_date_iso8601(time()));
$act->time = time();
$act->title = _("Unfollow");
$act->content = sprintf(_("%s stopped following %s."),
$profile->getBestName(),
$other->getBestName());
$act->actor = ActivityObject::fromProfile($profile);
$act->object = ActivityObject::fromProfile($other);
$oprofile->notifyActivity($act);
return true;
}
/**
* When one of our local users tries to join a remote group,
* notify the remote server. If the notification is rejected,
* deny the join.
*
* @param User_group $group
* @param User $user
*
* @return mixed hook return value
*/
function onStartJoinGroup($group, $user)
{
$oprofile = Ostatus_profile::staticGet('group_id', $group->id);
if ($oprofile) {
if (!$oprofile->subscribe()) {
throw new Exception(_m('Could not set up remote group membership.'));
}
$member = Profile::staticGet($user->id);
$act = new Activity();
$act->id = TagURI::mint('join:%d:%d:%s',
$member->id,
$group->id,
common_date_iso8601(time()));
$act->actor = ActivityObject::fromProfile($member);
$act->verb = ActivityVerb::JOIN;
$act->object = $oprofile->asActivityObject();
$act->time = time();
$act->title = _m("Join");
$act->content = sprintf(_m("%s has joined group %s."),
$member->getBestName(),
$oprofile->getBestName());
if ($oprofile->notifyActivity($act)) {
return true;
} else {
$oprofile->garbageCollect();
throw new Exception(_m("Failed joining remote group."));
}
}
}
/**
* When one of our local users leaves a remote group, notify the remote
* server.
*
* @fixme Might be good to schedule a resend of the leave notification
* if it failed due to a transitory error. We've canceled the local
* membership already anyway, but if the remote server comes back up
* it'll be left with a stray membership record.
*
* @param User_group $group
* @param User $user
*
* @return mixed hook return value
*/
function onEndLeaveGroup($group, $user)
{
$oprofile = Ostatus_profile::staticGet('group_id', $group->id);
if ($oprofile) {
// Drop the PuSH subscription if there are no other subscribers.
$oprofile->garbageCollect();
$member = Profile::staticGet($user->id);
$act = new Activity();
$act->id = TagURI::mint('leave:%d:%d:%s',
$member->id,
$group->id,
common_date_iso8601(time()));
$act->actor = ActivityObject::fromProfile($member);
$act->verb = ActivityVerb::LEAVE;
$act->object = $oprofile->asActivityObject();
$act->time = time();
$act->title = _m("Leave");
$act->content = sprintf(_m("%s has left group %s."),
$member->getBestName(),
$oprofile->getBestName());
$oprofile->notifyActivity($act);
}
}
/**
* Notify remote users when their notices get favorited.
*
* @param Profile or User $profile of local user doing the faving
* @param Notice $notice being favored
* @return hook return value
*/
function onEndFavorNotice(Profile $profile, Notice $notice)
{
$user = User::staticGet('id', $profile->id);
if (empty($user)) {
return true;
}
$oprofile = Ostatus_profile::staticGet('profile_id', $notice->profile_id);
if (empty($oprofile)) {
return true;
}
$act = new Activity();
$act->verb = ActivityVerb::FAVORITE;
$act->id = TagURI::mint('favor:%d:%d:%s',
$profile->id,
$notice->id,
common_date_iso8601(time()));
$act->time = time();
$act->title = _("Favor");
$act->content = sprintf(_("%s marked notice %s as a favorite."),
$profile->getBestName(),
$notice->uri);
$act->actor = ActivityObject::fromProfile($profile);
$act->object = ActivityObject::fromNotice($notice);
$oprofile->notifyActivity($act);
return true;
}
/**
* Notify remote users when their notices get de-favorited.
*
* @param Profile $profile Profile person doing the de-faving
* @param Notice $notice Notice being favored
*
* @return hook return value
*/
function onEndDisfavorNotice(Profile $profile, Notice $notice)
{
$user = User::staticGet('id', $profile->id);
if (empty($user)) {
return true;
}
$oprofile = Ostatus_profile::staticGet('profile_id', $notice->profile_id);
if (empty($oprofile)) {
return true;
}
$act = new Activity();
$act->verb = ActivityVerb::UNFAVORITE;
$act->id = TagURI::mint('disfavor:%d:%d:%s',
$profile->id,
$notice->id,
common_date_iso8601(time()));
$act->time = time();
$act->title = _("Disfavor");
$act->content = sprintf(_("%s marked notice %s as no longer a favorite."),
$profile->getBestName(),
$notice->uri);
$act->actor = ActivityObject::fromProfile($profile);
$act->object = ActivityObject::fromNotice($notice);
$oprofile->notifyActivity($act);
return true;
}
function onStartGetProfileUri($profile, &$uri)
{
$oprofile = Ostatus_profile::staticGet('profile_id', $profile->id);
if (!empty($oprofile)) {
$uri = $oprofile->uri;
return false;
}
return true;
}
function onStartUserGroupHomeUrl($group, &$url)
{
return $this->onStartUserGroupPermalink($group, &$url);
}
function onStartUserGroupPermalink($group, &$url)
{
$oprofile = Ostatus_profile::staticGet('group_id', $group->id);
if ($oprofile) {
// @fixme this should probably be in the user_group table
// @fixme this uri not guaranteed to be a profile page
$url = $oprofile->uri;
return false;
}
}
function onStartShowSubscriptionsContent($action)
{
$user = common_current_user();
if ($user && ($user->id == $action->profile->id)) {
$action->elementStart('div', 'entity_actions');
$action->elementStart('p', array('id' => 'entity_remote_subscribe',
'class' => 'entity_subscribe'));
$action->element('a', array('href' => common_local_url('ostatussub'),
'class' => 'entity_remote_subscribe')
, _m('Subscribe to remote user'));
$action->elementEnd('p');
$action->elementEnd('div');
}
return true;
}
/**
* Ping remote profiles with updates to this profile.
* Salmon pings are queued for background processing.
*/
function onEndBroadcastProfile(Profile $profile)
{
$user = User::staticGet('id', $profile->id);
// Find foreign accounts I'm subscribed to that support Salmon pings.
//
// @fixme we could run updates through the PuSH feed too,
// in which case we can skip Salmon pings to folks who
// are also subscribed to me.
$sql = "SELECT * FROM ostatus_profile " .
"WHERE profile_id IN " .
"(SELECT subscribed FROM subscription WHERE subscriber=%d) " .
"OR group_id IN " .
"(SELECT group_id FROM group_member WHERE profile_id=%d)";
$oprofile = new Ostatus_profile();
$oprofile->query(sprintf($sql, $profile->id, $profile->id));
if ($oprofile->N == 0) {
common_log(LOG_DEBUG, "No OStatus remote subscribees for $profile->nickname");
return true;
}
$act = new Activity();
$act->verb = ActivityVerb::UPDATE_PROFILE;
$act->id = TagURI::mint('update-profile:%d:%s',
$profile->id,
common_date_iso8601(time()));
$act->time = time();
$act->title = _m("Profile update");
$act->content = sprintf(_m("%s has updated their profile page."),
$profile->getBestName());
$act->actor = ActivityObject::fromProfile($profile);
$act->object = $act->actor;
while ($oprofile->fetch()) {
$oprofile->notifyDeferred($act);
}
return true; return true;
} }
} }

View File

@ -2,23 +2,33 @@ Plugin to support importing updates from external RSS and Atom feeds into your t
Uses PubSubHubbub for push feed updates; currently non-PuSH feeds cannot be subscribed. Uses PubSubHubbub for push feed updates; currently non-PuSH feeds cannot be subscribed.
Configuration options available:
$config['ostatus']['hub']
(default internal hub)
Set to URL of an external PuSH hub to use it instead of our internal hub.
$config['ostatus']['hub_retries']
(default 0)
Number of times to retry a PuSH send to consumers if using internal hub
For testing, shouldn't be used in production:
$config['ostatus']['skip_signatures']
(default use signatures)
Disable generation and validation of Salmon magicenv signatures
$config['feedsub']['nohub']
(default require hub)
Allow low-level feed subscription setup for feeds without hubs.
Not actually usable at this stage, OStatus will check for hubs too
and we have no polling backend.
Todo: Todo:
* set feed icon avatar for actual profiles as well as for preview * fully functional l10n
* use channel image and/or favicon for avatar? * redo non-OStatus feed support
* garbage-collect subscriptions that are no longer being used ** rssCloud support?
* administrative way to kill feeds? ** possibly a polling daemon to support non-PuSH feeds?
* functional l10n
* clean up subscription form look and workflow
* use ajax for test/preview in subscription form
* rssCloud support? (Does anything use it that doesn't support PuSH as well?)
* possibly a polling daemon to support non-PuSH feeds?
* likely problems with multiple feeds from the same site, such as category feeds on a blog
(currently each feed would publish a separate notice on a separate profile, but pointing to the same post URI.)
(could use the local URI I guess, but that's so icky!)
* problems with Atom feeds that list <link rel="alternate" href="..."/> but don't have the type
(such as http://atomgen.appspot.com/feed/5 demo feed); currently it's not recognized and we end up with the feed's master URI
* make it easier to see what you're subscribed to and unsub from things
* saner treatment of fullname/nickname?
* make use of tags/categories from feeds * make use of tags/categories from feeds
* update feed profile data when it changes
* XML_Feed_Parser has major problems with category and link tags; consider replacing?

View File

@ -1,269 +0,0 @@
<?php
/*
* 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); }
class FeedSubSettingsAction extends ConnectSettingsAction
{
protected $feedurl;
protected $preview;
protected $munger;
/**
* Title of the page
*
* @return string Title of the page
*/
function title()
{
return _m('Feed subscriptions');
}
/**
* Instructions for use
*
* @return instructions for use
*/
function getInstructions()
{
return _m('You can subscribe to feeds from other sites; ' .
'updates will appear in your personal timeline.');
}
/**
* Content area of the page
*
* Shows a form for associating a Twitter account with this
* StatusNet account. Also lets the user set preferences.
*
* @return void
*/
function showContent()
{
$user = common_current_user();
$profile = $user->getProfile();
$fuser = null;
$flink = Foreign_link::getByUserID($user->id, FEEDSUB_SERVICE);
if (!empty($flink)) {
$fuser = $flink->getForeignUser();
}
$this->elementStart('form', array('method' => 'post',
'id' => 'form_settings_feedsub',
'class' => 'form_settings',
'action' =>
common_local_url('feedsubsettings')));
$this->hidden('token', common_session_token());
$this->elementStart('fieldset', array('id' => 'settings_feeds'));
$this->elementStart('ul', 'form_data');
$this->elementStart('li', array('id' => 'settings_twitter_login_button'));
$this->input('feedurl', _('Feed URL'), $this->feedurl, _('Enter the URL of a PubSubHubbub-enabled feed'));
$this->elementEnd('li');
$this->elementEnd('ul');
if ($this->preview) {
$this->submit('subscribe', _m('Subscribe'));
} else {
$this->submit('validate', _m('Continue'));
}
$this->elementEnd('fieldset');
$this->elementEnd('form');
if ($this->preview) {
$this->previewFeed();
}
}
/**
* Handle posts to this form
*
* Based on the button that was pressed, muxes out to other functions
* to do the actual task requested.
*
* All sub-functions reload the form with a message -- success or failure.
*
* @return void
*/
function handlePost()
{
// CSRF protection
$token = $this->trimmed('token');
if (!$token || $token != common_session_token()) {
$this->showForm(_('There was a problem with your session token. '.
'Try again, please.'));
return;
}
if ($this->arg('validate')) {
$this->validateAndPreview();
} else if ($this->arg('subscribe')) {
$this->saveFeed();
} else {
$this->showForm(_('Unexpected form submission.'));
}
}
/**
* Set up and add a feed
*
* @return boolean true if feed successfully read
* Sends you back to input form if not.
*/
function validateFeed()
{
$feedurl = trim($this->arg('feedurl'));
if ($feedurl == '') {
$this->showForm(_m('Empty feed URL!'));
return;
}
$this->feedurl = $feedurl;
// Get the canonical feed URI and check it
try {
$discover = new FeedDiscovery();
$uri = $discover->discoverFromURL($feedurl);
} catch (FeedSubBadURLException $e) {
$this->showForm(_m('Invalid URL or could not reach server.'));
return false;
} catch (FeedSubBadResponseException $e) {
$this->showForm(_m('Cannot read feed; server returned error.'));
return false;
} catch (FeedSubEmptyException $e) {
$this->showForm(_m('Cannot read feed; server returned an empty page.'));
return false;
} catch (FeedSubBadHTMLException $e) {
$this->showForm(_m('Bad HTML, could not find feed link.'));
return false;
} catch (FeedSubNoFeedException $e) {
$this->showForm(_m('Could not find a feed linked from this URL.'));
return false;
} catch (FeedSubUnrecognizedTypeException $e) {
$this->showForm(_m('Not a recognized feed type.'));
return false;
} catch (FeedSubException $e) {
// Any new ones we forgot about
$this->showForm(_m('Bad feed URL.'));
return false;
}
$this->munger = $discover->feedMunger();
$this->profile = $this->munger->ostatusProfile();
if ($this->profile->huburi == '' && !common_config('feedsub', 'nohub')) {
$this->showForm(_m('Feed is not PuSH-enabled; cannot subscribe.'));
return false;
}
return true;
}
function saveFeed()
{
if ($this->validateFeed()) {
$this->preview = true;
$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 ($this->profile->sub_start) {
common_log(LOG_INFO, __METHOD__ . ": double the fun! new sub for {$this->profile->feeduri} last subbed {$this->profile->sub_start}");
} else {
$ok = $this->profile->subscribe();
common_log(LOG_INFO, __METHOD__ . ": sub was $ok");
if (!$ok) {
$this->showForm(_m('Feed subscription failed! Bad response from hub.'));
return;
}
}
// And subscribe the current user to the local profile
$user = common_current_user();
if ($this->profile->isGroup()) {
$group = $this->profile->localGroup();
if ($user->isMember($group)) {
$this->showForm(_m('Already a member!'));
} 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 {
$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!'));
}
}
}
}
function validateAndPreview()
{
if ($this->validateFeed()) {
$this->preview = true;
$this->showForm(_m('Previewing feed:'));
}
}
function previewFeed()
{
$profile = $this->munger->ostatusProfile();
$notice = $this->munger->notice(0, true); // preview
if ($notice) {
$this->element('b', null, 'Preview of latest post from this feed:');
$item = new NoticeList($notice, $this);
$item->show();
} else {
$this->element('b', null, 'No posts in this feed yet.');
}
}
function showScripts()
{
parent::showScripts();
$this->autofocus('feedurl');
}
}

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