Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x

Conflicts:
	classes/statusnet.ini
This commit is contained in:
Evan Prodromou 2009-11-17 06:25:07 -05:00
commit 6a1afda259
99 changed files with 2613 additions and 1054 deletions

View File

@ -92,7 +92,7 @@ class ApiGroupIsMemberAction extends ApiBareAuthAction
} }
if (empty($this->group)) { if (empty($this->group)) {
$this->clientError('Group not found!', 404, $this->format); $this->clientError(_('Group not found!'), 404, $this->format);
return false; return false;
} }

View File

@ -101,7 +101,7 @@ class ApiGroupJoinAction extends ApiAuthAction
} }
if (empty($this->group)) { if (empty($this->group)) {
$this->clientError('Group not found!', 404, $this->format); $this->clientError(_('Group not found!'), 404, $this->format);
return false; return false;
} }

View File

@ -101,7 +101,7 @@ class ApiGroupLeaveAction extends ApiAuthAction
} }
if (empty($this->group)) { if (empty($this->group)) {
$this->clientError('Group not found!', 404, $this->format); $this->clientError(_('Group not found!'), 404, $this->format);
return false; return false;
} }

View File

@ -87,6 +87,11 @@ class ApiGroupMembershipAction extends ApiPrivateAuthAction
{ {
parent::handle($args); parent::handle($args);
if (empty($this->group)) {
$this->clientError(_('Group not found!'), 404, $this->format);
return false;
}
// XXX: RSS and Atom // XXX: RSS and Atom
switch($this->format) { switch($this->format) {

View File

@ -87,7 +87,7 @@ class ApiGroupShowAction extends ApiPrivateAuthAction
if (empty($this->group)) { if (empty($this->group)) {
$this->clientError( $this->clientError(
'Group not found!', _('Group not found!'),
404, 404,
$this->format $this->format
); );

View File

@ -69,7 +69,6 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction
parent::prepare($args); parent::prepare($args);
$this->group = $this->getTargetGroup($this->arg('id')); $this->group = $this->getTargetGroup($this->arg('id'));
$this->notices = $this->getNotices();
return true; return true;
} }
@ -87,6 +86,13 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction
function handle($args) function handle($args)
{ {
parent::handle($args); parent::handle($args);
if (empty($this->group)) {
$this->clientError(_('Group not found!'), 404, $this->format);
return false;
}
$this->notices = $this->getNotices();
$this->showTimeline(); $this->showTimeline();
} }

View File

@ -74,8 +74,11 @@ class UserbyidAction extends Action
$this->clientError(_('No such user.')); $this->clientError(_('No such user.'));
} }
// support redirecting to FOAF rdf/xml if the agent prefers it // Support redirecting to FOAF rdf/xml if the agent prefers it...
$page_prefs = 'application/rdf+xml,text/html,application/xhtml+xml,application/xml;q=0.3,text/xml;q=0.2'; // Internet Explorer doesn't specify "text/html" and does list "*/*"
// at least through version 8. We need to list text/html up front to
// ensure that only user-agents who specifically ask for RDF get it.
$page_prefs = 'text/html,application/xhtml+xml,application/rdf+xml,application/xml;q=0.3,text/xml;q=0.2';
$httpaccept = isset($_SERVER['HTTP_ACCEPT']) $httpaccept = isset($_SERVER['HTTP_ACCEPT'])
? $_SERVER['HTTP_ACCEPT'] : null; ? $_SERVER['HTTP_ACCEPT'] : null;
$type = common_negotiate_type(common_accept_to_prefs($httpaccept), $type = common_negotiate_type(common_accept_to_prefs($httpaccept),

View File

@ -0,0 +1,195 @@
<?php
/*
* StatusNet - the distributed open-source microblogging tool
* Copyright (C) 2008, 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/>.
*/
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
abstract class Plugin_DataObject extends Memcached_DataObject
{
function table() {
static $table = null;
if($table == null) {
$table = array();
$DB = $this->getDatabaseConnection();
$dbtype = $DB->phptype;
$tableDef = $this->tableDef();
foreach($tableDef->columns as $columnDef){
switch(strtoupper($columnDef->type)) {
/*shamelessly copied from DB_DataObject_Generator*/
case 'INT':
case 'INT2': // postgres
case 'INT4': // postgres
case 'INT8': // postgres
case 'SERIAL4': // postgres
case 'SERIAL8': // postgres
case 'INTEGER':
case 'TINYINT':
case 'SMALLINT':
case 'MEDIUMINT':
case 'BIGINT':
$type = DB_DATAOBJECT_INT;
if ($columnDef->size == 1) {
$type += DB_DATAOBJECT_BOOL;
}
break;
case 'REAL':
case 'DOUBLE':
case 'DOUBLE PRECISION': // double precision (firebird)
case 'FLOAT':
case 'FLOAT4': // real (postgres)
case 'FLOAT8': // double precision (postgres)
case 'DECIMAL':
case 'MONEY': // mssql and maybe others
case 'NUMERIC':
case 'NUMBER': // oci8
$type = DB_DATAOBJECT_INT; // should really by FLOAT!!! / MONEY...
break;
case 'YEAR':
$type = DB_DATAOBJECT_INT;
break;
case 'BIT':
case 'BOOL':
case 'BOOLEAN':
$type = DB_DATAOBJECT_BOOL;
// postgres needs to quote '0'
if ($dbtype == 'pgsql') {
$type += DB_DATAOBJECT_STR;
}
break;
case 'STRING':
case 'CHAR':
case 'VARCHAR':
case 'VARCHAR2':
case 'TINYTEXT':
case 'ENUM':
case 'SET': // not really but oh well
case 'POINT': // mysql geometry stuff - not really string - but will do..
case 'TIMESTAMPTZ': // postgres
case 'BPCHAR': // postgres
case 'INTERVAL': // postgres (eg. '12 days')
case 'CIDR': // postgres IP net spec
case 'INET': // postgres IP
case 'MACADDR': // postgress network Mac address.
case 'INTEGER[]': // postgres type
case 'BOOLEAN[]': // postgres type
$type = DB_DATAOBJECT_STR;
break;
case 'TEXT':
case 'MEDIUMTEXT':
case 'LONGTEXT':
$type = DB_DATAOBJECT_STR + DB_DATAOBJECT_TXT;
break;
case 'DATE':
$type = DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE;
break;
case 'TIME':
$type = DB_DATAOBJECT_STR + DB_DATAOBJECT_TIME;
break;
case 'DATETIME':
$type = DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME;
break;
case 'TIMESTAMP': // do other databases use this???
$type = ($dbtype == 'mysql') ?
DB_DATAOBJECT_MYSQLTIMESTAMP :
DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME;
break;
case 'BLOB': /// these should really be ignored!!!???
case 'TINYBLOB':
case 'MEDIUMBLOB':
case 'LONGBLOB':
case 'CLOB': // oracle character lob support
case 'BYTEA': // postgres blob support..
$type = DB_DATAOBJECT_STR + DB_DATAOBJECT_BLOB;
break;
default:
throw new Exception("Cannot handle datatype: $columnDef->type");
}
if(! $columnDef->nullable) {
$type+=DB_DATAOBJECT_NOTNULL;
}
$table[$columnDef->name]=$type;
}
}
return $table;
}
function keys() {
static $keys = null;
if($keys == null) {
$keys = array();
$tableDef = $this->tableDef();
foreach($tableDef->columns as $columnDef){
if($columnDef->key != null){
$keys[] = $columnDef->name;
}
}
}
return $keys;
}
function sequenceKey() {
static $sequenceKey = null;
if($sequenceKey == null) {
$sequenceKey = array(false,false);
$tableDef = $this->tableDef();
foreach($tableDef->columns as $columnDef){
if($columnDef->key == 'PRI' && $columnDef->auto_increment){
$sequenceKey=array($columnDef->name,true);
}
}
}
return $sequenceKey;
}
/**
* Get the TableDef object that represents the table backing this class
* Ideally, this function would a static function, but PHP doesn't allow
* abstract static functions
* @return TableDef TableDef instance
*/
abstract function tableDef();
}

View File

@ -310,10 +310,12 @@ class Profile extends Memcached_DataObject
'AND subscription.subscribed != subscription.subscriber ' . 'AND subscription.subscribed != subscription.subscriber ' .
'ORDER BY subscription.created DESC '; 'ORDER BY subscription.created DESC ';
if (common_config('db','type') == 'pgsql') { if ($offset>0 && !is_null($limit)){
$qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; if (common_config('db','type') == 'pgsql') {
} else { $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
$qry .= ' LIMIT ' . $offset . ', ' . $limit; } else {
$qry .= ' LIMIT ' . $offset . ', ' . $limit;
}
} }
$profile = new Profile(); $profile = new Profile();
@ -333,11 +335,13 @@ class Profile extends Memcached_DataObject
'AND subscription.subscribed != subscription.subscriber ' . 'AND subscription.subscribed != subscription.subscriber ' .
'ORDER BY subscription.created DESC '; 'ORDER BY subscription.created DESC ';
if ($offset) { if ($offset>0 && !is_null($limit)){
if (common_config('db','type') == 'pgsql') { if ($offset) {
$qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; if (common_config('db','type') == 'pgsql') {
} else { $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
$qry .= ' LIMIT ' . $offset . ', ' . $limit; } else {
$qry .= ' LIMIT ' . $offset . ', ' . $limit;
}
} }
} }

View File

@ -577,11 +577,13 @@ class User extends Memcached_DataObject
'WHERE group_member.profile_id = %d ' . 'WHERE group_member.profile_id = %d ' .
'ORDER BY group_member.created DESC '; 'ORDER BY group_member.created DESC ';
if ($offset) { if ($offset>0 && !is_null($limit)) {
if (common_config('db','type') == 'pgsql') { if ($offset) {
$qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; if (common_config('db','type') == 'pgsql') {
} else { $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
$qry .= ' LIMIT ' . $offset . ', ' . $limit; } else {
$qry .= ' LIMIT ' . $offset . ', ' . $limit;
}
} }
} }

View File

@ -542,4 +542,4 @@ created = 142
modified = 384 modified = 384
[user_group__keys] [user_group__keys]
id = N id = N

View File

@ -746,7 +746,7 @@ class PEAR
{ {
if (!extension_loaded($ext)) { if (!extension_loaded($ext)) {
// if either returns true dl() will produce a FATAL error, stop that // if either returns true dl() will produce a FATAL error, stop that
if ((ini_get('enable_dl') != 1) || (ini_get('safe_mode') == 1) || !function_exists('dl')) { if ((ini_get('enable_dl') != 1) || (ini_get('safe_mode') == 1)) {
return false; return false;
} }
if (OS_WINDOWS) { if (OS_WINDOWS) {

View File

@ -66,12 +66,13 @@ class Stomp
protected $_sessionId; protected $_sessionId;
protected $_read_timeout_seconds = 60; protected $_read_timeout_seconds = 60;
protected $_read_timeout_milliseconds = 0; protected $_read_timeout_milliseconds = 0;
protected $_connect_timeout_seconds = 60;
/** /**
* Constructor * Constructor
* *
* @param string $brokerUri Broker URL * @param string $brokerUri Broker URL
* @throws Stomp_Exception * @throws StompException
*/ */
public function __construct ($brokerUri) public function __construct ($brokerUri)
{ {
@ -81,7 +82,7 @@ class Stomp
/** /**
* Initialize connection * Initialize connection
* *
* @throws Stomp_Exception * @throws StompException
*/ */
protected function _init () protected function _init ()
{ {
@ -103,14 +104,14 @@ class Stomp
} }
} else { } else {
require_once 'Stomp/Exception.php'; require_once 'Stomp/Exception.php';
throw new Stomp_Exception("Bad Broker URL {$this->_brokerUri}"); throw new StompException("Bad Broker URL {$this->_brokerUri}");
} }
} }
/** /**
* Process broker URL * Process broker URL
* *
* @param string $url Broker URL * @param string $url Broker URL
* @throws Stomp_Exception * @throws StompException
* @return boolean * @return boolean
*/ */
protected function _processUrl ($url) protected function _processUrl ($url)
@ -120,19 +121,19 @@ class Stomp
array_push($this->_hosts, array($parsed['host'] , $parsed['port'] , $parsed['scheme'])); array_push($this->_hosts, array($parsed['host'] , $parsed['port'] , $parsed['scheme']));
} else { } else {
require_once 'Stomp/Exception.php'; require_once 'Stomp/Exception.php';
throw new Stomp_Exception("Bad Broker URL $url"); throw new StompException("Bad Broker URL $url");
} }
} }
/** /**
* Make socket connection to the server * Make socket connection to the server
* *
* @throws Stomp_Exception * @throws StompException
*/ */
protected function _makeConnection () protected function _makeConnection ()
{ {
if (count($this->_hosts) == 0) { if (count($this->_hosts) == 0) {
require_once 'Stomp/Exception.php'; require_once 'Stomp/Exception.php';
throw new Stomp_Exception("No broker defined"); throw new StompException("No broker defined");
} }
// force disconnect, if previous established connection exists // force disconnect, if previous established connection exists
@ -141,6 +142,9 @@ class Stomp
$i = $this->_currentHost; $i = $this->_currentHost;
$att = 0; $att = 0;
$connected = false; $connected = false;
$connect_errno = null;
$connect_errstr = null;
while (! $connected && $att ++ < $this->_attempts) { while (! $connected && $att ++ < $this->_attempts) {
if (isset($this->_params['randomize']) && $this->_params['randomize'] == 'true') { if (isset($this->_params['randomize']) && $this->_params['randomize'] == 'true') {
$i = rand(0, count($this->_hosts) - 1); $i = rand(0, count($this->_hosts) - 1);
@ -158,10 +162,10 @@ class Stomp
fclose($this->_socket); fclose($this->_socket);
$this->_socket = null; $this->_socket = null;
} }
$this->_socket = @fsockopen($scheme . '://' . $host, $port); $this->_socket = @fsockopen($scheme . '://' . $host, $port, $connect_errno, $connect_errstr, $this->_connect_timeout_seconds);
if (!is_resource($this->_socket) && $att >= $this->_attempts && !array_key_exists($i + 1, $this->_hosts)) { if (!is_resource($this->_socket) && $att >= $this->_attempts && !array_key_exists($i + 1, $this->_hosts)) {
require_once 'Stomp/Exception.php'; require_once 'Stomp/Exception.php';
throw new Stomp_Exception("Could not connect to $host:$port ($att/{$this->_attempts})"); throw new StompException("Could not connect to $host:$port ($att/{$this->_attempts})");
} else if (is_resource($this->_socket)) { } else if (is_resource($this->_socket)) {
$connected = true; $connected = true;
$this->_currentHost = $i; $this->_currentHost = $i;
@ -170,7 +174,7 @@ class Stomp
} }
if (! $connected) { if (! $connected) {
require_once 'Stomp/Exception.php'; require_once 'Stomp/Exception.php';
throw new Stomp_Exception("Could not connect to a broker"); throw new StompException("Could not connect to a broker");
} }
} }
/** /**
@ -179,7 +183,7 @@ class Stomp
* @param string $username * @param string $username
* @param string $password * @param string $password
* @return boolean * @return boolean
* @throws Stomp_Exception * @throws StompException
*/ */
public function connect ($username = '', $password = '') public function connect ($username = '', $password = '')
{ {
@ -194,18 +198,18 @@ class Stomp
if ($this->clientId != null) { if ($this->clientId != null) {
$headers["client-id"] = $this->clientId; $headers["client-id"] = $this->clientId;
} }
$frame = new Stomp_Frame("CONNECT", $headers); $frame = new StompFrame("CONNECT", $headers);
$this->_writeFrame($frame); $this->_writeFrame($frame);
$frame = $this->readFrame(); $frame = $this->readFrame();
if ($frame instanceof Stomp_Frame && $frame->command == 'CONNECTED') { if ($frame instanceof StompFrame && $frame->command == 'CONNECTED') {
$this->_sessionId = $frame->headers["session"]; $this->_sessionId = $frame->headers["session"];
return true; return true;
} else { } else {
require_once 'Stomp/Exception.php'; require_once 'Stomp/Exception.php';
if ($frame instanceof Stomp_Frame) { if ($frame instanceof StompFrame) {
throw new Stomp_Exception("Unexpected command: {$frame->command}", 0, $frame->body); throw new StompException("Unexpected command: {$frame->command}", 0, $frame->body);
} else { } else {
throw new Stomp_Exception("Connection not acknowledged"); throw new StompException("Connection not acknowledged");
} }
} }
} }
@ -232,21 +236,21 @@ class Stomp
* Send a message to a destination in the messaging system * Send a message to a destination in the messaging system
* *
* @param string $destination Destination queue * @param string $destination Destination queue
* @param string|Stomp_Frame $msg Message * @param string|StompFrame $msg Message
* @param array $properties * @param array $properties
* @param boolean $sync Perform request synchronously * @param boolean $sync Perform request synchronously
* @return boolean * @return boolean
*/ */
public function send ($destination, $msg, $properties = null, $sync = null) public function send ($destination, $msg, $properties = array(), $sync = null)
{ {
if ($msg instanceof Stomp_Frame) { if ($msg instanceof StompFrame) {
$msg->headers['destination'] = $destination; $msg->headers['destination'] = $destination;
$msg->headers = array_merge($msg->headers, $properties); if (is_array($properties)) $msg->headers = array_merge($msg->headers, $properties);
$frame = $msg; $frame = $msg;
} else { } else {
$headers = $properties; $headers = $properties;
$headers['destination'] = $destination; $headers['destination'] = $destination;
$frame = new Stomp_Frame('SEND', $headers, $msg); $frame = new StompFrame('SEND', $headers, $msg);
} }
$this->_prepareReceipt($frame, $sync); $this->_prepareReceipt($frame, $sync);
$this->_writeFrame($frame); $this->_writeFrame($frame);
@ -255,10 +259,10 @@ class Stomp
/** /**
* Prepair frame receipt * Prepair frame receipt
* *
* @param Stomp_Frame $frame * @param StompFrame $frame
* @param boolean $sync * @param boolean $sync
*/ */
protected function _prepareReceipt (Stomp_Frame $frame, $sync) protected function _prepareReceipt (StompFrame $frame, $sync)
{ {
$receive = $this->sync; $receive = $this->sync;
if ($sync !== null) { if ($sync !== null) {
@ -271,12 +275,12 @@ class Stomp
/** /**
* Wait for receipt * Wait for receipt
* *
* @param Stomp_Frame $frame * @param StompFrame $frame
* @param boolean $sync * @param boolean $sync
* @return boolean * @return boolean
* @throws Stomp_Exception * @throws StompException
*/ */
protected function _waitForReceipt (Stomp_Frame $frame, $sync) protected function _waitForReceipt (StompFrame $frame, $sync)
{ {
$receive = $this->sync; $receive = $this->sync;
@ -289,19 +293,19 @@ class Stomp
return true; return true;
} }
$frame = $this->readFrame(); $frame = $this->readFrame();
if ($frame instanceof Stomp_Frame && $frame->command == 'RECEIPT') { if ($frame instanceof StompFrame && $frame->command == 'RECEIPT') {
if ($frame->headers['receipt-id'] == $id) { if ($frame->headers['receipt-id'] == $id) {
return true; return true;
} else { } else {
require_once 'Stomp/Exception.php'; require_once 'Stomp/Exception.php';
throw new Stomp_Exception("Unexpected receipt id {$frame->headers['receipt-id']}", 0, $frame->body); throw new StompException("Unexpected receipt id {$frame->headers['receipt-id']}", 0, $frame->body);
} }
} else { } else {
require_once 'Stomp/Exception.php'; require_once 'Stomp/Exception.php';
if ($frame instanceof Stomp_Frame) { if ($frame instanceof StompFrame) {
throw new Stomp_Exception("Unexpected command {$frame->command}", 0, $frame->body); throw new StompException("Unexpected command {$frame->command}", 0, $frame->body);
} else { } else {
throw new Stomp_Exception("Receipt not received"); throw new StompException("Receipt not received");
} }
} }
} }
@ -314,7 +318,7 @@ class Stomp
* @param array $properties * @param array $properties
* @param boolean $sync Perform request synchronously * @param boolean $sync Perform request synchronously
* @return boolean * @return boolean
* @throws Stomp_Exception * @throws StompException
*/ */
public function subscribe ($destination, $properties = null, $sync = null) public function subscribe ($destination, $properties = null, $sync = null)
{ {
@ -329,7 +333,7 @@ class Stomp
} }
} }
$headers['destination'] = $destination; $headers['destination'] = $destination;
$frame = new Stomp_Frame('SUBSCRIBE', $headers); $frame = new StompFrame('SUBSCRIBE', $headers);
$this->_prepareReceipt($frame, $sync); $this->_prepareReceipt($frame, $sync);
$this->_writeFrame($frame); $this->_writeFrame($frame);
if ($this->_waitForReceipt($frame, $sync) == true) { if ($this->_waitForReceipt($frame, $sync) == true) {
@ -346,7 +350,7 @@ class Stomp
* @param array $properties * @param array $properties
* @param boolean $sync Perform request synchronously * @param boolean $sync Perform request synchronously
* @return boolean * @return boolean
* @throws Stomp_Exception * @throws StompException
*/ */
public function unsubscribe ($destination, $properties = null, $sync = null) public function unsubscribe ($destination, $properties = null, $sync = null)
{ {
@ -357,7 +361,7 @@ class Stomp
} }
} }
$headers['destination'] = $destination; $headers['destination'] = $destination;
$frame = new Stomp_Frame('UNSUBSCRIBE', $headers); $frame = new StompFrame('UNSUBSCRIBE', $headers);
$this->_prepareReceipt($frame, $sync); $this->_prepareReceipt($frame, $sync);
$this->_writeFrame($frame); $this->_writeFrame($frame);
if ($this->_waitForReceipt($frame, $sync) == true) { if ($this->_waitForReceipt($frame, $sync) == true) {
@ -373,7 +377,7 @@ class Stomp
* @param string $transactionId * @param string $transactionId
* @param boolean $sync Perform request synchronously * @param boolean $sync Perform request synchronously
* @return boolean * @return boolean
* @throws Stomp_Exception * @throws StompException
*/ */
public function begin ($transactionId = null, $sync = null) public function begin ($transactionId = null, $sync = null)
{ {
@ -381,7 +385,7 @@ class Stomp
if (isset($transactionId)) { if (isset($transactionId)) {
$headers['transaction'] = $transactionId; $headers['transaction'] = $transactionId;
} }
$frame = new Stomp_Frame('BEGIN', $headers); $frame = new StompFrame('BEGIN', $headers);
$this->_prepareReceipt($frame, $sync); $this->_prepareReceipt($frame, $sync);
$this->_writeFrame($frame); $this->_writeFrame($frame);
return $this->_waitForReceipt($frame, $sync); return $this->_waitForReceipt($frame, $sync);
@ -392,7 +396,7 @@ class Stomp
* @param string $transactionId * @param string $transactionId
* @param boolean $sync Perform request synchronously * @param boolean $sync Perform request synchronously
* @return boolean * @return boolean
* @throws Stomp_Exception * @throws StompException
*/ */
public function commit ($transactionId = null, $sync = null) public function commit ($transactionId = null, $sync = null)
{ {
@ -400,7 +404,7 @@ class Stomp
if (isset($transactionId)) { if (isset($transactionId)) {
$headers['transaction'] = $transactionId; $headers['transaction'] = $transactionId;
} }
$frame = new Stomp_Frame('COMMIT', $headers); $frame = new StompFrame('COMMIT', $headers);
$this->_prepareReceipt($frame, $sync); $this->_prepareReceipt($frame, $sync);
$this->_writeFrame($frame); $this->_writeFrame($frame);
return $this->_waitForReceipt($frame, $sync); return $this->_waitForReceipt($frame, $sync);
@ -417,7 +421,7 @@ class Stomp
if (isset($transactionId)) { if (isset($transactionId)) {
$headers['transaction'] = $transactionId; $headers['transaction'] = $transactionId;
} }
$frame = new Stomp_Frame('ABORT', $headers); $frame = new StompFrame('ABORT', $headers);
$this->_prepareReceipt($frame, $sync); $this->_prepareReceipt($frame, $sync);
$this->_writeFrame($frame); $this->_writeFrame($frame);
return $this->_waitForReceipt($frame, $sync); return $this->_waitForReceipt($frame, $sync);
@ -426,15 +430,19 @@ class Stomp
* Acknowledge consumption of a message from a subscription * Acknowledge consumption of a message from a subscription
* Note: This operation is always asynchronous * Note: This operation is always asynchronous
* *
* @param string|Stomp_Frame $messageMessage ID * @param string|StompFrame $messageMessage ID
* @param string $transactionId * @param string $transactionId
* @return boolean * @return boolean
* @throws Stomp_Exception * @throws StompException
*/ */
public function ack ($message, $transactionId = null) public function ack ($message, $transactionId = null)
{ {
if ($message instanceof Stomp_Frame) { if ($message instanceof StompFrame) {
$frame = new Stomp_Frame('ACK', $message->headers); $headers = $message->headers;
if (isset($transactionId)) {
$headers['transaction'] = $transactionId;
}
$frame = new StompFrame('ACK', $headers);
$this->_writeFrame($frame); $this->_writeFrame($frame);
return true; return true;
} else { } else {
@ -443,7 +451,7 @@ class Stomp
$headers['transaction'] = $transactionId; $headers['transaction'] = $transactionId;
} }
$headers['message-id'] = $message; $headers['message-id'] = $message;
$frame = new Stomp_Frame('ACK', $headers); $frame = new StompFrame('ACK', $headers);
$this->_writeFrame($frame); $this->_writeFrame($frame);
return true; return true;
} }
@ -461,7 +469,7 @@ class Stomp
} }
if (is_resource($this->_socket)) { if (is_resource($this->_socket)) {
$this->_writeFrame(new Stomp_Frame('DISCONNECT', $headers)); $this->_writeFrame(new StompFrame('DISCONNECT', $headers));
fclose($this->_socket); fclose($this->_socket);
} }
$this->_socket = null; $this->_socket = null;
@ -474,13 +482,13 @@ class Stomp
/** /**
* Write frame to server * Write frame to server
* *
* @param Stomp_Frame $stompFrame * @param StompFrame $stompFrame
*/ */
protected function _writeFrame (Stomp_Frame $stompFrame) protected function _writeFrame (StompFrame $stompFrame)
{ {
if (!is_resource($this->_socket)) { if (!is_resource($this->_socket)) {
require_once 'Stomp/Exception.php'; require_once 'Stomp/Exception.php';
throw new Stomp_Exception('Socket connection hasn\'t been established'); throw new StompException('Socket connection hasn\'t been established');
} }
$data = $stompFrame->__toString(); $data = $stompFrame->__toString();
@ -504,9 +512,9 @@ class Stomp
} }
/** /**
* Read responce frame from server * Read response frame from server
* *
* @return Stomp_Frame|Stomp_Message_Map|boolean False when no frame to read * @return StompFrame False when no frame to read
*/ */
public function readFrame () public function readFrame ()
{ {
@ -516,15 +524,21 @@ class Stomp
$rb = 1024; $rb = 1024;
$data = ''; $data = '';
$end = false;
do { do {
$read = fgets($this->_socket, $rb); $read = fread($this->_socket, $rb);
if ($read === false) { if ($read === false) {
$this->_reconnect(); $this->_reconnect();
return $this->readFrame(); return $this->readFrame();
} }
$data .= $read; $data .= $read;
if (strpos($data, "\x00") !== false) {
$end = true;
$data = rtrim($data, "\n");
}
$len = strlen($data); $len = strlen($data);
} while (($len < 2 || ! ($data[$len - 2] == "\x00" && $data[$len - 1] == "\n"))); } while ($len < 2 || $end == false);
list ($header, $body) = explode("\n\n", $data, 2); list ($header, $body) = explode("\n\n", $data, 2);
$header = explode("\n", $header); $header = explode("\n", $header);
@ -538,13 +552,14 @@ class Stomp
$command = $v; $command = $v;
} }
} }
$frame = new Stomp_Frame($command, $headers, trim($body)); $frame = new StompFrame($command, $headers, trim($body));
if (isset($frame->headers['amq-msg-type']) && $frame->headers['amq-msg-type'] == 'MapMessage') { if (isset($frame->headers['transformation']) && $frame->headers['transformation'] == 'jms-map-json') {
require_once 'Stomp/Message/Map.php'; require_once 'Stomp/Message/Map.php';
return new Stomp_Message_Map($frame); return new StompMessageMap($frame);
} else { } else {
return $frame; return $frame;
} }
return $frame;
} }
/** /**
@ -558,10 +573,14 @@ class Stomp
$write = null; $write = null;
$except = null; $except = null;
$has_frame_to_read = stream_select($read, $write, $except, $this->_read_timeout_seconds, $this->_read_timeout_milliseconds); $has_frame_to_read = @stream_select($read, $write, $except, $this->_read_timeout_seconds, $this->_read_timeout_milliseconds);
if ($has_frame_to_read !== false)
$has_frame_to_read = count($read);
if ($has_frame_to_read === false) { if ($has_frame_to_read === false) {
throw new Stomp_Exception('Check failed to determin if the socket is readable'); throw new StompException('Check failed to determine if the socket is readable');
} else if ($has_frame_to_read > 0) { } else if ($has_frame_to_read > 0) {
return true; return true;
} else { } else {

View File

@ -23,10 +23,8 @@
* *
* *
* @package Stomp * @package Stomp
* @author Michael Caplan <mcaplan@labnet.net> */
* @version $Revision: 23 $ class StompException extends Exception
*/
class Stomp_Exception extends Exception
{ {
protected $_details; protected $_details;
@ -53,5 +51,5 @@ class Stomp_Exception extends Exception
{ {
return $this->_details; return $this->_details;
} }
} }
?> ?>

View File

@ -1,33 +1,29 @@
<?php <?php
/** /**
* *
* Copyright 2005-2006 The Apache Software Foundation * Copyright 2005-2006 The Apache Software Foundation
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
* You may obtain a copy of the License at * You may obtain a copy of the License at
* *
* http://www.apache.org/licenses/LICENSE-2.0 * http://www.apache.org/licenses/LICENSE-2.0
* *
* Unless required by applicable law or agreed to in writing, software * Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, * distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and * See the License for the specific language governing permissions and
* limitations under the License. * limitations under the License.
*/ */
/* vim: set expandtab tabstop=3 shiftwidth=3: */ /* vim: set expandtab tabstop=3 shiftwidth=3: */
/** /**
* Stomp Frames are messages that are sent and received on a StompConnection. * Stomp Frames are messages that are sent and received on a stomp connection.
* *
* @package Stomp * @package Stomp
* @author Hiram Chirino <hiram@hiramchirino.com>
* @author Dejan Bosanac <dejan@nighttale.net>
* @author Michael Caplan <mcaplan@labnet.net>
* @version $Revision: 36 $
*/ */
class Stomp_Frame class StompFrame
{ {
public $command; public $command;
public $headers = array(); public $headers = array();
@ -54,27 +50,27 @@ class Stomp_Frame
$this->body = $body; $this->body = $body;
if ($this->command == 'ERROR') { if ($this->command == 'ERROR') {
require_once 'Stomp/Exception.php'; require_once 'Exception.php';
throw new Stomp_Exception($this->headers['message'], 0, $this->body); throw new StompException($this->headers['message'], 0, $this->body);
} }
} }
/** /**
* Convert frame to transportable string * Convert frame to transportable string
* *
* @return string * @return string
*/ */
public function __toString() public function __toString()
{ {
$data = $this->command . "\n"; $data = $this->command . "\n";
foreach ($this->headers as $name => $value) { foreach ($this->headers as $name => $value) {
$data .= $name . ": " . $value . "\n"; $data .= $name . ": " . $value . "\n";
} }
$data .= "\n"; $data .= "\n";
$data .= $this->body; $data .= $this->body;
return $data .= "\x00\n"; return $data .= "\x00";
} }
} }
?> ?>

View File

@ -24,10 +24,8 @@ require_once 'Stomp/Frame.php';
* Basic text stomp message * Basic text stomp message
* *
* @package Stomp * @package Stomp
* @author Dejan Bosanac <dejan@nighttale.net>
* @version $Revision: 23 $
*/ */
class Stomp_Message extends Stomp_Frame class StompMessage extends StompFrame
{ {
public function __construct ($body, $headers = null) public function __construct ($body, $headers = null)
{ {

View File

@ -24,30 +24,28 @@ require_once 'Stomp/Message.php';
* Message that contains a set of name-value pairs * Message that contains a set of name-value pairs
* *
* @package Stomp * @package Stomp
* @author Dejan Bosanac <dejan@nighttale.net>
* @version $Revision: 23 $
*/ */
class Stomp_Message_Map extends Stomp_Message class StompMessageMap extends StompMessage
{ {
public $map; public $map;
/** /**
* Constructor * Constructor
* *
* @param Stomp_Frame|string $msg * @param StompFrame|string $msg
* @param array $headers * @param array $headers
*/ */
function __construct ($msg, $headers = null) function __construct ($msg, $headers = null)
{ {
if ($msg instanceof Stomp_Frame) { if ($msg instanceof StompFrame) {
$this->_init($msg->command, $msg->headers, $msg->body); $this->_init($msg->command, $msg->headers, $msg->body);
$this->map = json_decode($msg->body); $this->map = json_decode($msg->body, true);
} else { } else {
$this->_init("SEND", $headers, $msg); $this->_init("SEND", $headers, $msg);
if ($this->headers == null) { if ($this->headers == null) {
$this->headers = array(); $this->headers = array();
} }
$this->headers['amq-msg-type'] = 'MapMessage'; $this->headers['transformation'] = 'jms-map-json';
$this->body = json_encode($msg); $this->body = json_encode($msg);
} }
} }

View File

@ -605,6 +605,71 @@ class LoginCommand extends Command
} }
} }
class SubscriptionsCommand extends Command
{
function execute($channel)
{
$profile = $this->user->getSubscriptions(0);
$nicknames=array();
while ($profile->fetch()) {
$nicknames[]=$profile->nickname;
}
if(count($nicknames)==0){
$out=_('You are not subscribed to anyone.');
}else{
$out = ngettext('You are subscribed to this person:',
'You are subscribed to these people:',
count($nicknames));
$out .= ' ';
$out .= implode(', ',$nicknames);
}
$channel->output($this->user,$out);
}
}
class SubscribersCommand extends Command
{
function execute($channel)
{
$profile = $this->user->getSubscribers();
$nicknames=array();
while ($profile->fetch()) {
$nicknames[]=$profile->nickname;
}
if(count($nicknames)==0){
$out=_('No one is subscribed to you.');
}else{
$out = ngettext('This person is subscribed to you:',
'These people are subscribed to you:',
count($nicknames));
$out .= ' ';
$out .= implode(', ',$nicknames);
}
$channel->output($this->user,$out);
}
}
class GroupsCommand extends Command
{
function execute($channel)
{
$group = $this->user->getGroups();
$groups=array();
while ($group->fetch()) {
$groups[]=$group->nickname;
}
if(count($groups)==0){
$out=_('You are not a member of any groups.');
}else{
$out = ngettext('You are a member of this group:',
'You are a member of these groups:',
count($nicknames));
$out.=implode(', ',$groups);
}
$channel->output($this->user,$out);
}
}
class HelpCommand extends Command class HelpCommand extends Command
{ {
function execute($channel) function execute($channel)
@ -615,6 +680,9 @@ class HelpCommand extends Command
"off - turn off notifications\n". "off - turn off notifications\n".
"help - show this help\n". "help - show this help\n".
"follow <nickname> - subscribe to user\n". "follow <nickname> - subscribe to user\n".
"groups - lists the groups you have joined\n".
"subscriptions - list the people you follow\n".
"subscribers - list the people that follow you\n".
"leave <nickname> - unsubscribe from user\n". "leave <nickname> - unsubscribe from user\n".
"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".

View File

@ -47,6 +47,24 @@ class CommandInterpreter
} else { } else {
return new LoginCommand($user); return new LoginCommand($user);
} }
case 'subscribers':
if ($arg) {
return null;
} else {
return new SubscribersCommand($user);
}
case 'subscriptions':
if ($arg) {
return null;
} else {
return new SubscriptionsCommand($user);
}
case 'groups':
if ($arg) {
return null;
} else {
return new GroupsCommand($user);
}
case 'on': case 'on':
if ($arg) { if ($arg) {
list($other, $extra) = $this->split_arg($arg); list($other, $extra) = $this->split_arg($arg);

View File

@ -45,6 +45,14 @@ define('FOREIGN_FRIEND_RECV', 2);
set_include_path(get_include_path() . PATH_SEPARATOR . INSTALLDIR . '/extlib/'); set_include_path(get_include_path() . PATH_SEPARATOR . INSTALLDIR . '/extlib/');
# To protect against upstream libraries which haven't updated
# for PHP 5.3 where dl() function may not be present...
if (!function_exists('dl')) {
function dl($library) {
return false;
}
}
# global configuration object # global configuration object
require_once('PEAR.php'); require_once('PEAR.php');

View File

@ -282,7 +282,7 @@ class MailboxAction extends CurrentUserDesignAction
$ns->name); $ns->name);
$this->elementEnd('span'); $this->elementEnd('span');
} else { } else {
$this->out->element('span', 'device', $source_name); $this->element('span', 'device', $source_name);
} }
break; break;
} }

View File

@ -372,6 +372,26 @@ class Schema
return true; return true;
} }
/**
* Ensures that the table that backs a given
* Plugin_DataObject class exists.
*
* If the table does not yet exist, it will
* create the table. If it does exist, it will
* alter the table to match the column definitions.
*
* @param Plugin_DataObject $dataObjectClass
*
* @return boolean success flag
*/
public function ensureDataObject($dataObjectClass)
{
$obj = new $dataObjectClass();
$tableDef = $obj->tableDef();
return $this->ensureTable($tableDef->name,$tableDef->columns);
}
/** /**
* Ensures that a table exists with the given * Ensures that a table exists with the given
* name and the given column definitions. * name and the given column definitions.
@ -544,6 +564,19 @@ class TableDef
public $name; public $name;
/** array of ColumnDef objects for the columns. */ /** array of ColumnDef objects for the columns. */
public $columns; public $columns;
/**
* Constructor.
*
* @param string $name name of the table
* @param array $columns columns in the table
*/
function __construct($name=null,$columns=null)
{
$this->name = $name;
$this->columns = $columns;
}
} }
/** /**
@ -576,6 +609,8 @@ class ColumnDef
/** 'extra' stuff. Returned by MySQL, largely /** 'extra' stuff. Returned by MySQL, largely
* unused. */ * unused. */
public $extra; public $extra;
/** auto increment this field if no value is specific for it during an insert **/
public $auto_increment;
/** /**
* Constructor. * Constructor.
@ -591,7 +626,7 @@ class ColumnDef
function __construct($name=null, $type=null, $size=null, function __construct($name=null, $type=null, $size=null,
$nullable=true, $key=null, $default=null, $nullable=true, $key=null, $default=null,
$extra=null) $extra=null, $auto_increment=false)
{ {
$this->name = strtolower($name); $this->name = strtolower($name);
$this->type = strtolower($type); $this->type = strtolower($type);
@ -600,6 +635,7 @@ class ColumnDef
$this->key = $key; $this->key = $key;
$this->default = $default; $this->default = $default;
$this->extra = $extra; $this->extra = $extra;
$this->auto_increment = $auto_increment;
} }
/** /**
@ -617,7 +653,8 @@ class ColumnDef
$this->_typeMatch($other) && $this->_typeMatch($other) &&
$this->_defaultMatch($other) && $this->_defaultMatch($other) &&
$this->_nullMatch($other) && $this->_nullMatch($other) &&
$this->key == $other->key); $this->key == $other->key &&
$this->auto_increment == $other->auto_increment);
} }
/** /**

Binary file not shown.

View File

@ -6,12 +6,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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:42:15+0000\n" "PO-Revision-Date: 2009-11-16 19:42:46+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -204,7 +204,7 @@ msgstr ""
#: actions/apidirectmessage.php:89 #: actions/apidirectmessage.php:89
#, php-format #, php-format
msgid "Direct messages from %s" msgid "Direct messages from %s"
msgstr "" msgstr "رسائل مباشرة من %s"
#: actions/apidirectmessage.php:93 #: actions/apidirectmessage.php:93
#, php-format #, php-format
@ -253,7 +253,7 @@ msgstr "تعذّر إنشاء مفضلة."
#: actions/apifavoritedestroy.php:122 #: actions/apifavoritedestroy.php:122
msgid "That status is not a favorite!" msgid "That status is not a favorite!"
msgstr "" msgstr "تلك الحالة ليست مفضلة!"
#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87 #: actions/apifavoritedestroy.php:134 actions/disfavor.php:87
msgid "Could not delete favorite." msgid "Could not delete favorite."
@ -352,7 +352,7 @@ msgstr ""
#: actions/newgroup.php:168 #: actions/newgroup.php:168
#, php-format #, php-format
msgid "Invalid alias: \"%s\"" msgid "Invalid alias: \"%s\""
msgstr "" msgstr "كنية غير صالحة: \"%s\""
#: actions/apigroupcreate.php:321 actions/editgroup.php:228 #: actions/apigroupcreate.php:321 actions/editgroup.php:228
#: actions/newgroup.php:172 #: actions/newgroup.php:172
@ -688,7 +688,7 @@ msgstr "نعم"
#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 #: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123
#: lib/blockform.php:153 #: lib/blockform.php:153
msgid "Block this user" msgid "Block this user"
msgstr "" msgstr "امنع هذا المستخدم"
#: actions/block.php:165 #: actions/block.php:165
msgid "You have already blocked this user." msgid "You have already blocked this user."
@ -1060,7 +1060,7 @@ msgstr ""
#: actions/favor.php:92 lib/disfavorform.php:140 #: actions/favor.php:92 lib/disfavorform.php:140
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "" msgstr "ألغِ تفضيل المفضلة"
#: actions/featured.php:69 lib/featureduserssection.php:87 #: actions/featured.php:69 lib/featureduserssection.php:87
#: lib/publicgroupnav.php:89 #: lib/publicgroupnav.php:89
@ -1768,11 +1768,11 @@ msgstr ""
#: actions/nudge.php:94 #: actions/nudge.php:94
msgid "Nudge sent" msgid "Nudge sent"
msgstr "" msgstr "أرسل التنبيه"
#: actions/nudge.php:97 #: actions/nudge.php:97
msgid "Nudge sent!" msgid "Nudge sent!"
msgstr "" msgstr "أُرسل التنبيه!"
#: actions/oembed.php:79 actions/shownotice.php:100 #: actions/oembed.php:79 actions/shownotice.php:100
msgid "Notice has no profile" msgid "Notice has no profile"
@ -1822,11 +1822,11 @@ msgstr "قصّر المسارات بـ"
#: actions/othersettings.php:117 #: actions/othersettings.php:117
msgid "Automatic shortening service to use." msgid "Automatic shortening service to use."
msgstr "" msgstr "خدمة التقصير المطلوب استخدامها."
#: actions/othersettings.php:122 #: actions/othersettings.php:122
msgid "View profile designs" msgid "View profile designs"
msgstr "" msgstr "اعرض تصاميم الملف الشخصي"
#: actions/othersettings.php:123 #: actions/othersettings.php:123
msgid "Show or hide profile designs." msgid "Show or hide profile designs."
@ -2118,6 +2118,10 @@ msgid ""
"tool. [Join now](%%action.register%%) to share notices about yourself with " "tool. [Join now](%%action.register%%) to share notices about yourself with "
"friends, family, and colleagues! ([Read more](%%doc.help%%))" "friends, family, and colleagues! ([Read more](%%doc.help%%))"
msgstr "" msgstr ""
"هنا %%site.name%%، خدمة [التدوين المُصغّر](http://en.wikipedia.org/wiki/Micro-"
"blogging) المبنية على البرنامج الحر [StatusNet](http://status.net/). [انضم "
"الآن](%%action.register%%) لتشارك اشعاراتك مع أصدقائك وعائلتك وزملائك! "
"([اقرأ المزيد](%%doc.help%%))"
#: actions/public.php:238 #: actions/public.php:238
#, php-format #, php-format
@ -2126,10 +2130,12 @@ msgid ""
"blogging) service based on the Free Software [StatusNet](http://status.net/) " "blogging) service based on the Free Software [StatusNet](http://status.net/) "
"tool." "tool."
msgstr "" msgstr ""
"هنا %%site.name%%، خدمة [التدوين المُصغّر](http://en.wikipedia.org/wiki/Micro-"
"blogging) المبنية على البرنامج الحر [StatusNet](http://status.net/)."
#: actions/publictagcloud.php:57 #: actions/publictagcloud.php:57
msgid "Public tag cloud" msgid "Public tag cloud"
msgstr "" msgstr "سحابة الوسوم العمومية"
#: actions/publictagcloud.php:63 #: actions/publictagcloud.php:63
#, php-format #, php-format
@ -2536,7 +2542,7 @@ msgstr ""
#: actions/showfavorites.php:242 #: actions/showfavorites.php:242
msgid "This is a way to share what you like." msgid "This is a way to share what you like."
msgstr "" msgstr "إنها إحدى وسائل مشاركة ما تحب."
#: actions/showgroup.php:82 lib/groupnav.php:86 #: actions/showgroup.php:82 lib/groupnav.php:86
#, php-format #, php-format
@ -2641,7 +2647,7 @@ msgstr "لا رسالة كهذه."
#: actions/showmessage.php:98 #: actions/showmessage.php:98
msgid "Only the sender and recipient may read this message." msgid "Only the sender and recipient may read this message."
msgstr "" msgstr "يحق للمُرسل والمستلم فقط قراءة هذه الرسالة."
#: actions/showmessage.php:108 #: actions/showmessage.php:108
#, php-format #, php-format
@ -2884,12 +2890,12 @@ msgstr "اشتراكات %s، الصفحة %d"
#: actions/subscriptions.php:65 #: actions/subscriptions.php:65
msgid "These are the people whose notices you listen to." msgid "These are the people whose notices you listen to."
msgstr "" msgstr "هؤلاء الأشخاص الذي تستمع إليهم."
#: actions/subscriptions.php:69 #: actions/subscriptions.php:69
#, php-format #, php-format
msgid "These are the people whose notices %s listens to." msgid "These are the people whose notices %s listens to."
msgstr "" msgstr "هؤلاء الأشخاص الذي يستمع %s إليهم."
#: actions/subscriptions.php:121 #: actions/subscriptions.php:121
#, php-format #, php-format
@ -3381,6 +3387,9 @@ msgid ""
"s, available under the [GNU Affero General Public License](http://www.fsf." "s, available under the [GNU Affero General Public License](http://www.fsf."
"org/licensing/licenses/agpl-3.0.html)." "org/licensing/licenses/agpl-3.0.html)."
msgstr "" msgstr ""
"تعمل على برنامج التدوين المُصغّر [StatusNet](http://status.net/) -النسخة %s- "
"المتوفر تحت [رخصة غنو أفيرو العمومية](http://www.fsf.org/licensing/licenses/"
"agpl-3.0.html)."
#: lib/action.php:785 #: lib/action.php:785
msgid "Site content license" msgid "Site content license"
@ -3394,19 +3403,19 @@ msgstr ""
msgid "license." msgid "license."
msgstr "الرخصة." msgstr "الرخصة."
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "بعد" msgstr "بعد"
#: lib/action.php:1070 #: lib/action.php:1069
msgid "Before" msgid "Before"
msgstr "قبل" msgstr "قبل"
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -3579,13 +3588,46 @@ msgstr ""
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "لا تملك تصريحًا."
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "الأشخاص المشتركون ب%s"
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "الأشخاص الذين اشترك بهم %s"
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "الأشخاص المشتركون ب%s"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "لست عضوا في تلك المجموعة."
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "لست عضوا في تلك المجموعة."
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3615,19 +3657,19 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "" msgstr ""
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
msgid "Go to the installer." msgid "Go to the installer."
msgstr "اذهب إلى المُثبّت." msgstr "اذهب إلى المُثبّت."
@ -4191,11 +4233,11 @@ msgstr "رُد"
#: lib/nudgeform.php:116 #: lib/nudgeform.php:116
msgid "Nudge this user" msgid "Nudge this user"
msgstr "" msgstr "نبّه هذا المستخدم"
#: lib/nudgeform.php:128 #: lib/nudgeform.php:128
msgid "Nudge" msgid "Nudge"
msgstr "" msgstr "نبّه"
#: lib/nudgeform.php:128 #: lib/nudgeform.php:128
msgid "Send a nudge to this user" msgid "Send a nudge to this user"

Binary file not shown.

View File

@ -5,12 +5,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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:42:18+0000\n" "PO-Revision-Date: 2009-11-16 19:42:49+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3601,19 +3601,19 @@ msgstr "Всички "
msgid "license." msgid "license."
msgstr "лиценз." msgstr "лиценз."
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "Страниране" msgstr "Страниране"
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "След" msgstr "След"
#: lib/action.php:1070 #: lib/action.php:1069
msgid "Before" msgid "Before"
msgstr "Преди" msgstr "Преди"
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Имаше проблем със сесията ви в сайта." msgstr "Имаше проблем със сесията ви в сайта."
@ -3787,13 +3787,46 @@ msgstr "Грешка при създаване на OpenID форма: %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Не сте абонирани за този профил"
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "Не сте абонирани за този профил"
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Грешка при абониране на друг потребител за вас."
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Абонирани за %s"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Не членувате в тази група."
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "Не членувате в тази група."
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3823,20 +3856,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Няма код за потвърждение." msgstr "Няма код за потвърждение."
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Влизане в сайта" msgstr "Влизане в сайта"

Binary file not shown.

View File

@ -5,12 +5,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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:42:21+0000\n" "PO-Revision-Date: 2009-11-16 19:42:52+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3635,19 +3635,19 @@ msgstr "Tot "
msgid "license." msgid "license."
msgstr "llicència." msgstr "llicència."
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "Paginació" msgstr "Paginació"
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "Posteriors" msgstr "Posteriors"
#: lib/action.php:1070 #: lib/action.php:1069
msgid "Before" msgid "Before"
msgstr "Anteriors" msgstr "Anteriors"
#: lib/action.php:1119 #: lib/action.php:1117
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ó."
@ -3819,13 +3819,46 @@ msgstr "No s'ha pogut crear el formulari OpenID: %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "No estàs subscrit a aquest perfil."
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "No estàs subscrit a aquest perfil."
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "No pots subscriure a un altre a tu mateix."
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Persones subscrites a %s"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "No ets membre d'aquest grup."
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "No ets membre d'aquest grup."
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3855,20 +3888,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Cap codi de confirmació." msgstr "Cap codi de confirmació."
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Accedir a aquest lloc" msgstr "Accedir a aquest lloc"

Binary file not shown.

View File

@ -5,12 +5,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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:42:23+0000\n" "PO-Revision-Date: 2009-11-16 19:42:56+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3547,21 +3547,21 @@ msgstr ""
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1062 #: lib/action.php:1061
#, fuzzy #, fuzzy
msgid "After" msgid "After"
msgstr "« Novější" msgstr "« Novější"
#: lib/action.php:1070 #: lib/action.php:1069
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "Starší »" msgstr "Starší »"
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -3733,13 +3733,46 @@ msgstr "Nelze vytvořit OpenID z: %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Neodeslal jste nám profil"
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "Neodeslal jste nám profil"
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Vzdálený odběr"
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Vzdálený odběr"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Neodeslal jste nám profil"
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "Neodeslal jste nám profil"
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3769,20 +3802,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, 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:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""

Binary file not shown.

View File

@ -6,12 +6,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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:42:26+0000\n" "PO-Revision-Date: 2009-11-16 19:43:12+0000\n"
"Language-Team: German\n" "Language-Team: German\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n" "X-Language-Code: de\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -3647,19 +3647,19 @@ msgstr "Alle "
msgid "license." msgid "license."
msgstr "Lizenz." msgstr "Lizenz."
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "Seitenerstellung" msgstr "Seitenerstellung"
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "Später" msgstr "Später"
#: lib/action.php:1070 #: lib/action.php:1069
msgid "Before" msgid "Before"
msgstr "Vorher" msgstr "Vorher"
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Es gab ein Problem mit deinem Sessiontoken." msgstr "Es gab ein Problem mit deinem Sessiontoken."
@ -3831,13 +3831,46 @@ msgstr "Konnte OpenID-Formular nicht erstellen: %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Du hast dieses Profil nicht abonniert."
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "Du hast dieses Profil nicht abonniert."
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Die Gegenseite konnte Dich nicht abonnieren."
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Leute, die %s abonniert haben"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Du bist kein Mitglied dieser Gruppe."
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "Du bist kein Mitglied dieser Gruppe."
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3867,20 +3900,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Kein Bestätigungs-Code." msgstr "Kein Bestätigungs-Code."
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Auf der Seite anmelden" msgstr "Auf der Seite anmelden"

Binary file not shown.

View File

@ -5,12 +5,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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:42:28+0000\n" "PO-Revision-Date: 2009-11-16 19:43:15+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3499,19 +3499,19 @@ msgstr ""
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "" msgstr ""
#: lib/action.php:1070 #: lib/action.php:1069
msgid "Before" msgid "Before"
msgstr "" msgstr ""
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -3681,13 +3681,44 @@ msgstr "Αδυναμία δημιουργίας φόρμας OpenID: %s "
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
#: lib/command.php:639
msgid "These people are subscribed to you: "
msgstr ""
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Ομάδες με τα περισσότερα μέλη"
#: lib/command.php:658
msgid "You are a member of these groups: "
msgstr ""
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3717,20 +3748,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε."
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""

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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:42:31+0000\n" "PO-Revision-Date: 2009-11-16 19:43:18+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3586,19 +3586,19 @@ msgstr "All "
msgid "license." msgid "license."
msgstr "licence." msgstr "licence."
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "Pagination" msgstr "Pagination"
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "After" msgstr "After"
#: lib/action.php:1070 #: lib/action.php:1069
msgid "Before" msgid "Before"
msgstr "Before" msgstr "Before"
#: lib/action.php:1119 #: lib/action.php:1117
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."
@ -3770,13 +3770,46 @@ msgstr "Could not create OpenID from: %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "You are not subscribed to that profile."
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "You are not subscribed to that profile."
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Could not subscribe other to you."
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "People subscribed to %s"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "You are not a member of that group."
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "You are not a member of that group."
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3806,19 +3839,19 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "No configuration file found" msgstr "No configuration file found"
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Login to the site" msgstr "Login to the site"

Binary file not shown.

View File

@ -2,6 +2,7 @@
# #
# Author@translatewiki.net: Brion # Author@translatewiki.net: Brion
# Author@translatewiki.net: Crazymadlover # Author@translatewiki.net: Crazymadlover
# Author@translatewiki.net: Translationista
# -- # --
# SOME DESCRIPTIVE TITLE. # SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
@ -12,12 +13,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:42:34+0000\n" "PO-Revision-Date: 2009-11-16 19:43:21+0000\n"
"Language-Team: Spanish\n" "Language-Team: Spanish\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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: es\n" "X-Language-Code: es\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -156,6 +157,8 @@ msgid ""
"The server was unable to handle that much POST data (%s bytes) due to its " "The server was unable to handle that much POST data (%s bytes) due to its "
"current configuration." "current configuration."
msgstr "" msgstr ""
"El servidor no ha podido manejar tanta información del tipo POST (% de "
"bytes) a causa de su configuración actual."
#: actions/apiaccountupdateprofilebackgroundimage.php:136 #: actions/apiaccountupdateprofilebackgroundimage.php:136
#: actions/apiaccountupdateprofilebackgroundimage.php:146 #: actions/apiaccountupdateprofilebackgroundimage.php:146
@ -3661,19 +3664,19 @@ msgstr "Todo"
msgid "license." msgid "license."
msgstr "Licencia." msgstr "Licencia."
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "Paginación" msgstr "Paginación"
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "Después" msgstr "Después"
#: lib/action.php:1070 #: lib/action.php:1069
msgid "Before" msgid "Before"
msgstr "Antes" msgstr "Antes"
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Hubo problemas con tu clave de sesión." msgstr "Hubo problemas con tu clave de sesión."
@ -3845,13 +3848,46 @@ msgstr "No se pudo crear el formulario OpenID: %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "No estás suscrito a ese perfil."
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "No estás suscrito a ese perfil."
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "No se pudo suscribir otro a ti."
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Personas suscritas a %s"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "No eres miembro de ese grupo"
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "No eres miembro de este grupo."
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3881,19 +3917,19 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Ningún archivo de configuración encontrado. " msgstr "Ningún archivo de configuración encontrado. "
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Ir al instalador." msgstr "Ir al instalador."

Binary file not shown.

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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:42:37+0000\n" "PO-Revision-Date: 2009-11-16 19:43:24+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -83,6 +83,8 @@ msgstr "Käyttäjän %s kavereiden syöte (Atom)"
msgid "" msgid ""
"This is the timeline for %s and friends but no one has posted anything yet." "This is the timeline for %s and friends but no one has posted anything yet."
msgstr "" msgstr ""
"Tämä on käyttäjän %s ja kavereiden aikajana, mutta kukaan ei ole lähettyänyt "
"vielä mitään."
#: actions/all.php:132 #: actions/all.php:132
#, php-format #, php-format
@ -90,6 +92,8 @@ msgid ""
"Try subscribing to more people, [join a group](%%action.groups%%) or post " "Try subscribing to more people, [join a group](%%action.groups%%) or post "
"something yourself." "something yourself."
msgstr "" msgstr ""
"Kokeile useamman käyttäjän tilaamista, [liity ryhmään] (%%action.groups%%) "
"tai lähetä päivitys itse."
#: actions/all.php:134 #: actions/all.php:134
#, php-format #, php-format
@ -641,9 +645,8 @@ msgid "%s blocked profiles, page %d"
msgstr "%s ja kaverit, sivu %d" msgstr "%s ja kaverit, sivu %d"
#: actions/blockedfromgroup.php:108 #: actions/blockedfromgroup.php:108
#, fuzzy
msgid "A list of the users blocked from joining this group." msgid "A list of the users blocked from joining this group."
msgstr "Lista ryhmän käyttäjistä." msgstr "Lista käyttäjistä jotka ovat estetty liittymästä tähän ryhmään."
#: actions/blockedfromgroup.php:281 #: actions/blockedfromgroup.php:281
msgid "Unblock user from group" msgid "Unblock user from group"
@ -695,9 +698,8 @@ msgid "No"
msgstr "Ei" msgstr "Ei"
#: actions/block.php:149 #: actions/block.php:149
#, fuzzy
msgid "Do not block this user" msgid "Do not block this user"
msgstr "Poista esto tältä käyttäjältä" msgstr "Älä estä tätä käyttäjää"
#: actions/block.php:150 actions/deletenotice.php:146 #: actions/block.php:150 actions/deletenotice.php:146
#: actions/groupblock.php:179 #: actions/groupblock.php:179
@ -1082,9 +1084,9 @@ msgid "%s's favorite notices"
msgstr "Käyttäjän %s suosikkipäivitykset" msgstr "Käyttäjän %s suosikkipäivitykset"
#: actions/favoritesrss.php:115 #: actions/favoritesrss.php:115
#, fuzzy, php-format #, php-format
msgid "Updates favored by %1$s on %2$s!" msgid "Updates favored by %1$s on %2$s!"
msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" msgstr "Käyttäjän %1$s suosikit palvelussa %2$s!"
#: actions/favor.php:79 #: actions/favor.php:79
msgid "This notice is already a favorite!" msgid "This notice is already a favorite!"
@ -1181,7 +1183,7 @@ msgstr "Ryhmää ei ole määritelty."
#: actions/groupblock.php:91 #: actions/groupblock.php:91
msgid "Only an admin can block group members." msgid "Only an admin can block group members."
msgstr "" msgstr "Vain ylläpitäjä voi estää ryhmän jäseniä."
#: actions/groupblock.php:95 #: actions/groupblock.php:95
#, fuzzy #, fuzzy
@ -1189,14 +1191,12 @@ msgid "User is already blocked from group."
msgstr "Käyttäjä on asettanut eston sinulle." msgstr "Käyttäjä on asettanut eston sinulle."
#: actions/groupblock.php:100 #: actions/groupblock.php:100
#, fuzzy
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Sinä et kuulu tähän ryhmään." msgstr "Käyttäjä ei kuulu tähän ryhmään."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:314
#, fuzzy
msgid "Block user from group" msgid "Block user from group"
msgstr "Estä käyttäjä" msgstr "Estä käyttäjä ryhmästä"
#: actions/groupblock.php:162 #: actions/groupblock.php:162
#, php-format #, php-format
@ -1228,9 +1228,8 @@ msgstr ""
"Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja." "Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja."
#: actions/groupdesignsettings.php:141 #: actions/groupdesignsettings.php:141
#, fuzzy
msgid "Group design" msgid "Group design"
msgstr "Ryhmät" msgstr "Ryhmän ulkoasu"
#: actions/groupdesignsettings.php:152 #: actions/groupdesignsettings.php:152
msgid "" msgid ""
@ -1240,21 +1239,18 @@ msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186 #: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464 #: lib/designsettings.php:434 lib/designsettings.php:464
#, fuzzy
msgid "Couldn't update your design." msgid "Couldn't update your design."
msgstr "Ei voitu päivittää käyttäjää." msgstr "Ei voitu päivittää sinun sivusi ulkoasua."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296 #: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220 #: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273 #: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
#, fuzzy
msgid "Unable to save your design settings!" msgid "Unable to save your design settings!"
msgstr "Twitter-asetuksia ei voitu tallentaa!" msgstr "Ei voitu tallentaa sinun ulkoasuasetuksia!"
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231 #: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#, fuzzy
msgid "Design preferences saved." msgid "Design preferences saved."
msgstr "Synkronointiasetukset tallennettiin." msgstr "Ulkoasuasetukset tallennettu."
#: actions/grouplogo.php:139 actions/grouplogo.php:192 #: actions/grouplogo.php:139 actions/grouplogo.php:192
msgid "Group logo" msgid "Group logo"
@ -1305,18 +1301,17 @@ msgid "Make user an admin of the group"
msgstr "Tee tästä käyttäjästä ylläpitäjä" msgstr "Tee tästä käyttäjästä ylläpitäjä"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:473
#, fuzzy
msgid "Make Admin" msgid "Make Admin"
msgstr "Ylläpito" msgstr "Tee ylläpitäjäksi"
#: actions/groupmembers.php:473 #: actions/groupmembers.php:473
msgid "Make this user an admin" msgid "Make this user an admin"
msgstr "Tee tästä käyttäjästä ylläpitäjä" msgstr "Tee tästä käyttäjästä ylläpitäjä"
#: actions/grouprss.php:133 #: actions/grouprss.php:133
#, fuzzy, php-format #, php-format
msgid "Updates from members of %1$s on %2$s!" msgid "Updates from members of %1$s on %2$s!"
msgstr "Käyttäjän %1$s päivitykset palvelussa %2$s!" msgstr "Ryhmän %1$s käyttäjien päivitykset palvelussa %2$s!"
#: actions/groupsearch.php:52 #: actions/groupsearch.php:52
#, fuzzy, php-format #, fuzzy, php-format
@ -1380,9 +1375,8 @@ msgid "Only an admin can unblock group members."
msgstr "Vain ylläpitäjä voi poistaa eston ryhmän jäseniltä." msgstr "Vain ylläpitäjä voi poistaa eston ryhmän jäseniltä."
#: actions/groupunblock.php:95 #: actions/groupunblock.php:95
#, fuzzy
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "Käyttäjä on asettanut eston sinulle." msgstr "Käyttäjää ei ole estetty ryhmästä."
#: actions/groupunblock.php:128 actions/unblock.php:108 #: actions/groupunblock.php:128 actions/unblock.php:108
msgid "Error removing the block." msgid "Error removing the block."
@ -1402,9 +1396,8 @@ msgstr ""
"im%%) käyttäen. Alla voit määrittää osoitteesi ja asetuksesi. " "im%%) käyttäen. Alla voit määrittää osoitteesi ja asetuksesi. "
#: actions/imsettings.php:89 #: actions/imsettings.php:89
#, fuzzy
msgid "IM is not available." msgid "IM is not available."
msgstr "Tämä sivu ei ole saatavilla " msgstr "Pikaviestin ei ole käytettävissä."
#: actions/imsettings.php:106 #: actions/imsettings.php:106
msgid "Current confirmed Jabber/GTalk address." msgid "Current confirmed Jabber/GTalk address."
@ -1501,7 +1494,7 @@ msgstr "Tämä on postilaatikkosi, jossa on sinulle saapuneet yksityisviestit."
#: actions/invite.php:39 #: actions/invite.php:39
msgid "Invites have been disabled." msgid "Invites have been disabled."
msgstr "" msgstr "Kutsut ovat pois käytöstä."
#: actions/invite.php:41 #: actions/invite.php:41
#, php-format #, php-format
@ -1751,22 +1744,22 @@ msgstr ""
#: actions/makeadmin.php:91 #: actions/makeadmin.php:91
msgid "Only an admin can make another user an admin." msgid "Only an admin can make another user an admin."
msgstr "" msgstr "Vain ylläpitäjä voi tehdä toisesta käyttäjästä ylläpitäjän."
#: actions/makeadmin.php:95 #: actions/makeadmin.php:95
#, php-format #, php-format
msgid "%s is already an admin for group \"%s\"." msgid "%s is already an admin for group \"%s\"."
msgstr "" msgstr "%s on jo ryhmän \"%s\" ylläpitäjä."
#: actions/makeadmin.php:132 #: actions/makeadmin.php:132
#, php-format #, php-format
msgid "Can't get membership record for %s in group %s" msgid "Can't get membership record for %s in group %s"
msgstr "" msgstr "Ei saatu käyttäjän %s jäsenyystietoja ryhmästä %s"
#: actions/makeadmin.php:145 #: actions/makeadmin.php:145
#, php-format #, php-format
msgid "Can't make %s an admin for group %s" msgid "Can't make %s an admin for group %s"
msgstr "" msgstr "Ei voitu tehdä käyttäjästä %s ylläpitäjää ryhmään %s"
#: actions/microsummary.php:69 #: actions/microsummary.php:69
msgid "No current status" msgid "No current status"
@ -1847,6 +1840,8 @@ msgid ""
"Be the first to [post on this topic](%%%%action.newnotice%%%%?" "Be the first to [post on this topic](%%%%action.newnotice%%%%?"
"status_textarea=%s)!" "status_textarea=%s)!"
msgstr "" msgstr ""
"Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta] (%%%%action."
"newnotice%%%%?status_textarea=%s)!"
#: actions/noticesearch.php:124 #: actions/noticesearch.php:124
#, php-format #, php-format
@ -1938,7 +1933,7 @@ msgstr "Profiiliasetukset"
#: actions/othersettings.php:123 #: actions/othersettings.php:123
msgid "Show or hide profile designs." msgid "Show or hide profile designs."
msgstr "" msgstr "Näytä tai piillota profiilin ulkoasu."
#: actions/othersettings.php:153 #: actions/othersettings.php:153
msgid "URL shortening service is too long (max 50 chars)." msgid "URL shortening service is too long (max 50 chars)."
@ -2221,7 +2216,7 @@ msgstr ""
#: actions/public.php:182 #: actions/public.php:182
msgid "Be the first to post!" msgid "Be the first to post!"
msgstr "" msgstr "Ole ensimmäinen joka lähettää päivityksen!"
#: actions/public.php:186 #: actions/public.php:186
#, php-format #, php-format
@ -2261,10 +2256,12 @@ msgstr "Nämä ovat suosituimmat viimeaikaiset tagit %s -palvelussa"
#, php-format #, php-format
msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet." msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet."
msgstr "" msgstr ""
"Kukaan ei ole vielä lähettänyt päivitystä tagilla [hashtag] (%%doc.tags%%) "
"vielä."
#: actions/publictagcloud.php:72 #: actions/publictagcloud.php:72
msgid "Be the first to post one!" msgid "Be the first to post one!"
msgstr "" msgstr "Ole ensimmäinen joka lähettää päivityksen!"
#: actions/publictagcloud.php:75 #: actions/publictagcloud.php:75
#, php-format #, php-format
@ -2313,11 +2310,11 @@ msgstr ""
#: actions/recoverpassword.php:158 #: actions/recoverpassword.php:158
msgid "You have been identified. Enter a new password below. " msgid "You have been identified. Enter a new password below. "
msgstr "" msgstr "Sinut on tunnistettu. Syötä uusi salasana alapuolelle. "
#: actions/recoverpassword.php:188 #: actions/recoverpassword.php:188
msgid "Password recovery" msgid "Password recovery"
msgstr "" msgstr "Salasanan palautus"
#: actions/recoverpassword.php:191 #: actions/recoverpassword.php:191
msgid "Nickname or email address" msgid "Nickname or email address"
@ -2406,9 +2403,8 @@ msgid "Sorry, only invited people can register."
msgstr "Valitettavasti vain kutsutut ihmiset voivat rekisteröityä." msgstr "Valitettavasti vain kutsutut ihmiset voivat rekisteröityä."
#: actions/register.php:92 #: actions/register.php:92
#, fuzzy
msgid "Sorry, invalid invitation code." msgid "Sorry, invalid invitation code."
msgstr "Virhe vahvistuskoodin kanssa." msgstr "Virheellinen kutsukoodin."
#: actions/register.php:112 #: actions/register.php:112
msgid "Registration successful" msgid "Registration successful"
@ -2485,12 +2481,11 @@ msgid "Creative Commons Attribution 3.0"
msgstr "" msgstr ""
#: actions/register.php:496 #: actions/register.php:496
#, fuzzy
msgid "" msgid ""
" except this private data: password, email address, IM address, and phone " " except this private data: password, email address, IM address, and phone "
"number." "number."
msgstr "" msgstr ""
" poislukien yksityinen tieto: salasana, sähköpostiosoite, IM osoite, " "poislukien yksityinen tieto: salasana, sähköpostiosoite, IM osoite, "
"puhelinnumero." "puhelinnumero."
#: actions/register.php:537 #: actions/register.php:537
@ -2551,9 +2546,8 @@ msgid "Remote subscribe"
msgstr "Etätilaus" msgstr "Etätilaus"
#: actions/remotesubscribe.php:124 #: actions/remotesubscribe.php:124
#, fuzzy
msgid "Subscribe to a remote user" msgid "Subscribe to a remote user"
msgstr "Tilaa tämä käyttäjä" msgstr "Tilaa tämä etäkäyttäjä"
#: actions/remotesubscribe.php:129 #: actions/remotesubscribe.php:129
msgid "User nickname" msgid "User nickname"
@ -2589,13 +2583,11 @@ msgstr ""
"löytynyt)." "löytynyt)."
#: actions/remotesubscribe.php:176 #: actions/remotesubscribe.php:176
#, fuzzy
msgid "Thats a local profile! Login to subscribe." msgid "Thats a local profile! Login to subscribe."
msgstr "" msgstr ""
"Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata päivitykset." "Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata päivitykset."
#: actions/remotesubscribe.php:183 #: actions/remotesubscribe.php:183
#, fuzzy
msgid "Couldnt get a request token." msgid "Couldnt get a request token."
msgstr "Ei saatu request tokenia." msgstr "Ei saatu request tokenia."
@ -2726,26 +2718,26 @@ msgstr "Huomaa"
#: actions/showgroup.php:284 lib/groupeditform.php:184 #: actions/showgroup.php:284 lib/groupeditform.php:184
msgid "Aliases" msgid "Aliases"
msgstr "" msgstr "Aliakset"
#: actions/showgroup.php:293 #: actions/showgroup.php:293
msgid "Group actions" msgid "Group actions"
msgstr "Ryhmän toiminnot" msgstr "Ryhmän toiminnot"
#: actions/showgroup.php:328 #: actions/showgroup.php:328
#, fuzzy, php-format #, php-format
msgid "Notice feed for %s group (RSS 1.0)" msgid "Notice feed for %s group (RSS 1.0)"
msgstr "Päivityssyöte ryhmälle %s" msgstr "Syöte ryhmän %s päivityksille (RSS 1.0)"
#: actions/showgroup.php:334 #: actions/showgroup.php:334
#, fuzzy, php-format #, php-format
msgid "Notice feed for %s group (RSS 2.0)" msgid "Notice feed for %s group (RSS 2.0)"
msgstr "Päivityssyöte ryhmälle %s" msgstr "Syöte ryhmän %s päivityksille (RSS 2.0)"
#: actions/showgroup.php:340 #: actions/showgroup.php:340
#, fuzzy, php-format #, php-format
msgid "Notice feed for %s group (Atom)" msgid "Notice feed for %s group (Atom)"
msgstr "Päivityssyöte ryhmälle %s" msgstr "Syöte ryhmän %s päivityksille (Atom)"
#: actions/showgroup.php:345 #: actions/showgroup.php:345
#, php-format #, php-format
@ -2796,9 +2788,8 @@ msgstr ""
"(http://en.wikipedia.org/wiki/Micro-blogging)" "(http://en.wikipedia.org/wiki/Micro-blogging)"
#: actions/showgroup.php:482 #: actions/showgroup.php:482
#, fuzzy
msgid "Admins" msgid "Admins"
msgstr "Ylläpito" msgstr "Ylläpitäjät"
#: actions/showmessage.php:81 #: actions/showmessage.php:81
msgid "No such message." msgid "No such message."
@ -2819,9 +2810,8 @@ msgid "Message from %1$s on %2$s"
msgstr "Viesti käyttäjältä %1$s, %2$s" msgstr "Viesti käyttäjältä %1$s, %2$s"
#: actions/shownotice.php:90 #: actions/shownotice.php:90
#, fuzzy
msgid "Notice deleted." msgid "Notice deleted."
msgstr "Päivitys lähetetty" msgstr "Päivitys on poistettu."
#: actions/showstream.php:73 #: actions/showstream.php:73
#, fuzzy, php-format #, fuzzy, php-format
@ -2862,6 +2852,8 @@ msgstr "Käyttäjän %s lähetetyt viestit"
#, php-format #, php-format
msgid "This is the timeline for %s but %s hasn't posted anything yet." msgid "This is the timeline for %s but %s hasn't posted anything yet."
msgstr "" msgstr ""
"Tämä on käyttäjän %s aikajana, mutta %s ei ole lähettänyt vielä yhtään "
"päivitystä."
#: actions/showstream.php:196 #: actions/showstream.php:196
msgid "" msgid ""
@ -2906,9 +2898,8 @@ msgstr ""
"Voit saada SMS viestit sähköpostin välityksellä %%site.name%% -palvelusta." "Voit saada SMS viestit sähköpostin välityksellä %%site.name%% -palvelusta."
#: actions/smssettings.php:91 #: actions/smssettings.php:91
#, fuzzy
msgid "SMS is not available." msgid "SMS is not available."
msgstr "Tämä sivu ei ole saatavilla " msgstr "SMS ei ole käytettävissä."
#: actions/smssettings.php:112 #: actions/smssettings.php:112
msgid "Current confirmed SMS-enabled phone number." msgid "Current confirmed SMS-enabled phone number."
@ -2959,13 +2950,12 @@ msgid "That phone number already belongs to another user."
msgstr "Tämä puhelinnumero kuuluu jo toiselle käyttäjälle." msgstr "Tämä puhelinnumero kuuluu jo toiselle käyttäjälle."
#: actions/smssettings.php:347 #: actions/smssettings.php:347
#, fuzzy
msgid "" msgid ""
"A confirmation code was sent to the phone number you added. Check your phone " "A confirmation code was sent to the phone number you added. Check your phone "
"for the code and instructions on how to use it." "for the code and instructions on how to use it."
msgstr "" msgstr ""
"Vahvistuskoodi on lähetetty puhelinnumeroosi. Katso tekstiviesteistäsi " "Vahvistuskoodi on lähetetty puhelinnumeroosi. Katso tekstiviesteistäsi "
"vahvistuskoodisi ja miten sitä käytetään. " "vahvistuskoodisi ja ohjeet miten sitä käytetään."
#: actions/smssettings.php:374 #: actions/smssettings.php:374
msgid "That is the wrong confirmation number." msgid "That is the wrong confirmation number."
@ -3080,9 +3070,9 @@ msgid ""
msgstr "" msgstr ""
#: actions/subscriptions.php:123 actions/subscriptions.php:127 #: actions/subscriptions.php:123 actions/subscriptions.php:127
#, fuzzy, php-format #, php-format
msgid "%s is not listening to anyone." msgid "%s is not listening to anyone."
msgstr "%1$s seuraa nyt käyttäjää" msgstr "%s ei seuraa ketään käyttäjää."
#: actions/subscriptions.php:194 #: actions/subscriptions.php:194
msgid "Jabber" msgid "Jabber"
@ -3203,9 +3193,8 @@ msgstr ""
"paina \"Peruuta\"." "paina \"Peruuta\"."
#: actions/userauthorization.php:188 #: actions/userauthorization.php:188
#, fuzzy
msgid "License" msgid "License"
msgstr "lisenssi." msgstr "Lisenssi"
#: actions/userauthorization.php:209 #: actions/userauthorization.php:209
msgid "Accept" msgid "Accept"
@ -3606,19 +3595,19 @@ msgstr "Kaikki "
msgid "license." msgid "license."
msgstr "lisenssi." msgstr "lisenssi."
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "Sivutus" msgstr "Sivutus"
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "Myöhemmin" msgstr "Myöhemmin"
#: lib/action.php:1070 #: lib/action.php:1069
msgid "Before" msgid "Before"
msgstr "Aiemmin" msgstr "Aiemmin"
#: lib/action.php:1119 #: lib/action.php:1117
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."
@ -3790,13 +3779,46 @@ msgstr "Ei voitu luoda OpenID lomaketta: %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Et ole tilannut tämän käyttäjän päivityksiä."
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "Et ole tilannut tämän käyttäjän päivityksiä."
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Toista ei voitu asettaa tilaamaan sinua."
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Ihmiset jotka ovat käyttäjän %s tilaajia"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Sinä et kuulu tähän ryhmään."
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "Sinä et kuulu tähän ryhmään."
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3826,20 +3848,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, 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:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Kirjaudu sisään palveluun" msgstr "Kirjaudu sisään palveluun"

Binary file not shown.

File diff suppressed because it is too large Load Diff

Binary file not shown.

View File

@ -5,12 +5,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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:42:42+0000\n" "PO-Revision-Date: 2009-11-16 19:43:30+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3673,21 +3673,21 @@ msgstr "Todos"
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1062 #: lib/action.php:1061
#, fuzzy #, fuzzy
msgid "After" msgid "After"
msgstr "« Despois" msgstr "« Despois"
#: lib/action.php:1070 #: lib/action.php:1069
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "Antes »" msgstr "Antes »"
#: lib/action.php:1119 #: lib/action.php:1117
#, 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..."
@ -3863,7 +3863,37 @@ msgstr "Non se pode crear o formulario OpenID: %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Non estás suscrito a ese perfil"
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "Non estás suscrito a ese perfil"
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Outro usuario non se puido suscribir a ti."
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Suscrito a %s"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Non estás suscrito a ese perfil"
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "Non estás suscrito a ese perfil"
#: lib/command.php:670
#, fuzzy #, fuzzy
msgid "" msgid ""
"Commands:\n" "Commands:\n"
@ -3871,6 +3901,9 @@ msgid ""
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3926,20 +3959,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:189 #: lib/common.php:192
#, 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:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""

Binary file not shown.

View File

@ -5,12 +5,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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:42:45+0000\n" "PO-Revision-Date: 2009-11-16 19:43:33+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3541,21 +3541,21 @@ msgstr ""
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1062 #: lib/action.php:1061
#, fuzzy #, fuzzy
msgid "After" msgid "After"
msgstr "<< אחרי" msgstr "<< אחרי"
#: lib/action.php:1070 #: lib/action.php:1069
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "לפני >>" msgstr "לפני >>"
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -3727,13 +3727,46 @@ msgstr "נכשלה יצירת OpenID מתוך: %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "לא שלחנו אלינו את הפרופיל הזה"
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "לא שלחנו אלינו את הפרופיל הזה"
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "הרשמה מרוחקת"
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "הרשמה מרוחקת"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "לא שלחנו אלינו את הפרופיל הזה"
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "לא שלחנו אלינו את הפרופיל הזה"
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3763,20 +3796,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "אין קוד אישור." msgstr "אין קוד אישור."
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""

Binary file not shown.

View File

@ -5,12 +5,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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:42:49+0000\n" "PO-Revision-Date: 2009-11-16 19:43:36+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3554,19 +3554,19 @@ msgstr "Allt "
msgid "license." msgid "license."
msgstr "leyfi." msgstr "leyfi."
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "Uppröðun" msgstr "Uppröðun"
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "Eftir" msgstr "Eftir"
#: lib/action.php:1070 #: lib/action.php:1069
msgid "Before" msgid "Before"
msgstr "Áður" msgstr "Áður"
#: lib/action.php:1119 #: lib/action.php:1117
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."
@ -3737,13 +3737,46 @@ msgstr "Gat ekki búið til OpenID eyðublað: %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Þú ert ekki áskrifandi."
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "Þú ert ekki áskrifandi."
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér."
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Fólk sem eru áskrifendur að %s"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Þú ert ekki meðlimur í þessum hópi."
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "Þú ert ekki meðlimur í þessum hópi."
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3773,20 +3806,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Enginn staðfestingarlykill." msgstr "Enginn staðfestingarlykill."
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Skrá þig inn á síðuna" msgstr "Skrá þig inn á síðuna"

Binary file not shown.

View File

@ -1,16 +1,17 @@
# Translation of StatusNet to Italian # Translation of StatusNet to Italian
# #
# Author@translatewiki.net: Nemo bis
# -- # --
msgid "" 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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:42:52+0000\n" "PO-Revision-Date: 2009-11-16 19:43:39+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3615,19 +3616,19 @@ msgstr "Tutto "
msgid "license." msgid "license."
msgstr "licenza." msgstr "licenza."
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "Paginazione" msgstr "Paginazione"
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "Successivi" msgstr "Successivi"
#: lib/action.php:1070 #: lib/action.php:1069
msgid "Before" msgid "Before"
msgstr "Precedenti" msgstr "Precedenti"
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "C'è stato un problema con il tuo token di sessione." msgstr "C'è stato un problema con il tuo token di sessione."
@ -3799,13 +3800,46 @@ msgstr "Impossibile creare il modulo OpenID: %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Non sei abbonato a quel profilo."
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "Non sei abbonato a quel profilo."
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Impossibile abbonare altri a te."
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Persone abbonate a %s"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Non sei un membro di quel gruppo."
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "Non sei un membro di quel gruppo."
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3835,20 +3869,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Nessun codice di conferma." msgstr "Nessun codice di conferma."
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Accedi al sito" msgstr "Accedi al sito"
@ -4414,7 +4448,7 @@ msgstr "Invia un messaggio"
#: lib/noticeform.php:158 #: lib/noticeform.php:158
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "Cosa succede %s?" msgstr "Cosa succede, %s?"
#: lib/noticeform.php:180 #: lib/noticeform.php:180
msgid "Attach" msgid "Attach"

Binary file not shown.

View File

@ -6,12 +6,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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:42:55+0000\n" "PO-Revision-Date: 2009-11-16 19:43:42+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3576,21 +3576,21 @@ msgstr ""
msgid "license." msgid "license."
msgstr "ライセンス。" msgstr "ライセンス。"
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1062 #: lib/action.php:1061
#, fuzzy #, fuzzy
msgid "After" msgid "After"
msgstr "<< 前" msgstr "<< 前"
#: lib/action.php:1070 #: lib/action.php:1069
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "前 >>" msgstr "前 >>"
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -3762,13 +3762,46 @@ msgstr "OpenIDを作成できません : %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "そのプロファイルは送信されていません。"
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "そのプロファイルは送信されていません。"
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "リモートサブスクライブ"
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "リモートサブスクライブ"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "そのプロファイルは送信されていません。"
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "そのプロファイルは送信されていません。"
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3798,20 +3831,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "確認コードがありません。" msgstr "確認コードがありません。"
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
msgstr "サイトへログイン" msgstr "サイトへログイン"

Binary file not shown.

View File

@ -5,12 +5,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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:42:57+0000\n" "PO-Revision-Date: 2009-11-16 19:43:45+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3580,19 +3580,19 @@ msgstr "모든 것"
msgid "license." msgid "license."
msgstr "라이선스" msgstr "라이선스"
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "페이지수" msgstr "페이지수"
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "뒷 페이지" msgstr "뒷 페이지"
#: lib/action.php:1070 #: lib/action.php:1069
msgid "Before" msgid "Before"
msgstr "앞 페이지" msgstr "앞 페이지"
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "당신의 세션토큰관련 문제가 있습니다." msgstr "당신의 세션토큰관련 문제가 있습니다."
@ -3764,13 +3764,46 @@ msgstr "OpenID를 작성 할 수 없습니다 : %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "당신은 이 프로필에 구독되지 않고있습니다."
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "당신은 이 프로필에 구독되지 않고있습니다."
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "다른 사람을 구독 하실 수 없습니다."
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "%s에 의해 구독되는 사람들"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "당신은 해당 그룹의 멤버가 아닙니다."
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "당신은 해당 그룹의 멤버가 아닙니다."
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3800,20 +3833,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "확인 코드가 없습니다." msgstr "확인 코드가 없습니다."
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
msgstr "이 사이트 로그인" msgstr "이 사이트 로그인"

Binary file not shown.

View File

@ -6,12 +6,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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:43:00+0000\n" "PO-Revision-Date: 2009-11-16 19:43:48+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3552,21 +3552,21 @@ msgstr ""
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1062 #: lib/action.php:1061
#, fuzzy #, fuzzy
msgid "After" msgid "After"
msgstr "« Следни" msgstr "« Следни"
#: lib/action.php:1070 #: lib/action.php:1069
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "Предходни »" msgstr "Предходни »"
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -3738,13 +3738,46 @@ msgstr "OpenID формуларот не може да се креира:%s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Не ни го испративте тој профил."
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "Не ни го испративте тој профил."
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Оддалечена претплата"
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Оддалечена претплата"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Не ни го испративте тој профил."
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "Не ни го испративте тој профил."
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3774,20 +3807,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Нема код за потврда." msgstr "Нема код за потврда."
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""

Binary file not shown.

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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:43:03+0000\n" "PO-Revision-Date: 2009-11-16 19:43:51+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3516,20 +3516,20 @@ msgstr ""
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "" msgstr ""
#: lib/action.php:1070 #: lib/action.php:1069
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "Tidligere »" msgstr "Tidligere »"
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -3700,13 +3700,46 @@ msgstr "Klarte ikke å lagre avatar-informasjonen"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Ikke autorisert."
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "Svar til %s"
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Svar til %s"
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Svar til %s"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Du er allerede logget inn!"
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "Du er allerede logget inn!"
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3736,20 +3769,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Fant ikke bekreftelseskode." msgstr "Fant ikke bekreftelseskode."
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""

Binary file not shown.

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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:43:09+0000\n" "PO-Revision-Date: 2009-11-16 19:43:59+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3683,19 +3683,19 @@ msgstr "Alle "
msgid "license." msgid "license."
msgstr "licentie." msgstr "licentie."
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "Paginering" msgstr "Paginering"
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "Na" msgstr "Na"
#: lib/action.php:1070 #: lib/action.php:1069
msgid "Before" msgid "Before"
msgstr "Voor" msgstr "Voor"
#: lib/action.php:1119 #: lib/action.php:1117
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."
@ -3875,13 +3875,47 @@ 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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "U bent niet geabonneerd op dat profiel."
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "U bent niet geabonneerd op dat profiel."
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Het was niet mogelijk om een ander op u te laten abonneren"
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Gebruikers met een abonnement op %s"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "U bent geen lid van deze groep"
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "U bent geen lid van deze groep."
#: lib/command.php:670
#, fuzzy
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3945,20 +3979,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:189 #: lib/common.php:192
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:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Naar het installatieprogramma gaan." msgstr "Naar het installatieprogramma gaan."
@ -4819,7 +4853,6 @@ msgid "Could not subscribe other to you."
msgstr "Het was niet mogelijk om een ander op u te laten abonneren" msgstr "Het was niet mogelijk om een ander op u te laten abonneren"
#: lib/subs.php:124 #: lib/subs.php:124
#, fuzzy
msgid "Not subscribed!" msgid "Not subscribed!"
msgstr "Niet geabonneerd!" msgstr "Niet geabonneerd!"

Binary file not shown.

View File

@ -5,12 +5,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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:43:05+0000\n" "PO-Revision-Date: 2009-11-16 19:43:54+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3596,19 +3596,19 @@ msgstr "Alle"
msgid "license." msgid "license."
msgstr "lisens." msgstr "lisens."
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "Paginering" msgstr "Paginering"
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "« Etter" msgstr "« Etter"
#: lib/action.php:1070 #: lib/action.php:1069
msgid "Before" msgid "Before"
msgstr "Før »" msgstr "Før »"
#: lib/action.php:1119 #: lib/action.php:1117
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."
@ -3780,13 +3780,46 @@ msgstr "Kunne ikkje laga OpenID-form: %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Du tingar ikkje oppdateringar til den profilen."
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "Du tingar ikkje oppdateringar til den profilen."
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Kan ikkje tinga andre til deg."
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Mennesker som tingar %s"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Du er ikkje medlem av den gruppa."
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "Du er ikkje medlem av den gruppa."
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3816,20 +3849,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Ingen stadfestingskode." msgstr "Ingen stadfestingskode."
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Logg inn or sida" msgstr "Logg inn or sida"

Binary file not shown.

View File

@ -5,12 +5,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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:43:13+0000\n" "PO-Revision-Date: 2009-11-16 19:44:02+0000\n"
"Language-Team: Polish\n" "Language-Team: Polish\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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3662,19 +3662,19 @@ msgstr "Wszystko "
msgid "license." msgid "license."
msgstr "licencja." msgstr "licencja."
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "Paginacja" msgstr "Paginacja"
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "Następne" msgstr "Następne"
#: lib/action.php:1070 #: lib/action.php:1069
msgid "Before" msgid "Before"
msgstr "Wcześniej" msgstr "Wcześniej"
#: lib/action.php:1119 #: lib/action.php:1117
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."
@ -3848,7 +3848,37 @@ msgstr "Nie można utworzyć formularza OpenID: %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Nie jesteś zasubskrybowany do tego profilu."
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "Nie jesteś zasubskrybowany do tego profilu."
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Nie można zasubskrybować innych do Ciebie."
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Osoby zasubskrybowane do %s"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Nie jesteś członkiem tej grupy."
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "Nie jesteś członkiem tej grupy."
#: lib/command.php:670
#, fuzzy #, fuzzy
msgid "" msgid ""
"Commands:\n" "Commands:\n"
@ -3856,6 +3886,9 @@ msgid ""
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3911,20 +3944,20 @@ msgstr ""
"tracks - jeszcze nie zaimplementowano.\n" "tracks - jeszcze nie zaimplementowano.\n"
"tracking - jeszcze nie zaimplementowano.\n" "tracking - jeszcze nie zaimplementowano.\n"
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Brak kodu potwierdzającego." msgstr "Brak kodu potwierdzającego."
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Zaloguj się na stronę" msgstr "Zaloguj się na stronę"

Binary file not shown.

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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:43:15+0000\n" "PO-Revision-Date: 2009-11-16 19:44:05+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3507,20 +3507,20 @@ msgstr ""
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "" msgstr ""
#: lib/action.php:1070 #: lib/action.php:1069
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "Antes »" msgstr "Antes »"
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -3692,13 +3692,44 @@ msgstr "Não foi possível criar o formulário de OpenID: %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Não foi possível subscrever outros a si."
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "Já subscrito!."
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Não foi possível subscrever outros a si."
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Já subscrito!."
#: lib/command.php:656
msgid "You are not a member of any groups."
msgstr ""
#: lib/command.php:658
msgid "You are a member of these groups: "
msgstr ""
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3728,20 +3759,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Código de confirmação não encontrado" msgstr "Código de confirmação não encontrado"
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
msgid "Go to the installer." msgid "Go to the installer."
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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:43:18+0000\n" "PO-Revision-Date: 2009-11-16 19:44:09+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3656,19 +3656,19 @@ msgstr "Todas"
msgid "license." msgid "license."
msgstr "licença" msgstr "licença"
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "Paginação" msgstr "Paginação"
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "Próximo" msgstr "Próximo"
#: lib/action.php:1070 #: lib/action.php:1069
msgid "Before" msgid "Before"
msgstr "Anterior" msgstr "Anterior"
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
"Ocorreu um problema com o seu token de sessão. Tente novamente, por favor." "Ocorreu um problema com o seu token de sessão. Tente novamente, por favor."
@ -3844,13 +3844,46 @@ msgstr "Não foi possível criar o formulário OpenID: %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Você não está assinando esse perfil."
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "Você não está assinando esse perfil."
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Não foi possível fazer com que o outros o sigam."
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Assinantes de %s"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Você não está assinando esse perfil."
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "Você não está assinando esse perfil."
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3880,20 +3913,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Nenhum código de confirmação." msgstr "Nenhum código de confirmação."
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Entrar" msgstr "Entrar"

Binary file not shown.

View File

@ -6,21 +6,20 @@ 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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:43:20+0000\n" "PO-Revision-Date: 2009-11-16 19:44:12+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
#: 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
#, fuzzy
msgid "No such page" msgid "No such page"
msgstr "Нет такого тега." msgstr "Нет такой страницы"
#: actions/all.php:74 actions/allrss.php:68 #: actions/all.php:74 actions/allrss.php:68
#: actions/apiaccountupdatedeliverydevice.php:113 #: actions/apiaccountupdatedeliverydevice.php:113
@ -3651,19 +3650,19 @@ msgstr "Все"
msgid "license." msgid "license."
msgstr "лицензия." msgstr "лицензия."
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "Пагинация" msgstr "Пагинация"
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "Сюда" msgstr "Сюда"
#: lib/action.php:1070 #: lib/action.php:1069
msgid "Before" msgid "Before"
msgstr "Туда" msgstr "Туда"
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста."
@ -3835,13 +3834,46 @@ msgstr "Не удаётся создать OpenID-форму: %s "
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Вы не подписаны на этот профиль."
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "Вы не подписаны на этот профиль."
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Не удаётся подписать других на вашу ленту."
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Люди подписанные на %s"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Вы не являетесь членом этой группы."
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "Вы не являетесь членом этой группы."
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3871,20 +3903,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Нет кода подтверждения." msgstr "Нет кода подтверждения."
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+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"
@ -3392,19 +3392,19 @@ msgstr ""
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "" msgstr ""
#: lib/action.php:1070 #: lib/action.php:1069
msgid "Before" msgid "Before"
msgstr "" msgstr ""
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -3574,13 +3574,40 @@ msgstr ""
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:613 #: lib/command.php:618
msgid "You are not subscribed to anyone."
msgstr ""
#: lib/command.php:620
msgid "You are subscribed to these people: "
msgstr ""
#: lib/command.php:637
msgid "No one is subscribed to you."
msgstr ""
#: lib/command.php:639
msgid "These people are subscribed to you: "
msgstr ""
#: lib/command.php:656
msgid "You are not a member of any groups."
msgstr ""
#: lib/command.php:658
msgid "You are a member of these groups: "
msgstr ""
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3610,19 +3637,19 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "" msgstr ""
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""

Binary file not shown.

View File

@ -5,12 +5,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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:43:23+0000\n" "PO-Revision-Date: 2009-11-16 19:44:15+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3647,21 +3647,21 @@ msgstr ""
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1062 #: lib/action.php:1061
#, fuzzy #, fuzzy
msgid "After" msgid "After"
msgstr "« Nyare" msgstr "« Nyare"
#: lib/action.php:1070 #: lib/action.php:1069
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "Tidigare »" msgstr "Tidigare »"
#: lib/action.php:1119 #: lib/action.php:1117
#, fuzzy #, fuzzy
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Det var något problem med din session. Försök igen, tack." msgstr "Det var något problem med din session. Försök igen, tack."
@ -3834,13 +3834,46 @@ msgstr "Kan inte skapa OpenID formulär: %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Du skickade inte oss den profilen"
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "Du skickade inte oss den profilen"
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Kunde inte prenumerera på annat åt dig."
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Fjärrprenumerera"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Du skickade inte oss den profilen"
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "Du skickade inte oss den profilen"
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3870,20 +3903,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Ingen bekräftelsekod." msgstr "Ingen bekräftelsekod."
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""

Binary file not shown.

View File

@ -6,12 +6,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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:43:25+0000\n" "PO-Revision-Date: 2009-11-16 19:44:17+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -76,7 +76,7 @@ msgstr "%s యొక్క మిత్రుల ఫీడు (ఆటమ్)"
#, php-format #, php-format
msgid "" msgid ""
"This is the timeline for %s and friends but no one has posted anything yet." "This is the timeline for %s and friends but no one has posted anything yet."
msgstr "" msgstr "ఇది %s మరియు మిత్రుల కాలరేఖ కానీ ఇంకా ఎవరూ ఏమీ రాయలేదు."
#: actions/all.php:132 #: actions/all.php:132
#, php-format #, php-format
@ -246,9 +246,8 @@ msgid "No status found with that ID."
msgstr "" msgstr ""
#: actions/apifavoritecreate.php:119 #: actions/apifavoritecreate.php:119
#, fuzzy
msgid "This status is already a favorite!" msgid "This status is already a favorite!"
msgstr "అది ఇప్పటికే మీ ఈమెయిల్ చిరునామా." msgstr "ఈ నోటీసు ఇప్పటికే మీ ఇష్టాంశం!"
#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176 #: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176
msgid "Could not create favorite." msgid "Could not create favorite."
@ -807,7 +806,7 @@ msgstr ""
#: actions/disfavor.php:94 #: actions/disfavor.php:94
msgid "Add to favorites" msgid "Add to favorites"
msgstr "" msgstr "ఇష్టాంశాలకు చేర్చు"
#: actions/doc.php:69 #: actions/doc.php:69
msgid "No such document." msgid "No such document."
@ -1061,7 +1060,7 @@ msgstr ""
#: lib/personalgroupnav.php:115 #: lib/personalgroupnav.php:115
#, php-format #, php-format
msgid "%s's favorite notices" msgid "%s's favorite notices"
msgstr "" msgstr "%sకి ఇష్టమైన నోటీసులు"
#: actions/favoritesrss.php:115 #: actions/favoritesrss.php:115
#, fuzzy, php-format #, fuzzy, php-format
@ -1151,9 +1150,8 @@ msgid "No such file."
msgstr "అటువంటి ఫైలు లేదు." msgstr "అటువంటి ఫైలు లేదు."
#: actions/getfile.php:79 #: actions/getfile.php:79
#, fuzzy
msgid "Cannot read file." msgid "Cannot read file."
msgstr "అటువంటి సందేశమేమీ లేదు." msgstr "ఫైలుని చదవలేకపోతున్నాం."
#: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/groupblock.php:81 actions/groupunblock.php:81
#: actions/makeadmin.php:81 #: actions/makeadmin.php:81
@ -1162,7 +1160,7 @@ msgstr ""
#: actions/groupblock.php:91 #: actions/groupblock.php:91
msgid "Only an admin can block group members." msgid "Only an admin can block group members."
msgstr "" msgstr "నిర్వాహకులు మాత్రమే గుంపు సభ్యులను నిరోధించగలరు."
#: actions/groupblock.php:95 #: actions/groupblock.php:95
msgid "User is already blocked from group." msgid "User is already blocked from group."
@ -1170,12 +1168,11 @@ msgstr "వాడుకరిని ఇప్పటికే గుంపున
#: actions/groupblock.php:100 #: actions/groupblock.php:100
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "" msgstr "వాడుకరి ఈ గుంపులో సభ్యులు కాదు."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:314
#, fuzzy
msgid "Block user from group" msgid "Block user from group"
msgstr "అటువంటి వాడుకరి లేరు." msgstr "వాడుకరిని గుంపు నుండి నిరోధించు"
#: actions/groupblock.php:162 #: actions/groupblock.php:162
#, php-format #, php-format
@ -1204,7 +1201,7 @@ msgstr ""
#: actions/groupdesignsettings.php:68 #: actions/groupdesignsettings.php:68
msgid "You must be logged in to edit a group." msgid "You must be logged in to edit a group."
msgstr "" msgstr "గుంపుని మార్చడానికి మీరు ప్రవేశించి ఉండాలి."
#: actions/groupdesignsettings.php:141 #: actions/groupdesignsettings.php:141
msgid "Group design" msgid "Group design"
@ -1610,7 +1607,7 @@ msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించ
#: actions/leavegroup.php:134 lib/command.php:289 #: actions/leavegroup.php:134 lib/command.php:289
#, php-format #, php-format
msgid "%s left group %s" msgid "%s left group %s"
msgstr "" msgstr "%2$s గుంపు నుండి %1$s వైదొలిగారు"
#: actions/login.php:79 actions/register.php:137 #: actions/login.php:79 actions/register.php:137
msgid "Already logged in." msgid "Already logged in."
@ -2011,14 +2008,13 @@ msgid "URL of your homepage, blog, or profile on another site"
msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా" msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా"
#: actions/profilesettings.php:122 actions/register.php:460 #: actions/profilesettings.php:122 actions/register.php:460
#, fuzzy, php-format #, php-format
msgid "Describe yourself and your interests in %d chars" msgid "Describe yourself and your interests in %d chars"
msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి %d అక్షరాల్లో చెప్పండి"
#: actions/profilesettings.php:125 actions/register.php:463 #: actions/profilesettings.php:125 actions/register.php:463
#, fuzzy
msgid "Describe yourself and your interests" msgid "Describe yourself and your interests"
msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి" msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి చెప్పండి"
#: actions/profilesettings.php:127 actions/register.php:465 #: actions/profilesettings.php:127 actions/register.php:465
msgid "Bio" msgid "Bio"
@ -2242,7 +2238,7 @@ msgstr ""
#: actions/recoverpassword.php:191 #: actions/recoverpassword.php:191
msgid "Nickname or email address" msgid "Nickname or email address"
msgstr "" msgstr "ముద్దుపేరు లేదా ఈమెయిలు చిరునామా"
#: actions/recoverpassword.php:193 #: actions/recoverpassword.php:193
msgid "Your nickname on this server, or your registered email address." msgid "Your nickname on this server, or your registered email address."
@ -2320,7 +2316,7 @@ msgstr "మీ కొత్త సంకేతపదం భద్రమైంద
#: actions/register.php:85 actions/register.php:189 actions/register.php:404 #: actions/register.php:85 actions/register.php:189 actions/register.php:404
msgid "Sorry, only invited people can register." msgid "Sorry, only invited people can register."
msgstr "" msgstr "క్షమించండి, ఆహ్వానితులు మాత్రమే నమోదుకాగలరు."
#: actions/register.php:92 #: actions/register.php:92
#, fuzzy #, fuzzy
@ -2372,7 +2368,7 @@ msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షర
#: actions/register.php:433 #: actions/register.php:433
msgid "Same as password above. Required." msgid "Same as password above. Required."
msgstr "" msgstr "పై సంకేతపదం మరోసారి. తప్పనిసరి."
#: actions/register.php:437 actions/register.php:441 #: actions/register.php:437 actions/register.php:441
#: lib/accountsettingsaction.php:120 #: lib/accountsettingsaction.php:120
@ -2385,7 +2381,7 @@ msgstr "తాజా విశేషాలు, ప్రకటనలు, మర
#: actions/register.php:449 #: actions/register.php:449
msgid "Longer name, preferably your \"real\" name" msgid "Longer name, preferably your \"real\" name"
msgstr "" msgstr "పొడుగాటి పేరు, మీ \"అసలు\" పేరైతే మంచిది"
#: actions/register.php:493 #: actions/register.php:493
msgid "My text and files are available under " msgid "My text and files are available under "
@ -3427,13 +3423,13 @@ msgid "StatusNet software license"
msgstr "" msgstr ""
#: lib/action.php:767 #: lib/action.php:767
#, fuzzy, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
"broughtby%%](%%site.broughtbyurl%%). " "broughtby%%](%%site.broughtbyurl%%). "
msgstr "" msgstr ""
"[%%site.broughtby%%](%%site.broughtbyurl%%) వారు అందిస్తున్న ఈ **%%site.name%%** " "**%%site.name%%** అనేది [%%site.broughtby%%](%%site.broughtbyurl%%) వారు "
"అనేది మైక్రో బ్లాగింగు సదుపాయం." "అందిస్తున్న మైక్రో బ్లాగింగు సదుపాయం. "
#: lib/action.php:769 #: lib/action.php:769
#, php-format #, php-format
@ -3447,6 +3443,9 @@ msgid ""
"s, available under the [GNU Affero General Public License](http://www.fsf." "s, available under the [GNU Affero General Public License](http://www.fsf."
"org/licensing/licenses/agpl-3.0.html)." "org/licensing/licenses/agpl-3.0.html)."
msgstr "" msgstr ""
"ఇది [గ్నూ ఆఫెరో జెనరల్ పబ్లిక్ లైసెన్సు](http://www.fsf.org/licensing/licenses/agpl-3.0."
"html) కింద లభ్యమయ్యే [స్టేటస్&zwnj;నెట్](http://status.net/) మైక్రోబ్లాగింగ్ ఉపకరణం సంచిక %s "
"పై నడుస్తుంది."
#: lib/action.php:785 #: lib/action.php:785
#, fuzzy #, fuzzy
@ -3461,19 +3460,19 @@ msgstr "అన్నీ "
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "పేజీకరణ" msgstr "పేజీకరణ"
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "తర్వాత" msgstr "తర్వాత"
#: lib/action.php:1070 #: lib/action.php:1069
msgid "Before" msgid "Before"
msgstr "ఇంతక్రితం" msgstr "ఇంతక్రితం"
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -3588,7 +3587,7 @@ msgstr ""
#: lib/command.php:431 #: lib/command.php:431
#, php-format #, php-format
msgid "Notice too long - maximum is %d characters, you sent %d" msgid "Notice too long - maximum is %d characters, you sent %d"
msgstr "" msgstr "నోటిసు చాలా పొడవుగా ఉంది - %d అక్షరాలు గరిష్ఠం, మీరు %d పంపించారు"
#: lib/command.php:439 #: lib/command.php:439
#, fuzzy, php-format #, fuzzy, php-format
@ -3648,13 +3647,46 @@ msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించ
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "%sకి స్పందనలు"
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "%sకి స్పందనలు"
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "%sకి స్పందనలు"
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "%sకి స్పందనలు"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!"
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!"
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3684,20 +3716,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "నిర్ధారణ సంకేతం లేదు." msgstr "నిర్ధారణ సంకేతం లేదు."
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""
@ -4359,9 +4391,8 @@ msgid "All subscribers"
msgstr "అందరు చందాదార్లు" msgstr "అందరు చందాదార్లు"
#: lib/profileaction.php:177 #: lib/profileaction.php:177
#, fuzzy
msgid "User ID" msgid "User ID"
msgstr "వాడుకరి" msgstr "వాడుకరి ID"
#: lib/profileaction.php:182 #: lib/profileaction.php:182
msgid "Member since" msgid "Member since"
@ -4443,7 +4474,7 @@ msgstr "%sకి స్పందనలు"
#: lib/subgroupnav.php:99 #: lib/subgroupnav.php:99
#, php-format #, php-format
msgid "Groups %s is a member of" msgid "Groups %s is a member of"
msgstr "" msgstr "%s సభ్యులుగా ఉన్న గుంపులు"
#: lib/subscriberspeopleselftagcloudsection.php:48 #: lib/subscriberspeopleselftagcloudsection.php:48
#: lib/subscriptionspeopleselftagcloudsection.php:48 #: lib/subscriptionspeopleselftagcloudsection.php:48
@ -4464,9 +4495,8 @@ msgid "Already subscribed!"
msgstr "" msgstr ""
#: lib/subs.php:52 #: lib/subs.php:52
#, fuzzy
msgid "User has blocked you." msgid "User has blocked you."
msgstr "వాడుకరికి ప్రొఫైలు లేదు." msgstr "వాడుకరి మిమ్మల్ని నిరోధించారు."
#: lib/subs.php:56 #: lib/subs.php:56
msgid "Could not subscribe." msgid "Could not subscribe."
@ -4499,7 +4529,7 @@ msgstr ""
#: lib/unsubscribeform.php:137 #: lib/unsubscribeform.php:137
msgid "Unsubscribe" msgid "Unsubscribe"
msgstr "" msgstr "చందామాను"
#: lib/userprofile.php:116 #: lib/userprofile.php:116
msgid "Edit Avatar" msgid "Edit Avatar"
@ -4571,9 +4601,9 @@ msgid "about a year ago"
msgstr "ఒక సంవత్సరం క్రితం" msgstr "ఒక సంవత్సరం క్రితం"
#: lib/webcolor.php:82 #: lib/webcolor.php:82
#, fuzzy, php-format #, php-format
msgid "%s is not a valid color!" msgid "%s is not a valid color!"
msgstr "హోమ్ పేజీ URL సరైనది కాదు." msgstr "%s అనేది సరైన రంగు కాదు!"
#: lib/webcolor.php:123 #: lib/webcolor.php:123
#, php-format #, php-format

Binary file not shown.

View File

@ -5,12 +5,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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:43:28+0000\n" "PO-Revision-Date: 2009-11-16 19:44:20+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3547,21 +3547,21 @@ msgstr ""
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1062 #: lib/action.php:1061
#, fuzzy #, fuzzy
msgid "After" msgid "After"
msgstr "« Sonra" msgstr "« Sonra"
#: lib/action.php:1070 #: lib/action.php:1069
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "Önce »" msgstr "Önce »"
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -3733,13 +3733,46 @@ msgstr "OpenID formu yaratılamadı: %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Bize o profili yollamadınız"
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "Bize o profili yollamadınız"
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Uzaktan abonelik"
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Uzaktan abonelik"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Bize o profili yollamadınız"
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "Bize o profili yollamadınız"
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3769,20 +3802,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Onay kodu yok." msgstr "Onay kodu yok."
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""

Binary file not shown.

View File

@ -5,12 +5,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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:43:31+0000\n" "PO-Revision-Date: 2009-11-16 19:44:23+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3627,19 +3627,19 @@ msgstr "Всі "
msgid "license." msgid "license."
msgstr "ліцензія." msgstr "ліцензія."
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "Нумерація сторінок" msgstr "Нумерація сторінок"
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "Вперед" msgstr "Вперед"
#: lib/action.php:1070 #: lib/action.php:1069
msgid "Before" msgid "Before"
msgstr "Назад" msgstr "Назад"
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Виникли певні проблеми з токеном поточної сесії." msgstr "Виникли певні проблеми з токеном поточної сесії."
@ -3811,13 +3811,46 @@ msgstr "Не вдалося створити форму OpenID: %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Ви не підписані до цього профілю."
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "Ви не підписані до цього профілю."
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Не вдалося підписати іншого до вас."
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Люди підписані до %s"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Ви не є учасником цієї групи."
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "Ви не є учасником цієї групи."
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3847,20 +3880,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "Немає коду підтвердження." msgstr "Немає коду підтвердження."
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
msgstr "Увійти на сайт" msgstr "Увійти на сайт"

Binary file not shown.

View File

@ -5,12 +5,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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:43:33+0000\n" "PO-Revision-Date: 2009-11-16 19:44:26+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3687,21 +3687,21 @@ msgstr ""
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1062 #: lib/action.php:1061
#, fuzzy #, fuzzy
msgid "After" msgid "After"
msgstr "Sau" msgstr "Sau"
#: lib/action.php:1070 #: lib/action.php:1069
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "Trước" msgstr "Trước"
#: lib/action.php:1119 #: lib/action.php:1117
#, 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."
@ -3881,13 +3881,46 @@ msgstr "Không thể tạo OpenID mẫu: %s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Bạn chưa cập nhật thông tin riêng"
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "Bạn chưa cập nhật thông tin riêng"
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Không thể tạo favorite."
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "Theo nhóm này"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Bạn chưa cập nhật thông tin riêng"
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "Bạn chưa cập nhật thông tin riêng"
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3917,20 +3950,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, 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:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
msgid "Go to the installer." msgid "Go to the installer."
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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:43:36+0000\n" "PO-Revision-Date: 2009-11-16 19:44:29+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3607,21 +3607,21 @@ msgstr "全部"
msgid "license." msgid "license."
msgstr "注册证" msgstr "注册证"
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "分页" msgstr "分页"
#: lib/action.php:1062 #: lib/action.php:1061
#, fuzzy #, fuzzy
msgid "After" msgid "After"
msgstr "« 之后" msgstr "« 之后"
#: lib/action.php:1070 #: lib/action.php:1069
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "之前 »" msgstr "之前 »"
#: lib/action.php:1119 #: lib/action.php:1117
#, fuzzy #, fuzzy
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "会话标识有问题,请重试。" msgstr "会话标识有问题,请重试。"
@ -3794,13 +3794,46 @@ msgstr "无法创建 OpenID 表单:%s"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "您未告知此个人信息"
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "您未告知此个人信息"
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "无法订阅他人更新。"
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "订阅 %s"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "您未告知此个人信息"
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "您未告知此个人信息"
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3830,20 +3863,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "没有验证码" msgstr "没有验证码"
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
#, fuzzy #, fuzzy
msgid "Go to the installer." msgid "Go to the installer."
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: 2009-11-13 20:42+0000\n" "POT-Creation-Date: 2009-11-16 19:42+0000\n"
"PO-Revision-Date: 2009-11-13 20:43:38+0000\n" "PO-Revision-Date: 2009-11-16 19:44:31+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(r59023); Translate extension (2009-11-13)\n" "X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\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"
@ -3484,20 +3484,20 @@ msgstr ""
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1053 #: lib/action.php:1052
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1062 #: lib/action.php:1061
msgid "After" msgid "After"
msgstr "" msgstr ""
#: lib/action.php:1070 #: lib/action.php:1069
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "之前的內容»" msgstr "之前的內容»"
#: lib/action.php:1119 #: lib/action.php:1117
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -3667,13 +3667,46 @@ msgstr "無法從 %s 建立OpenID"
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:613 #: lib/command.php:618
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "此帳號已註冊"
#: lib/command.php:620
#, fuzzy
msgid "You are subscribed to these people: "
msgstr "此帳號已註冊"
#: lib/command.php:637
#, fuzzy
msgid "No one is subscribed to you."
msgstr "無此訂閱"
#: lib/command.php:639
#, fuzzy
msgid "These people are subscribed to you: "
msgstr "此帳號已註冊"
#: lib/command.php:656
#, fuzzy
msgid "You are not a member of any groups."
msgstr "無法連結到伺服器:%s"
#: lib/command.php:658
#, fuzzy
msgid "You are a member of these groups: "
msgstr "無法連結到伺服器:%s"
#: lib/command.php:670
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
"off - turn off notifications\n" "off - turn off notifications\n"
"help - show this help\n" "help - show this help\n"
"follow <nickname> - subscribe to user\n" "follow <nickname> - subscribe to user\n"
"groups - lists the groups you have joined\n"
"subscriptions - list the people you follow\n"
"subscribers - list the people that follow you\n"
"leave <nickname> - unsubscribe from user\n" "leave <nickname> - unsubscribe from user\n"
"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"
@ -3703,20 +3736,20 @@ msgid ""
"tracking - not yet implemented.\n" "tracking - not yet implemented.\n"
msgstr "" msgstr ""
#: lib/common.php:189 #: lib/common.php:192
#, fuzzy #, fuzzy
msgid "No configuration file found. " msgid "No configuration file found. "
msgstr "無確認碼" msgstr "無確認碼"
#: lib/common.php:190 #: lib/common.php:193
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:191 #: lib/common.php:194
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:192 #: lib/common.php:195
msgid "Go to the installer." msgid "Go to the installer."
msgstr "" msgstr ""

View File

@ -204,16 +204,7 @@ abstract class AuthenticationPlugin extends Plugin
function onCheckSchema() { function onCheckSchema() {
$schema = Schema::get(); $schema = Schema::get();
$schema->ensureTable('user_username', $schema->ensureDataObject('User_username');
array(new ColumnDef('provider_name', 'varchar',
'255', false, 'PRI'),
new ColumnDef('username', 'varchar',
'255', false, 'PRI'),
new ColumnDef('user_id', 'integer',
null, false),
new ColumnDef('created', 'datetime',
null, false),
new ColumnDef('modified', 'timestamp')));
return true; return true;
} }

View File

@ -2,9 +2,9 @@
/** /**
* Table Definition for user_username * Table Definition for user_username
*/ */
require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; require_once INSTALLDIR.'/classes/Plugin_DataObject.php';
class User_username extends Memcached_DataObject class User_username extends Plugin_DataObject
{ {
###START_AUTOCODE ###START_AUTOCODE
/* the code below is auto generated do not remove the above tag */ /* the code below is auto generated do not remove the above tag */
@ -43,4 +43,22 @@ class User_username extends Memcached_DataObject
return false; return false;
} }
} }
/**
* Get the TableDef object that represents the table backing this class
* @return TableDef TableDef instance
*/
function tableDef()
{
return new TableDef($this->__table,
array(new ColumnDef('provider_name', 'varchar',
'255', false, 'PRI'),
new ColumnDef('username', 'varchar',
'255', false, 'PRI'),
new ColumnDef('user_id', 'integer',
null, false),
new ColumnDef('created', 'datetime',
null, false),
new ColumnDef('modified', 'timestamp')));
}
} }

View File

@ -156,6 +156,9 @@ class OpenIDPlugin extends Plugin
case 'User_openid': case 'User_openid':
require_once(INSTALLDIR.'/plugins/OpenID/User_openid.php'); require_once(INSTALLDIR.'/plugins/OpenID/User_openid.php');
return false; return false;
case 'User_openid_trustroot':
require_once(INSTALLDIR.'/plugins/OpenID/User_openid_trustroot.php');
return false;
default: default:
return true; return true;
} }
@ -278,24 +281,8 @@ class OpenIDPlugin extends Plugin
function onCheckSchema() { function onCheckSchema() {
$schema = Schema::get(); $schema = Schema::get();
$schema->ensureTable('user_openid', $schema->ensureDataObject('User_openid');
array(new ColumnDef('canonical', 'varchar', $schema->ensureDataObject('User_openid_trustroot');
'255', false, 'PRI'),
new ColumnDef('display', 'varchar',
'255', false),
new ColumnDef('user_id', 'integer',
null, false, 'MUL'),
new ColumnDef('created', 'datetime',
null, false),
new ColumnDef('modified', 'timestamp')));
$schema->ensureTable('user_openid_trustroot',
array(new ColumnDef('trustroot', 'varchar',
'255', false, 'PRI'),
new ColumnDef('user_id', 'integer',
null, false, 'PRI'),
new ColumnDef('created', 'datetime',
null, false),
new ColumnDef('modified', 'timestamp')));
return true; return true;
} }

View File

@ -2,9 +2,9 @@
/** /**
* Table Definition for user_openid * Table Definition for user_openid
*/ */
require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; require_once INSTALLDIR.'/classes/Plugin_DataObject.php';
class User_openid extends Memcached_DataObject class User_openid extends Plugin_DataObject
{ {
###START_AUTOCODE ###START_AUTOCODE
/* the code below is auto generated do not remove the above tag */ /* the code below is auto generated do not remove the above tag */
@ -33,4 +33,22 @@ class User_openid extends Memcached_DataObject
return ($cnt > 0); return ($cnt > 0);
} }
/**
* Get the TableDef object that represents the table backing this class
* @return TableDef TableDef instance
*/
function tableDef()
{
return new TableDef($this->__table,
array(new ColumnDef('canonical', 'varchar',
'255', false, 'PRI'),
new ColumnDef('display', 'varchar',
'255', false),
new ColumnDef('user_id', 'integer',
null, false, 'MUL'),
new ColumnDef('created', 'datetime',
null, false),
new ColumnDef('modified', 'timestamp')));
}
} }

View File

@ -2,9 +2,9 @@
/** /**
* Table Definition for user_openid_trustroot * Table Definition for user_openid_trustroot
*/ */
require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; require_once INSTALLDIR.'/classes/Plugin_DataObject.php';
class User_openid_trustroot extends Memcached_DataObject class User_openid_trustroot extends Plugin_DataObject
{ {
###START_AUTOCODE ###START_AUTOCODE
/* the code below is auto generated do not remove the above tag */ /* the code below is auto generated do not remove the above tag */
@ -26,4 +26,20 @@ class User_openid_trustroot extends Memcached_DataObject
{ {
return Memcached_DataObject::pkeyGet('User_openid_trustroot', $kv); return Memcached_DataObject::pkeyGet('User_openid_trustroot', $kv);
} }
/**
* Get the TableDef object that represents the table backing this class
* @return TableDef TableDef instance
*/
function tableDef()
{
return new TableDef($this->__table,
array(new ColumnDef('trustroot', 'varchar',
'255', false, 'PRI'),
new ColumnDef('user_id', 'integer',
null, false, 'PRI'),
new ColumnDef('created', 'datetime',
null, false),
new ColumnDef('modified', 'timestamp')));
}
} }

28
plugins/Recaptcha/README Normal file
View File

@ -0,0 +1,28 @@
StatusNet reCAPTCHA plugin 0.3 11/16/09
=======================================
Adds a captcha to your registration page to reduce automated spam bots registering.
Use:
1. Get an API key from http://recaptcha.net
2. In config.php add:
addPlugin('recaptcha', array('private_key' => 'YourKeyHere',
'public_key' => 'ReplaceWithYourKey'));
or
addPlugin('recaptcha', array('private_key' => 'YourKeyHere',
'public_key' => 'ReplaceWithYourKey',
'display_errors' => true));
Changelog
=========
0.1 initial release
0.2 Work around for webkit browsers
0.3 Moved to new plugin arch for SN
**YOU WILL NEED TO CHANGE YOUR CONFIG.PHP!**
reCAPTCHA Lib README
====================
The reCAPTCHA PHP Lirary helps you use the reCAPTCHA API. Documentation
for this library can be found at
http://recaptcha.net/plugins/php

View File

@ -33,7 +33,9 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
define('RECAPTCHA', '0.2'); define('RECAPTCHA', '0.2');
class recaptcha extends Plugin require_once(INSTALLDIR.'/plugins/Recaptcha/recaptchalib.php');
class RecaptchaPlugin extends Plugin
{ {
var $private_key; var $private_key;
var $public_key; var $public_key;
@ -41,13 +43,13 @@ class recaptcha extends Plugin
var $failed; var $failed;
var $ssl; var $ssl;
function __construct($public_key, $private_key, $display_errors=false) function onInitializePlugin(){
{ if(!isset($this->private_key)){
parent::__construct(); common_log(LOG_ERR, "Recaptcha: Must specify private_key in config.php");
require_once(INSTALLDIR.'/plugins/recaptcha/recaptchalib.php'); }
$this->public_key = $public_key; if(!isset($this->public_key)){
$this->private_key = $private_key; common_log(LOG_ERR, "Recaptcha: Must specify public_key in config.php");
$this->display_errors = $display_errors; }
} }
function checkssl(){ function checkssl(){

View File

@ -48,16 +48,7 @@ class UserFlagPlugin extends Plugin
$schema = Schema::get(); $schema = Schema::get();
// For storing user-submitted flags on profiles // For storing user-submitted flags on profiles
$schema->ensureDataObject('User_flag_profile');
$schema->ensureTable('user_flag_profile',
array(new ColumnDef('profile_id', 'integer', null,
false, 'PRI'),
new ColumnDef('user_id', 'integer', null,
false, 'PRI'),
new ColumnDef('created', 'datetime', null,
false, 'MUL'),
new ColumnDef('cleared', 'datetime', null,
true, 'MUL')));
return true; return true;
} }

View File

@ -21,9 +21,9 @@ if (!defined('STATUSNET')) {
exit(1); exit(1);
} }
require_once INSTALLDIR . '/classes/Memcached_DataObject.php'; require_once INSTALLDIR.'/classes/Plugin_DataObject.php';
class User_flag_profile extends Memcached_DataObject class User_flag_profile extends Plugin_DataObject
{ {
###START_AUTOCODE ###START_AUTOCODE
/* the code below is auto generated do not remove the above tag */ /* the code below is auto generated do not remove the above tag */
@ -65,4 +65,21 @@ class User_flag_profile extends Memcached_DataObject
return !empty($ufp); return !empty($ufp);
} }
/**
* Get the TableDef object that represents the table backing this class
* @return TableDef TableDef instance
*/
function tableDef()
{
return new TableDef($this->__table,
array(new ColumnDef('profile_id', 'integer', null,
false, 'PRI'),
new ColumnDef('user_id', 'integer', null,
false, 'PRI'),
new ColumnDef('created', 'datetime', null,
false, 'MUL'),
new ColumnDef('cleared', 'datetime', null,
true, 'MUL')));
}
} }

View File

@ -1,23 +0,0 @@
StatusNet reCAPTCHA plugin 0.2 8/3/09
====================================
Adds a captcha to your registration page to reduce automated spam bots registering.
Use:
1. Get an API key from http://recaptcha.net
2. In config.php add:
include_once('plugins/recaptcha/recaptcha.php');
$captcha = new recaptcha(publickey, privatekey, showErrors);
Changelog
=========
0.1 initial release
0.2 Work around for webkit browsers
reCAPTCHA README
================
The reCAPTCHA PHP Lirary helps you use the reCAPTCHA API. Documentation
for this library can be found at
http://recaptcha.net/plugins/php

0
scripts/deleteuser.php Normal file → Executable file
View File

View File

@ -93,14 +93,17 @@ border-radius:4px;
-webkit-border-radius:4px; -webkit-border-radius:4px;
margin-bottom:18px; margin-bottom:18px;
} }
.xoxo li {
list-style-type:none;
}
form label.submit { form label.submit {
display:none; display:none;
} }
.form_settings { .form_settings {
clear:both; clear:both;
} }
.form_settings fieldset { .form_settings fieldset {
margin-bottom:29px; margin-bottom:29px;
} }