Merge branch '0.9.x' of git@gitorious.org:statusnet/mainline into 0.9.x
Conflicts: classes/statusnet.ini
This commit is contained in:
commit
6a1afda259
@ -92,7 +92,7 @@ class ApiGroupIsMemberAction extends ApiBareAuthAction
|
||||
}
|
||||
|
||||
if (empty($this->group)) {
|
||||
$this->clientError('Group not found!', 404, $this->format);
|
||||
$this->clientError(_('Group not found!'), 404, $this->format);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -101,7 +101,7 @@ class ApiGroupJoinAction extends ApiAuthAction
|
||||
}
|
||||
|
||||
if (empty($this->group)) {
|
||||
$this->clientError('Group not found!', 404, $this->format);
|
||||
$this->clientError(_('Group not found!'), 404, $this->format);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -101,7 +101,7 @@ class ApiGroupLeaveAction extends ApiAuthAction
|
||||
}
|
||||
|
||||
if (empty($this->group)) {
|
||||
$this->clientError('Group not found!', 404, $this->format);
|
||||
$this->clientError(_('Group not found!'), 404, $this->format);
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -87,6 +87,11 @@ class ApiGroupMembershipAction extends ApiPrivateAuthAction
|
||||
{
|
||||
parent::handle($args);
|
||||
|
||||
if (empty($this->group)) {
|
||||
$this->clientError(_('Group not found!'), 404, $this->format);
|
||||
return false;
|
||||
}
|
||||
|
||||
// XXX: RSS and Atom
|
||||
|
||||
switch($this->format) {
|
||||
|
@ -87,7 +87,7 @@ class ApiGroupShowAction extends ApiPrivateAuthAction
|
||||
|
||||
if (empty($this->group)) {
|
||||
$this->clientError(
|
||||
'Group not found!',
|
||||
_('Group not found!'),
|
||||
404,
|
||||
$this->format
|
||||
);
|
||||
|
@ -69,7 +69,6 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction
|
||||
parent::prepare($args);
|
||||
|
||||
$this->group = $this->getTargetGroup($this->arg('id'));
|
||||
$this->notices = $this->getNotices();
|
||||
|
||||
return true;
|
||||
}
|
||||
@ -87,6 +86,13 @@ class ApiTimelineGroupAction extends ApiPrivateAuthAction
|
||||
function 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();
|
||||
}
|
||||
|
||||
|
@ -74,8 +74,11 @@ class UserbyidAction extends Action
|
||||
$this->clientError(_('No such user.'));
|
||||
}
|
||||
|
||||
// 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';
|
||||
// Support redirecting to FOAF rdf/xml if the agent prefers it...
|
||||
// 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'])
|
||||
? $_SERVER['HTTP_ACCEPT'] : null;
|
||||
$type = common_negotiate_type(common_accept_to_prefs($httpaccept),
|
||||
|
195
classes/Plugin_DataObject.php
Normal file
195
classes/Plugin_DataObject.php
Normal 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();
|
||||
}
|
||||
|
@ -310,10 +310,12 @@ class Profile extends Memcached_DataObject
|
||||
'AND subscription.subscribed != subscription.subscriber ' .
|
||||
'ORDER BY subscription.created DESC ';
|
||||
|
||||
if (common_config('db','type') == 'pgsql') {
|
||||
$qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
|
||||
} else {
|
||||
$qry .= ' LIMIT ' . $offset . ', ' . $limit;
|
||||
if ($offset>0 && !is_null($limit)){
|
||||
if (common_config('db','type') == 'pgsql') {
|
||||
$qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
|
||||
} else {
|
||||
$qry .= ' LIMIT ' . $offset . ', ' . $limit;
|
||||
}
|
||||
}
|
||||
|
||||
$profile = new Profile();
|
||||
@ -333,11 +335,13 @@ class Profile extends Memcached_DataObject
|
||||
'AND subscription.subscribed != subscription.subscriber ' .
|
||||
'ORDER BY subscription.created DESC ';
|
||||
|
||||
if ($offset) {
|
||||
if (common_config('db','type') == 'pgsql') {
|
||||
$qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
|
||||
} else {
|
||||
$qry .= ' LIMIT ' . $offset . ', ' . $limit;
|
||||
if ($offset>0 && !is_null($limit)){
|
||||
if ($offset) {
|
||||
if (common_config('db','type') == 'pgsql') {
|
||||
$qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
|
||||
} else {
|
||||
$qry .= ' LIMIT ' . $offset . ', ' . $limit;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -577,11 +577,13 @@ class User extends Memcached_DataObject
|
||||
'WHERE group_member.profile_id = %d ' .
|
||||
'ORDER BY group_member.created DESC ';
|
||||
|
||||
if ($offset) {
|
||||
if (common_config('db','type') == 'pgsql') {
|
||||
$qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
|
||||
} else {
|
||||
$qry .= ' LIMIT ' . $offset . ', ' . $limit;
|
||||
if ($offset>0 && !is_null($limit)) {
|
||||
if ($offset) {
|
||||
if (common_config('db','type') == 'pgsql') {
|
||||
$qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
|
||||
} else {
|
||||
$qry .= ' LIMIT ' . $offset . ', ' . $limit;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -542,4 +542,4 @@ created = 142
|
||||
modified = 384
|
||||
|
||||
[user_group__keys]
|
||||
id = N
|
||||
id = N
|
@ -746,7 +746,7 @@ class PEAR
|
||||
{
|
||||
if (!extension_loaded($ext)) {
|
||||
// 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;
|
||||
}
|
||||
if (OS_WINDOWS) {
|
||||
|
135
extlib/Stomp.php
135
extlib/Stomp.php
@ -66,12 +66,13 @@ class Stomp
|
||||
protected $_sessionId;
|
||||
protected $_read_timeout_seconds = 60;
|
||||
protected $_read_timeout_milliseconds = 0;
|
||||
protected $_connect_timeout_seconds = 60;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param string $brokerUri Broker URL
|
||||
* @throws Stomp_Exception
|
||||
* @throws StompException
|
||||
*/
|
||||
public function __construct ($brokerUri)
|
||||
{
|
||||
@ -81,7 +82,7 @@ class Stomp
|
||||
/**
|
||||
* Initialize connection
|
||||
*
|
||||
* @throws Stomp_Exception
|
||||
* @throws StompException
|
||||
*/
|
||||
protected function _init ()
|
||||
{
|
||||
@ -103,14 +104,14 @@ class Stomp
|
||||
}
|
||||
} else {
|
||||
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
|
||||
*
|
||||
* @param string $url Broker URL
|
||||
* @throws Stomp_Exception
|
||||
* @throws StompException
|
||||
* @return boolean
|
||||
*/
|
||||
protected function _processUrl ($url)
|
||||
@ -120,19 +121,19 @@ class Stomp
|
||||
array_push($this->_hosts, array($parsed['host'] , $parsed['port'] , $parsed['scheme']));
|
||||
} else {
|
||||
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
|
||||
*
|
||||
* @throws Stomp_Exception
|
||||
* @throws StompException
|
||||
*/
|
||||
protected function _makeConnection ()
|
||||
{
|
||||
if (count($this->_hosts) == 0) {
|
||||
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
|
||||
@ -141,6 +142,9 @@ class Stomp
|
||||
$i = $this->_currentHost;
|
||||
$att = 0;
|
||||
$connected = false;
|
||||
$connect_errno = null;
|
||||
$connect_errstr = null;
|
||||
|
||||
while (! $connected && $att ++ < $this->_attempts) {
|
||||
if (isset($this->_params['randomize']) && $this->_params['randomize'] == 'true') {
|
||||
$i = rand(0, count($this->_hosts) - 1);
|
||||
@ -158,10 +162,10 @@ class Stomp
|
||||
fclose($this->_socket);
|
||||
$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)) {
|
||||
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)) {
|
||||
$connected = true;
|
||||
$this->_currentHost = $i;
|
||||
@ -170,7 +174,7 @@ class Stomp
|
||||
}
|
||||
if (! $connected) {
|
||||
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 $password
|
||||
* @return boolean
|
||||
* @throws Stomp_Exception
|
||||
* @throws StompException
|
||||
*/
|
||||
public function connect ($username = '', $password = '')
|
||||
{
|
||||
@ -194,18 +198,18 @@ class Stomp
|
||||
if ($this->clientId != null) {
|
||||
$headers["client-id"] = $this->clientId;
|
||||
}
|
||||
$frame = new Stomp_Frame("CONNECT", $headers);
|
||||
$frame = new StompFrame("CONNECT", $headers);
|
||||
$this->_writeFrame($frame);
|
||||
$frame = $this->readFrame();
|
||||
if ($frame instanceof Stomp_Frame && $frame->command == 'CONNECTED') {
|
||||
if ($frame instanceof StompFrame && $frame->command == 'CONNECTED') {
|
||||
$this->_sessionId = $frame->headers["session"];
|
||||
return true;
|
||||
} else {
|
||||
require_once 'Stomp/Exception.php';
|
||||
if ($frame instanceof Stomp_Frame) {
|
||||
throw new Stomp_Exception("Unexpected command: {$frame->command}", 0, $frame->body);
|
||||
if ($frame instanceof StompFrame) {
|
||||
throw new StompException("Unexpected command: {$frame->command}", 0, $frame->body);
|
||||
} 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
|
||||
*
|
||||
* @param string $destination Destination queue
|
||||
* @param string|Stomp_Frame $msg Message
|
||||
* @param string|StompFrame $msg Message
|
||||
* @param array $properties
|
||||
* @param boolean $sync Perform request synchronously
|
||||
* @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 = array_merge($msg->headers, $properties);
|
||||
if (is_array($properties)) $msg->headers = array_merge($msg->headers, $properties);
|
||||
$frame = $msg;
|
||||
} else {
|
||||
$headers = $properties;
|
||||
$headers['destination'] = $destination;
|
||||
$frame = new Stomp_Frame('SEND', $headers, $msg);
|
||||
$frame = new StompFrame('SEND', $headers, $msg);
|
||||
}
|
||||
$this->_prepareReceipt($frame, $sync);
|
||||
$this->_writeFrame($frame);
|
||||
@ -255,10 +259,10 @@ class Stomp
|
||||
/**
|
||||
* Prepair frame receipt
|
||||
*
|
||||
* @param Stomp_Frame $frame
|
||||
* @param StompFrame $frame
|
||||
* @param boolean $sync
|
||||
*/
|
||||
protected function _prepareReceipt (Stomp_Frame $frame, $sync)
|
||||
protected function _prepareReceipt (StompFrame $frame, $sync)
|
||||
{
|
||||
$receive = $this->sync;
|
||||
if ($sync !== null) {
|
||||
@ -271,12 +275,12 @@ class Stomp
|
||||
/**
|
||||
* Wait for receipt
|
||||
*
|
||||
* @param Stomp_Frame $frame
|
||||
* @param StompFrame $frame
|
||||
* @param boolean $sync
|
||||
* @return boolean
|
||||
* @throws Stomp_Exception
|
||||
* @throws StompException
|
||||
*/
|
||||
protected function _waitForReceipt (Stomp_Frame $frame, $sync)
|
||||
protected function _waitForReceipt (StompFrame $frame, $sync)
|
||||
{
|
||||
|
||||
$receive = $this->sync;
|
||||
@ -289,19 +293,19 @@ class Stomp
|
||||
return true;
|
||||
}
|
||||
$frame = $this->readFrame();
|
||||
if ($frame instanceof Stomp_Frame && $frame->command == 'RECEIPT') {
|
||||
if ($frame instanceof StompFrame && $frame->command == 'RECEIPT') {
|
||||
if ($frame->headers['receipt-id'] == $id) {
|
||||
return true;
|
||||
} else {
|
||||
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 {
|
||||
require_once 'Stomp/Exception.php';
|
||||
if ($frame instanceof Stomp_Frame) {
|
||||
throw new Stomp_Exception("Unexpected command {$frame->command}", 0, $frame->body);
|
||||
if ($frame instanceof StompFrame) {
|
||||
throw new StompException("Unexpected command {$frame->command}", 0, $frame->body);
|
||||
} else {
|
||||
throw new Stomp_Exception("Receipt not received");
|
||||
throw new StompException("Receipt not received");
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -314,7 +318,7 @@ class Stomp
|
||||
* @param array $properties
|
||||
* @param boolean $sync Perform request synchronously
|
||||
* @return boolean
|
||||
* @throws Stomp_Exception
|
||||
* @throws StompException
|
||||
*/
|
||||
public function subscribe ($destination, $properties = null, $sync = null)
|
||||
{
|
||||
@ -329,7 +333,7 @@ class Stomp
|
||||
}
|
||||
}
|
||||
$headers['destination'] = $destination;
|
||||
$frame = new Stomp_Frame('SUBSCRIBE', $headers);
|
||||
$frame = new StompFrame('SUBSCRIBE', $headers);
|
||||
$this->_prepareReceipt($frame, $sync);
|
||||
$this->_writeFrame($frame);
|
||||
if ($this->_waitForReceipt($frame, $sync) == true) {
|
||||
@ -346,7 +350,7 @@ class Stomp
|
||||
* @param array $properties
|
||||
* @param boolean $sync Perform request synchronously
|
||||
* @return boolean
|
||||
* @throws Stomp_Exception
|
||||
* @throws StompException
|
||||
*/
|
||||
public function unsubscribe ($destination, $properties = null, $sync = null)
|
||||
{
|
||||
@ -357,7 +361,7 @@ class Stomp
|
||||
}
|
||||
}
|
||||
$headers['destination'] = $destination;
|
||||
$frame = new Stomp_Frame('UNSUBSCRIBE', $headers);
|
||||
$frame = new StompFrame('UNSUBSCRIBE', $headers);
|
||||
$this->_prepareReceipt($frame, $sync);
|
||||
$this->_writeFrame($frame);
|
||||
if ($this->_waitForReceipt($frame, $sync) == true) {
|
||||
@ -373,7 +377,7 @@ class Stomp
|
||||
* @param string $transactionId
|
||||
* @param boolean $sync Perform request synchronously
|
||||
* @return boolean
|
||||
* @throws Stomp_Exception
|
||||
* @throws StompException
|
||||
*/
|
||||
public function begin ($transactionId = null, $sync = null)
|
||||
{
|
||||
@ -381,7 +385,7 @@ class Stomp
|
||||
if (isset($transactionId)) {
|
||||
$headers['transaction'] = $transactionId;
|
||||
}
|
||||
$frame = new Stomp_Frame('BEGIN', $headers);
|
||||
$frame = new StompFrame('BEGIN', $headers);
|
||||
$this->_prepareReceipt($frame, $sync);
|
||||
$this->_writeFrame($frame);
|
||||
return $this->_waitForReceipt($frame, $sync);
|
||||
@ -392,7 +396,7 @@ class Stomp
|
||||
* @param string $transactionId
|
||||
* @param boolean $sync Perform request synchronously
|
||||
* @return boolean
|
||||
* @throws Stomp_Exception
|
||||
* @throws StompException
|
||||
*/
|
||||
public function commit ($transactionId = null, $sync = null)
|
||||
{
|
||||
@ -400,7 +404,7 @@ class Stomp
|
||||
if (isset($transactionId)) {
|
||||
$headers['transaction'] = $transactionId;
|
||||
}
|
||||
$frame = new Stomp_Frame('COMMIT', $headers);
|
||||
$frame = new StompFrame('COMMIT', $headers);
|
||||
$this->_prepareReceipt($frame, $sync);
|
||||
$this->_writeFrame($frame);
|
||||
return $this->_waitForReceipt($frame, $sync);
|
||||
@ -417,7 +421,7 @@ class Stomp
|
||||
if (isset($transactionId)) {
|
||||
$headers['transaction'] = $transactionId;
|
||||
}
|
||||
$frame = new Stomp_Frame('ABORT', $headers);
|
||||
$frame = new StompFrame('ABORT', $headers);
|
||||
$this->_prepareReceipt($frame, $sync);
|
||||
$this->_writeFrame($frame);
|
||||
return $this->_waitForReceipt($frame, $sync);
|
||||
@ -426,15 +430,19 @@ class Stomp
|
||||
* Acknowledge consumption of a message from a subscription
|
||||
* Note: This operation is always asynchronous
|
||||
*
|
||||
* @param string|Stomp_Frame $messageMessage ID
|
||||
* @param string|StompFrame $messageMessage ID
|
||||
* @param string $transactionId
|
||||
* @return boolean
|
||||
* @throws Stomp_Exception
|
||||
* @throws StompException
|
||||
*/
|
||||
public function ack ($message, $transactionId = null)
|
||||
{
|
||||
if ($message instanceof Stomp_Frame) {
|
||||
$frame = new Stomp_Frame('ACK', $message->headers);
|
||||
if ($message instanceof StompFrame) {
|
||||
$headers = $message->headers;
|
||||
if (isset($transactionId)) {
|
||||
$headers['transaction'] = $transactionId;
|
||||
}
|
||||
$frame = new StompFrame('ACK', $headers);
|
||||
$this->_writeFrame($frame);
|
||||
return true;
|
||||
} else {
|
||||
@ -443,7 +451,7 @@ class Stomp
|
||||
$headers['transaction'] = $transactionId;
|
||||
}
|
||||
$headers['message-id'] = $message;
|
||||
$frame = new Stomp_Frame('ACK', $headers);
|
||||
$frame = new StompFrame('ACK', $headers);
|
||||
$this->_writeFrame($frame);
|
||||
return true;
|
||||
}
|
||||
@ -461,7 +469,7 @@ class Stomp
|
||||
}
|
||||
|
||||
if (is_resource($this->_socket)) {
|
||||
$this->_writeFrame(new Stomp_Frame('DISCONNECT', $headers));
|
||||
$this->_writeFrame(new StompFrame('DISCONNECT', $headers));
|
||||
fclose($this->_socket);
|
||||
}
|
||||
$this->_socket = null;
|
||||
@ -474,13 +482,13 @@ class Stomp
|
||||
/**
|
||||
* 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)) {
|
||||
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();
|
||||
@ -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 ()
|
||||
{
|
||||
@ -516,15 +524,21 @@ class Stomp
|
||||
|
||||
$rb = 1024;
|
||||
$data = '';
|
||||
$end = false;
|
||||
|
||||
do {
|
||||
$read = fgets($this->_socket, $rb);
|
||||
$read = fread($this->_socket, $rb);
|
||||
if ($read === false) {
|
||||
$this->_reconnect();
|
||||
return $this->readFrame();
|
||||
}
|
||||
$data .= $read;
|
||||
if (strpos($data, "\x00") !== false) {
|
||||
$end = true;
|
||||
$data = rtrim($data, "\n");
|
||||
}
|
||||
$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);
|
||||
$header = explode("\n", $header);
|
||||
@ -538,13 +552,14 @@ class Stomp
|
||||
$command = $v;
|
||||
}
|
||||
}
|
||||
$frame = new Stomp_Frame($command, $headers, trim($body));
|
||||
if (isset($frame->headers['amq-msg-type']) && $frame->headers['amq-msg-type'] == 'MapMessage') {
|
||||
$frame = new StompFrame($command, $headers, trim($body));
|
||||
if (isset($frame->headers['transformation']) && $frame->headers['transformation'] == 'jms-map-json') {
|
||||
require_once 'Stomp/Message/Map.php';
|
||||
return new Stomp_Message_Map($frame);
|
||||
return new StompMessageMap($frame);
|
||||
} else {
|
||||
return $frame;
|
||||
}
|
||||
return $frame;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -558,10 +573,14 @@ class Stomp
|
||||
$write = 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) {
|
||||
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) {
|
||||
return true;
|
||||
} else {
|
||||
|
@ -23,10 +23,8 @@
|
||||
*
|
||||
*
|
||||
* @package Stomp
|
||||
* @author Michael Caplan <mcaplan@labnet.net>
|
||||
* @version $Revision: 23 $
|
||||
*/
|
||||
class Stomp_Exception extends Exception
|
||||
*/
|
||||
class StompException extends Exception
|
||||
{
|
||||
protected $_details;
|
||||
|
||||
@ -53,5 +51,5 @@ class Stomp_Exception extends Exception
|
||||
{
|
||||
return $this->_details;
|
||||
}
|
||||
}
|
||||
}
|
||||
?>
|
@ -1,33 +1,29 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* Copyright 2005-2006 The Apache Software Foundation
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/* vim: set expandtab tabstop=3 shiftwidth=3: */
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* Copyright 2005-2006 The Apache Software Foundation
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
/* 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
|
||||
* @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 $headers = array();
|
||||
@ -54,27 +50,27 @@ class Stomp_Frame
|
||||
$this->body = $body;
|
||||
|
||||
if ($this->command == 'ERROR') {
|
||||
require_once 'Stomp/Exception.php';
|
||||
throw new Stomp_Exception($this->headers['message'], 0, $this->body);
|
||||
require_once 'Exception.php';
|
||||
throw new StompException($this->headers['message'], 0, $this->body);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert frame to transportable string
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function __toString()
|
||||
{
|
||||
$data = $this->command . "\n";
|
||||
|
||||
foreach ($this->headers as $name => $value) {
|
||||
$data .= $name . ": " . $value . "\n";
|
||||
}
|
||||
|
||||
$data .= "\n";
|
||||
$data .= $this->body;
|
||||
return $data .= "\x00\n";
|
||||
}
|
||||
|
||||
/**
|
||||
* Convert frame to transportable string
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function __toString()
|
||||
{
|
||||
$data = $this->command . "\n";
|
||||
|
||||
foreach ($this->headers as $name => $value) {
|
||||
$data .= $name . ": " . $value . "\n";
|
||||
}
|
||||
|
||||
$data .= "\n";
|
||||
$data .= $this->body;
|
||||
return $data .= "\x00";
|
||||
}
|
||||
}
|
||||
?>
|
@ -24,10 +24,8 @@ require_once 'Stomp/Frame.php';
|
||||
* Basic text stomp message
|
||||
*
|
||||
* @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)
|
||||
{
|
||||
|
@ -24,30 +24,28 @@ require_once 'Stomp/Message.php';
|
||||
* Message that contains a set of name-value pairs
|
||||
*
|
||||
* @package Stomp
|
||||
* @author Dejan Bosanac <dejan@nighttale.net>
|
||||
* @version $Revision: 23 $
|
||||
*/
|
||||
class Stomp_Message_Map extends Stomp_Message
|
||||
class StompMessageMap extends StompMessage
|
||||
{
|
||||
public $map;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param Stomp_Frame|string $msg
|
||||
* @param StompFrame|string $msg
|
||||
* @param array $headers
|
||||
*/
|
||||
function __construct ($msg, $headers = null)
|
||||
{
|
||||
if ($msg instanceof Stomp_Frame) {
|
||||
if ($msg instanceof StompFrame) {
|
||||
$this->_init($msg->command, $msg->headers, $msg->body);
|
||||
$this->map = json_decode($msg->body);
|
||||
$this->map = json_decode($msg->body, true);
|
||||
} else {
|
||||
$this->_init("SEND", $headers, $msg);
|
||||
if ($this->headers == null) {
|
||||
$this->headers = array();
|
||||
}
|
||||
$this->headers['amq-msg-type'] = 'MapMessage';
|
||||
$this->headers['transformation'] = 'jms-map-json';
|
||||
$this->body = json_encode($msg);
|
||||
}
|
||||
}
|
||||
|
@ -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
|
||||
{
|
||||
function execute($channel)
|
||||
@ -615,6 +680,9 @@ class HelpCommand extends Command
|
||||
"off - turn off notifications\n".
|
||||
"help - show this help\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".
|
||||
"d <nickname> <text> - direct message to user\n".
|
||||
"get <nickname> - get last notice from user\n".
|
||||
|
@ -47,6 +47,24 @@ class CommandInterpreter
|
||||
} else {
|
||||
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':
|
||||
if ($arg) {
|
||||
list($other, $extra) = $this->split_arg($arg);
|
||||
|
@ -45,6 +45,14 @@ define('FOREIGN_FRIEND_RECV', 2);
|
||||
|
||||
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
|
||||
|
||||
require_once('PEAR.php');
|
||||
|
@ -282,7 +282,7 @@ class MailboxAction extends CurrentUserDesignAction
|
||||
$ns->name);
|
||||
$this->elementEnd('span');
|
||||
} else {
|
||||
$this->out->element('span', 'device', $source_name);
|
||||
$this->element('span', 'device', $source_name);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
@ -372,6 +372,26 @@ class Schema
|
||||
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
|
||||
* name and the given column definitions.
|
||||
@ -544,6 +564,19 @@ class TableDef
|
||||
public $name;
|
||||
/** array of ColumnDef objects for the 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
|
||||
* unused. */
|
||||
public $extra;
|
||||
/** auto increment this field if no value is specific for it during an insert **/
|
||||
public $auto_increment;
|
||||
|
||||
/**
|
||||
* Constructor.
|
||||
@ -591,7 +626,7 @@ class ColumnDef
|
||||
|
||||
function __construct($name=null, $type=null, $size=null,
|
||||
$nullable=true, $key=null, $default=null,
|
||||
$extra=null)
|
||||
$extra=null, $auto_increment=false)
|
||||
{
|
||||
$this->name = strtolower($name);
|
||||
$this->type = strtolower($type);
|
||||
@ -600,6 +635,7 @@ class ColumnDef
|
||||
$this->key = $key;
|
||||
$this->default = $default;
|
||||
$this->extra = $extra;
|
||||
$this->auto_increment = $auto_increment;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -617,7 +653,8 @@ class ColumnDef
|
||||
$this->_typeMatch($other) &&
|
||||
$this->_defaultMatch($other) &&
|
||||
$this->_nullMatch($other) &&
|
||||
$this->key == $other->key);
|
||||
$this->key == $other->key &&
|
||||
$this->auto_increment == $other->auto_increment);
|
||||
}
|
||||
|
||||
/**
|
||||
|
Binary file not shown.
@ -6,12 +6,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:42:15+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:42:46+0000\n"
|
||||
"Language-Team: Arabic\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: ar\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -204,7 +204,7 @@ msgstr ""
|
||||
#: actions/apidirectmessage.php:89
|
||||
#, php-format
|
||||
msgid "Direct messages from %s"
|
||||
msgstr ""
|
||||
msgstr "رسائل مباشرة من %s"
|
||||
|
||||
#: actions/apidirectmessage.php:93
|
||||
#, php-format
|
||||
@ -253,7 +253,7 @@ msgstr "تعذّر إنشاء مفضلة."
|
||||
|
||||
#: actions/apifavoritedestroy.php:122
|
||||
msgid "That status is not a favorite!"
|
||||
msgstr ""
|
||||
msgstr "تلك الحالة ليست مفضلة!"
|
||||
|
||||
#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87
|
||||
msgid "Could not delete favorite."
|
||||
@ -352,7 +352,7 @@ msgstr ""
|
||||
#: actions/newgroup.php:168
|
||||
#, php-format
|
||||
msgid "Invalid alias: \"%s\""
|
||||
msgstr ""
|
||||
msgstr "كنية غير صالحة: \"%s\""
|
||||
|
||||
#: actions/apigroupcreate.php:321 actions/editgroup.php:228
|
||||
#: actions/newgroup.php:172
|
||||
@ -688,7 +688,7 @@ msgstr "نعم"
|
||||
#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123
|
||||
#: lib/blockform.php:153
|
||||
msgid "Block this user"
|
||||
msgstr ""
|
||||
msgstr "امنع هذا المستخدم"
|
||||
|
||||
#: actions/block.php:165
|
||||
msgid "You have already blocked this user."
|
||||
@ -1060,7 +1060,7 @@ msgstr ""
|
||||
|
||||
#: actions/favor.php:92 lib/disfavorform.php:140
|
||||
msgid "Disfavor favorite"
|
||||
msgstr ""
|
||||
msgstr "ألغِ تفضيل المفضلة"
|
||||
|
||||
#: actions/featured.php:69 lib/featureduserssection.php:87
|
||||
#: lib/publicgroupnav.php:89
|
||||
@ -1768,11 +1768,11 @@ msgstr ""
|
||||
|
||||
#: actions/nudge.php:94
|
||||
msgid "Nudge sent"
|
||||
msgstr ""
|
||||
msgstr "أرسل التنبيه"
|
||||
|
||||
#: actions/nudge.php:97
|
||||
msgid "Nudge sent!"
|
||||
msgstr ""
|
||||
msgstr "أُرسل التنبيه!"
|
||||
|
||||
#: actions/oembed.php:79 actions/shownotice.php:100
|
||||
msgid "Notice has no profile"
|
||||
@ -1822,11 +1822,11 @@ msgstr "قصّر المسارات بـ"
|
||||
|
||||
#: actions/othersettings.php:117
|
||||
msgid "Automatic shortening service to use."
|
||||
msgstr ""
|
||||
msgstr "خدمة التقصير المطلوب استخدامها."
|
||||
|
||||
#: actions/othersettings.php:122
|
||||
msgid "View profile designs"
|
||||
msgstr ""
|
||||
msgstr "اعرض تصاميم الملف الشخصي"
|
||||
|
||||
#: actions/othersettings.php:123
|
||||
msgid "Show or hide profile designs."
|
||||
@ -2118,6 +2118,10 @@ msgid ""
|
||||
"tool. [Join now](%%action.register%%) to share notices about yourself with "
|
||||
"friends, family, and colleagues! ([Read more](%%doc.help%%))"
|
||||
msgstr ""
|
||||
"هنا %%site.name%%، خدمة [التدوين المُصغّر](http://en.wikipedia.org/wiki/Micro-"
|
||||
"blogging) المبنية على البرنامج الحر [StatusNet](http://status.net/). [انضم "
|
||||
"الآن](%%action.register%%) لتشارك اشعاراتك مع أصدقائك وعائلتك وزملائك! "
|
||||
"([اقرأ المزيد](%%doc.help%%))"
|
||||
|
||||
#: actions/public.php:238
|
||||
#, php-format
|
||||
@ -2126,10 +2130,12 @@ msgid ""
|
||||
"blogging) service based on the Free Software [StatusNet](http://status.net/) "
|
||||
"tool."
|
||||
msgstr ""
|
||||
"هنا %%site.name%%، خدمة [التدوين المُصغّر](http://en.wikipedia.org/wiki/Micro-"
|
||||
"blogging) المبنية على البرنامج الحر [StatusNet](http://status.net/)."
|
||||
|
||||
#: actions/publictagcloud.php:57
|
||||
msgid "Public tag cloud"
|
||||
msgstr ""
|
||||
msgstr "سحابة الوسوم العمومية"
|
||||
|
||||
#: actions/publictagcloud.php:63
|
||||
#, php-format
|
||||
@ -2536,7 +2542,7 @@ msgstr ""
|
||||
|
||||
#: actions/showfavorites.php:242
|
||||
msgid "This is a way to share what you like."
|
||||
msgstr ""
|
||||
msgstr "إنها إحدى وسائل مشاركة ما تحب."
|
||||
|
||||
#: actions/showgroup.php:82 lib/groupnav.php:86
|
||||
#, php-format
|
||||
@ -2641,7 +2647,7 @@ msgstr "لا رسالة كهذه."
|
||||
|
||||
#: actions/showmessage.php:98
|
||||
msgid "Only the sender and recipient may read this message."
|
||||
msgstr ""
|
||||
msgstr "يحق للمُرسل والمستلم فقط قراءة هذه الرسالة."
|
||||
|
||||
#: actions/showmessage.php:108
|
||||
#, php-format
|
||||
@ -2884,12 +2890,12 @@ msgstr "اشتراكات %s، الصفحة %d"
|
||||
|
||||
#: actions/subscriptions.php:65
|
||||
msgid "These are the people whose notices you listen to."
|
||||
msgstr ""
|
||||
msgstr "هؤلاء الأشخاص الذي تستمع إليهم."
|
||||
|
||||
#: actions/subscriptions.php:69
|
||||
#, php-format
|
||||
msgid "These are the people whose notices %s listens to."
|
||||
msgstr ""
|
||||
msgstr "هؤلاء الأشخاص الذي يستمع %s إليهم."
|
||||
|
||||
#: actions/subscriptions.php:121
|
||||
#, php-format
|
||||
@ -3381,6 +3387,9 @@ msgid ""
|
||||
"s, available under the [GNU Affero General Public License](http://www.fsf."
|
||||
"org/licensing/licenses/agpl-3.0.html)."
|
||||
msgstr ""
|
||||
"تعمل على برنامج التدوين المُصغّر [StatusNet](http://status.net/) -النسخة %s- "
|
||||
"المتوفر تحت [رخصة غنو أفيرو العمومية](http://www.fsf.org/licensing/licenses/"
|
||||
"agpl-3.0.html)."
|
||||
|
||||
#: lib/action.php:785
|
||||
msgid "Site content license"
|
||||
@ -3394,19 +3403,19 @@ msgstr ""
|
||||
msgid "license."
|
||||
msgstr "الرخصة."
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr "بعد"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
msgid "Before"
|
||||
msgstr "قبل"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
@ -3579,13 +3588,46 @@ msgstr ""
|
||||
msgid "This link is useable only once, and is good for only 2 minutes: %s"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3615,19 +3657,19 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
msgid "No configuration file found. "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
msgid "Go to the installer."
|
||||
msgstr "اذهب إلى المُثبّت."
|
||||
|
||||
@ -4191,11 +4233,11 @@ msgstr "رُد"
|
||||
|
||||
#: lib/nudgeform.php:116
|
||||
msgid "Nudge this user"
|
||||
msgstr ""
|
||||
msgstr "نبّه هذا المستخدم"
|
||||
|
||||
#: lib/nudgeform.php:128
|
||||
msgid "Nudge"
|
||||
msgstr ""
|
||||
msgstr "نبّه"
|
||||
|
||||
#: lib/nudgeform.php:128
|
||||
msgid "Send a nudge to this user"
|
||||
|
Binary file not shown.
@ -5,12 +5,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:42:18+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:42:49+0000\n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: bg\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3601,19 +3601,19 @@ msgstr "Всички "
|
||||
msgid "license."
|
||||
msgstr "лиценз."
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr "Страниране"
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr "След"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
msgid "Before"
|
||||
msgstr "Преди"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Имаше проблем със сесията ви в сайта."
|
||||
|
||||
@ -3787,13 +3787,46 @@ msgstr "Грешка при създаване на OpenID форма: %s"
|
||||
msgid "This link is useable only once, and is good for only 2 minutes: %s"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3823,20 +3856,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Няма код за потвърждение."
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "Влизане в сайта"
|
||||
|
Binary file not shown.
@ -5,12 +5,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:42:21+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:42:52+0000\n"
|
||||
"Language-Team: Catalan\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: ca\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3635,19 +3635,19 @@ msgstr "Tot "
|
||||
msgid "license."
|
||||
msgstr "llicència."
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr "Paginació"
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr "Posteriors"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
msgid "Before"
|
||||
msgstr "Anteriors"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
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"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3855,20 +3888,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Cap codi de confirmació."
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "Accedir a aquest lloc"
|
||||
|
Binary file not shown.
@ -5,12 +5,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:42:23+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:42:56+0000\n"
|
||||
"Language-Team: Czech\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: cs\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3547,21 +3547,21 @@ msgstr ""
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
#, fuzzy
|
||||
msgid "After"
|
||||
msgstr "« Novější"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
#, fuzzy
|
||||
msgid "Before"
|
||||
msgstr "Starší »"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
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"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3769,20 +3802,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Žádný potvrzující kód."
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -6,12 +6,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:42:26+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:43:12+0000\n"
|
||||
"Language-Team: German\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: de\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3647,19 +3647,19 @@ msgstr "Alle "
|
||||
msgid "license."
|
||||
msgstr "Lizenz."
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr "Seitenerstellung"
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr "Später"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
msgid "Before"
|
||||
msgstr "Vorher"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
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"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3867,20 +3900,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Kein Bestätigungs-Code."
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "Auf der Seite anmelden"
|
||||
|
Binary file not shown.
@ -5,12 +5,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:42:28+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:43:15+0000\n"
|
||||
"Language-Team: Greek\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: el\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3499,19 +3499,19 @@ msgstr ""
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
msgid "Before"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
@ -3681,13 +3681,44 @@ msgstr "Αδυναμία δημιουργίας φόρμας OpenID: %s "
|
||||
msgid "This link is useable only once, and is good for only 2 minutes: %s"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3717,20 +3748,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε."
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -12,12 +12,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:42:31+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:43:18+0000\n"
|
||||
"Language-Team: British English\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: en-gb\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3586,19 +3586,19 @@ msgstr "All "
|
||||
msgid "license."
|
||||
msgstr "licence."
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr "Pagination"
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr "After"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
msgid "Before"
|
||||
msgstr "Before"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "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"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3806,19 +3839,19 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
msgid "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: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "Login to the site"
|
||||
|
Binary file not shown.
@ -2,6 +2,7 @@
|
||||
#
|
||||
# Author@translatewiki.net: Brion
|
||||
# Author@translatewiki.net: Crazymadlover
|
||||
# Author@translatewiki.net: Translationista
|
||||
# --
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
@ -12,12 +13,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:42:34+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:43:21+0000\n"
|
||||
"Language-Team: Spanish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: es\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 "
|
||||
"current configuration."
|
||||
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:146
|
||||
@ -3661,19 +3664,19 @@ msgstr "Todo"
|
||||
msgid "license."
|
||||
msgstr "Licencia."
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr "Paginación"
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr "Después"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
msgid "Before"
|
||||
msgstr "Antes"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
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"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3881,19 +3917,19 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
msgid "No configuration file found. "
|
||||
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: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
msgid "Go to the installer."
|
||||
msgstr "Ir al instalador."
|
||||
|
||||
|
Binary file not shown.
@ -12,12 +12,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:42:37+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:43:24+0000\n"
|
||||
"Language-Team: Finnish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: fi\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -83,6 +83,8 @@ msgstr "Käyttäjän %s kavereiden syöte (Atom)"
|
||||
msgid ""
|
||||
"This is the timeline for %s and friends but no one has posted anything yet."
|
||||
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
|
||||
#, php-format
|
||||
@ -90,6 +92,8 @@ msgid ""
|
||||
"Try subscribing to more people, [join a group](%%action.groups%%) or post "
|
||||
"something yourself."
|
||||
msgstr ""
|
||||
"Kokeile useamman käyttäjän tilaamista, [liity ryhmään] (%%action.groups%%) "
|
||||
"tai lähetä päivitys itse."
|
||||
|
||||
#: actions/all.php:134
|
||||
#, php-format
|
||||
@ -641,9 +645,8 @@ msgid "%s blocked profiles, page %d"
|
||||
msgstr "%s ja kaverit, sivu %d"
|
||||
|
||||
#: actions/blockedfromgroup.php:108
|
||||
#, fuzzy
|
||||
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
|
||||
msgid "Unblock user from group"
|
||||
@ -695,9 +698,8 @@ msgid "No"
|
||||
msgstr "Ei"
|
||||
|
||||
#: actions/block.php:149
|
||||
#, fuzzy
|
||||
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/groupblock.php:179
|
||||
@ -1082,9 +1084,9 @@ msgid "%s's favorite notices"
|
||||
msgstr "Käyttäjän %s suosikkipäivitykset"
|
||||
|
||||
#: actions/favoritesrss.php:115
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
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
|
||||
msgid "This notice is already a favorite!"
|
||||
@ -1181,7 +1183,7 @@ msgstr "Ryhmää ei ole määritelty."
|
||||
|
||||
#: actions/groupblock.php:91
|
||||
msgid "Only an admin can block group members."
|
||||
msgstr ""
|
||||
msgstr "Vain ylläpitäjä voi estää ryhmän jäseniä."
|
||||
|
||||
#: actions/groupblock.php:95
|
||||
#, fuzzy
|
||||
@ -1189,14 +1191,12 @@ msgid "User is already blocked from group."
|
||||
msgstr "Käyttäjä on asettanut eston sinulle."
|
||||
|
||||
#: actions/groupblock.php:100
|
||||
#, fuzzy
|
||||
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
|
||||
#, fuzzy
|
||||
msgid "Block user from group"
|
||||
msgstr "Estä käyttäjä"
|
||||
msgstr "Estä käyttäjä ryhmästä"
|
||||
|
||||
#: actions/groupblock.php:162
|
||||
#, php-format
|
||||
@ -1228,9 +1228,8 @@ msgstr ""
|
||||
"Sinun pitää olla kirjautunut sisään, jotta voit muuttaa ryhmän tietoja."
|
||||
|
||||
#: actions/groupdesignsettings.php:141
|
||||
#, fuzzy
|
||||
msgid "Group design"
|
||||
msgstr "Ryhmät"
|
||||
msgstr "Ryhmän ulkoasu"
|
||||
|
||||
#: actions/groupdesignsettings.php:152
|
||||
msgid ""
|
||||
@ -1240,21 +1239,18 @@ msgstr ""
|
||||
|
||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
||||
#, fuzzy
|
||||
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/userdesignsettings.php:210 actions/userdesignsettings.php:220
|
||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||
#, fuzzy
|
||||
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
|
||||
#, fuzzy
|
||||
msgid "Design preferences saved."
|
||||
msgstr "Synkronointiasetukset tallennettiin."
|
||||
msgstr "Ulkoasuasetukset tallennettu."
|
||||
|
||||
#: actions/grouplogo.php:139 actions/grouplogo.php:192
|
||||
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ä"
|
||||
|
||||
#: actions/groupmembers.php:473
|
||||
#, fuzzy
|
||||
msgid "Make Admin"
|
||||
msgstr "Ylläpito"
|
||||
msgstr "Tee ylläpitäjäksi"
|
||||
|
||||
#: actions/groupmembers.php:473
|
||||
msgid "Make this user an admin"
|
||||
msgstr "Tee tästä käyttäjästä ylläpitäjä"
|
||||
|
||||
#: actions/grouprss.php:133
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
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
|
||||
#, 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ä."
|
||||
|
||||
#: actions/groupunblock.php:95
|
||||
#, fuzzy
|
||||
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
|
||||
msgid "Error removing the block."
|
||||
@ -1402,9 +1396,8 @@ msgstr ""
|
||||
"im%%) käyttäen. Alla voit määrittää osoitteesi ja asetuksesi. "
|
||||
|
||||
#: actions/imsettings.php:89
|
||||
#, fuzzy
|
||||
msgid "IM is not available."
|
||||
msgstr "Tämä sivu ei ole saatavilla "
|
||||
msgstr "Pikaviestin ei ole käytettävissä."
|
||||
|
||||
#: actions/imsettings.php:106
|
||||
msgid "Current confirmed Jabber/GTalk address."
|
||||
@ -1501,7 +1494,7 @@ msgstr "Tämä on postilaatikkosi, jossa on sinulle saapuneet yksityisviestit."
|
||||
|
||||
#: actions/invite.php:39
|
||||
msgid "Invites have been disabled."
|
||||
msgstr ""
|
||||
msgstr "Kutsut ovat pois käytöstä."
|
||||
|
||||
#: actions/invite.php:41
|
||||
#, php-format
|
||||
@ -1751,22 +1744,22 @@ msgstr ""
|
||||
|
||||
#: actions/makeadmin.php:91
|
||||
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
|
||||
#, php-format
|
||||
msgid "%s is already an admin for group \"%s\"."
|
||||
msgstr ""
|
||||
msgstr "%s on jo ryhmän \"%s\" ylläpitäjä."
|
||||
|
||||
#: actions/makeadmin.php:132
|
||||
#, php-format
|
||||
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
|
||||
#, php-format
|
||||
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
|
||||
msgid "No current status"
|
||||
@ -1847,6 +1840,8 @@ msgid ""
|
||||
"Be the first to [post on this topic](%%%%action.newnotice%%%%?"
|
||||
"status_textarea=%s)!"
|
||||
msgstr ""
|
||||
"Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta] (%%%%action."
|
||||
"newnotice%%%%?status_textarea=%s)!"
|
||||
|
||||
#: actions/noticesearch.php:124
|
||||
#, php-format
|
||||
@ -1938,7 +1933,7 @@ msgstr "Profiiliasetukset"
|
||||
|
||||
#: actions/othersettings.php:123
|
||||
msgid "Show or hide profile designs."
|
||||
msgstr ""
|
||||
msgstr "Näytä tai piillota profiilin ulkoasu."
|
||||
|
||||
#: actions/othersettings.php:153
|
||||
msgid "URL shortening service is too long (max 50 chars)."
|
||||
@ -2221,7 +2216,7 @@ msgstr ""
|
||||
|
||||
#: actions/public.php:182
|
||||
msgid "Be the first to post!"
|
||||
msgstr ""
|
||||
msgstr "Ole ensimmäinen joka lähettää päivityksen!"
|
||||
|
||||
#: actions/public.php:186
|
||||
#, php-format
|
||||
@ -2261,10 +2256,12 @@ msgstr "Nämä ovat suosituimmat viimeaikaiset tagit %s -palvelussa"
|
||||
#, php-format
|
||||
msgid "No one has posted a notice with a [hashtag](%%doc.tags%%) yet."
|
||||
msgstr ""
|
||||
"Kukaan ei ole vielä lähettänyt päivitystä tagilla [hashtag] (%%doc.tags%%) "
|
||||
"vielä."
|
||||
|
||||
#: actions/publictagcloud.php:72
|
||||
msgid "Be the first to post one!"
|
||||
msgstr ""
|
||||
msgstr "Ole ensimmäinen joka lähettää päivityksen!"
|
||||
|
||||
#: actions/publictagcloud.php:75
|
||||
#, php-format
|
||||
@ -2313,11 +2310,11 @@ msgstr ""
|
||||
|
||||
#: actions/recoverpassword.php:158
|
||||
msgid "You have been identified. Enter a new password below. "
|
||||
msgstr ""
|
||||
msgstr "Sinut on tunnistettu. Syötä uusi salasana alapuolelle. "
|
||||
|
||||
#: actions/recoverpassword.php:188
|
||||
msgid "Password recovery"
|
||||
msgstr ""
|
||||
msgstr "Salasanan palautus"
|
||||
|
||||
#: actions/recoverpassword.php:191
|
||||
msgid "Nickname or email address"
|
||||
@ -2406,9 +2403,8 @@ msgid "Sorry, only invited people can register."
|
||||
msgstr "Valitettavasti vain kutsutut ihmiset voivat rekisteröityä."
|
||||
|
||||
#: actions/register.php:92
|
||||
#, fuzzy
|
||||
msgid "Sorry, invalid invitation code."
|
||||
msgstr "Virhe vahvistuskoodin kanssa."
|
||||
msgstr "Virheellinen kutsukoodin."
|
||||
|
||||
#: actions/register.php:112
|
||||
msgid "Registration successful"
|
||||
@ -2485,12 +2481,11 @@ msgid "Creative Commons Attribution 3.0"
|
||||
msgstr ""
|
||||
|
||||
#: actions/register.php:496
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
" except this private data: password, email address, IM address, and phone "
|
||||
"number."
|
||||
msgstr ""
|
||||
" poislukien yksityinen tieto: salasana, sähköpostiosoite, IM osoite, "
|
||||
"poislukien yksityinen tieto: salasana, sähköpostiosoite, IM osoite, "
|
||||
"puhelinnumero."
|
||||
|
||||
#: actions/register.php:537
|
||||
@ -2551,9 +2546,8 @@ msgid "Remote subscribe"
|
||||
msgstr "Etätilaus"
|
||||
|
||||
#: actions/remotesubscribe.php:124
|
||||
#, fuzzy
|
||||
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
|
||||
msgid "User nickname"
|
||||
@ -2589,13 +2583,11 @@ msgstr ""
|
||||
"löytynyt)."
|
||||
|
||||
#: actions/remotesubscribe.php:176
|
||||
#, fuzzy
|
||||
msgid "That’s a local profile! Login to subscribe."
|
||||
msgstr ""
|
||||
"Tämä on paikallinen profiili. Kirjaudu sisään, jotta voit tilata päivitykset."
|
||||
|
||||
#: actions/remotesubscribe.php:183
|
||||
#, fuzzy
|
||||
msgid "Couldn’t get a request token."
|
||||
msgstr "Ei saatu request tokenia."
|
||||
|
||||
@ -2726,26 +2718,26 @@ msgstr "Huomaa"
|
||||
|
||||
#: actions/showgroup.php:284 lib/groupeditform.php:184
|
||||
msgid "Aliases"
|
||||
msgstr ""
|
||||
msgstr "Aliakset"
|
||||
|
||||
#: actions/showgroup.php:293
|
||||
msgid "Group actions"
|
||||
msgstr "Ryhmän toiminnot"
|
||||
|
||||
#: actions/showgroup.php:328
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
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
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
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
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
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
|
||||
#, php-format
|
||||
@ -2796,9 +2788,8 @@ msgstr ""
|
||||
"(http://en.wikipedia.org/wiki/Micro-blogging)"
|
||||
|
||||
#: actions/showgroup.php:482
|
||||
#, fuzzy
|
||||
msgid "Admins"
|
||||
msgstr "Ylläpito"
|
||||
msgstr "Ylläpitäjät"
|
||||
|
||||
#: actions/showmessage.php:81
|
||||
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"
|
||||
|
||||
#: actions/shownotice.php:90
|
||||
#, fuzzy
|
||||
msgid "Notice deleted."
|
||||
msgstr "Päivitys lähetetty"
|
||||
msgstr "Päivitys on poistettu."
|
||||
|
||||
#: actions/showstream.php:73
|
||||
#, fuzzy, php-format
|
||||
@ -2862,6 +2852,8 @@ msgstr "Käyttäjän %s lähetetyt viestit"
|
||||
#, php-format
|
||||
msgid "This is the timeline for %s but %s hasn't posted anything yet."
|
||||
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
|
||||
msgid ""
|
||||
@ -2906,9 +2898,8 @@ msgstr ""
|
||||
"Voit saada SMS viestit sähköpostin välityksellä %%site.name%% -palvelusta."
|
||||
|
||||
#: actions/smssettings.php:91
|
||||
#, fuzzy
|
||||
msgid "SMS is not available."
|
||||
msgstr "Tämä sivu ei ole saatavilla "
|
||||
msgstr "SMS ei ole käytettävissä."
|
||||
|
||||
#: actions/smssettings.php:112
|
||||
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."
|
||||
|
||||
#: actions/smssettings.php:347
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"A confirmation code was sent to the phone number you added. Check your phone "
|
||||
"for the code and instructions on how to use it."
|
||||
msgstr ""
|
||||
"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
|
||||
msgid "That is the wrong confirmation number."
|
||||
@ -3080,9 +3070,9 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: actions/subscriptions.php:123 actions/subscriptions.php:127
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
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
|
||||
msgid "Jabber"
|
||||
@ -3203,9 +3193,8 @@ msgstr ""
|
||||
"paina \"Peruuta\"."
|
||||
|
||||
#: actions/userauthorization.php:188
|
||||
#, fuzzy
|
||||
msgid "License"
|
||||
msgstr "lisenssi."
|
||||
msgstr "Lisenssi"
|
||||
|
||||
#: actions/userauthorization.php:209
|
||||
msgid "Accept"
|
||||
@ -3606,19 +3595,19 @@ msgstr "Kaikki "
|
||||
msgid "license."
|
||||
msgstr "lisenssi."
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr "Sivutus"
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr "Myöhemmin"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
msgid "Before"
|
||||
msgstr "Aiemmin"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
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"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3826,20 +3848,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Varmistuskoodia ei ole annettu."
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "Kirjaudu sisään palveluun"
|
||||
|
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -5,12 +5,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:42:42+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:43:30+0000\n"
|
||||
"Language-Team: Irish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: ga\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3673,21 +3673,21 @@ msgstr "Todos"
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
#, fuzzy
|
||||
msgid "After"
|
||||
msgstr "« Despois"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
#, fuzzy
|
||||
msgid "Before"
|
||||
msgstr "Antes »"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
#, fuzzy
|
||||
msgid "There was a problem with your session token."
|
||||
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"
|
||||
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
|
||||
msgid ""
|
||||
"Commands:\n"
|
||||
@ -3871,6 +3901,9 @@ msgid ""
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3926,20 +3959,20 @@ msgstr ""
|
||||
"tracks - non implementado por agora.\n"
|
||||
"tracking - non implementado por agora.\n"
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
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: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -5,12 +5,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:42:45+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:43:33+0000\n"
|
||||
"Language-Team: Hebrew\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: he\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3541,21 +3541,21 @@ msgstr ""
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
#, fuzzy
|
||||
msgid "After"
|
||||
msgstr "<< אחרי"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
#, fuzzy
|
||||
msgid "Before"
|
||||
msgstr "לפני >>"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
@ -3727,13 +3727,46 @@ msgstr "נכשלה יצירת OpenID מתוך: %s"
|
||||
msgid "This link is useable only once, and is good for only 2 minutes: %s"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3763,20 +3796,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "אין קוד אישור."
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -5,12 +5,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:42:49+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:43:36+0000\n"
|
||||
"Language-Team: Icelandic\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: is\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3554,19 +3554,19 @@ msgstr "Allt "
|
||||
msgid "license."
|
||||
msgstr "leyfi."
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr "Uppröðun"
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr "Eftir"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
msgid "Before"
|
||||
msgstr "Áður"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
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"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3773,20 +3806,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Enginn staðfestingarlykill."
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "Skrá þig inn á síðuna"
|
||||
|
Binary file not shown.
@ -1,16 +1,17 @@
|
||||
# Translation of StatusNet to Italian
|
||||
#
|
||||
# Author@translatewiki.net: Nemo bis
|
||||
# --
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:42:52+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:43:39+0000\n"
|
||||
"Language-Team: Italian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: it\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3615,19 +3616,19 @@ msgstr "Tutto "
|
||||
msgid "license."
|
||||
msgstr "licenza."
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr "Paginazione"
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr "Successivi"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
msgid "Before"
|
||||
msgstr "Precedenti"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
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"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3835,20 +3869,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Nessun codice di conferma."
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "Accedi al sito"
|
||||
@ -4414,7 +4448,7 @@ msgstr "Invia un messaggio"
|
||||
#: lib/noticeform.php:158
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "Cosa succede %s?"
|
||||
msgstr "Cosa succede, %s?"
|
||||
|
||||
#: lib/noticeform.php:180
|
||||
msgid "Attach"
|
||||
|
Binary file not shown.
@ -6,12 +6,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:42:55+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:43:42+0000\n"
|
||||
"Language-Team: Japanese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: ja\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3576,21 +3576,21 @@ msgstr ""
|
||||
msgid "license."
|
||||
msgstr "ライセンス。"
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
#, fuzzy
|
||||
msgid "After"
|
||||
msgstr "<< 前"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
#, fuzzy
|
||||
msgid "Before"
|
||||
msgstr "前 >>"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
@ -3762,13 +3762,46 @@ msgstr "OpenIDを作成できません : %s"
|
||||
msgid "This link is useable only once, and is good for only 2 minutes: %s"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3798,20 +3831,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "確認コードがありません。"
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "サイトへログイン"
|
||||
|
Binary file not shown.
@ -5,12 +5,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:42:57+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:43:45+0000\n"
|
||||
"Language-Team: Korean\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: ko\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3580,19 +3580,19 @@ msgstr "모든 것"
|
||||
msgid "license."
|
||||
msgstr "라이선스"
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr "페이지수"
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr "뒷 페이지"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
msgid "Before"
|
||||
msgstr "앞 페이지"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "당신의 세션토큰관련 문제가 있습니다."
|
||||
|
||||
@ -3764,13 +3764,46 @@ msgstr "OpenID를 작성 할 수 없습니다 : %s"
|
||||
msgid "This link is useable only once, and is good for only 2 minutes: %s"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3800,20 +3833,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "확인 코드가 없습니다."
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "이 사이트 로그인"
|
||||
|
Binary file not shown.
@ -6,12 +6,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:43:00+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:43:48+0000\n"
|
||||
"Language-Team: Macedonian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: mk\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3552,21 +3552,21 @@ msgstr ""
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
#, fuzzy
|
||||
msgid "After"
|
||||
msgstr "« Следни"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
#, fuzzy
|
||||
msgid "Before"
|
||||
msgstr "Предходни »"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
@ -3738,13 +3738,46 @@ msgstr "OpenID формуларот не може да се креира:%s"
|
||||
msgid "This link is useable only once, and is good for only 2 minutes: %s"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3774,20 +3807,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Нема код за потврда."
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -11,12 +11,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:43:03+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:43:51+0000\n"
|
||||
"Language-Team: Norwegian (bokmål)\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.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-Language-Code: no\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3516,20 +3516,20 @@ msgstr ""
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
#, fuzzy
|
||||
msgid "Before"
|
||||
msgstr "Tidligere »"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
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"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3736,20 +3769,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Fant ikke bekreftelseskode."
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -7,12 +7,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:43:09+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:43:59+0000\n"
|
||||
"Language-Team: Dutch\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: nl\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3683,19 +3683,19 @@ msgstr "Alle "
|
||||
msgid "license."
|
||||
msgstr "licentie."
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr "Paginering"
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr "Na"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
msgid "Before"
|
||||
msgstr "Voor"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
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 "
|
||||
"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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3945,20 +3979,20 @@ msgstr ""
|
||||
"tracks - nog niet beschikbaar\n"
|
||||
"tracking - nog niet beschikbaar\n"
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Er is geen instellingenbestand aangetroffen. "
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
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."
|
||||
msgstr ""
|
||||
"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."
|
||||
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"
|
||||
|
||||
#: lib/subs.php:124
|
||||
#, fuzzy
|
||||
msgid "Not subscribed!"
|
||||
msgstr "Niet geabonneerd!"
|
||||
|
||||
|
Binary file not shown.
@ -5,12 +5,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:43:05+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:43:54+0000\n"
|
||||
"Language-Team: Norwegian Nynorsk\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: nn\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3596,19 +3596,19 @@ msgstr "Alle"
|
||||
msgid "license."
|
||||
msgstr "lisens."
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr "Paginering"
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr "« Etter"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
msgid "Before"
|
||||
msgstr "Før »"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
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"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3816,20 +3849,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Ingen stadfestingskode."
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "Logg inn or sida"
|
||||
|
Binary file not shown.
@ -5,12 +5,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:43:13+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:44:02+0000\n"
|
||||
"Language-Team: Polish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: pl\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3662,19 +3662,19 @@ msgstr "Wszystko "
|
||||
msgid "license."
|
||||
msgstr "licencja."
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr "Paginacja"
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr "Następne"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
msgid "Before"
|
||||
msgstr "Wcześniej"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
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"
|
||||
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
|
||||
msgid ""
|
||||
"Commands:\n"
|
||||
@ -3856,6 +3886,9 @@ msgid ""
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3911,20 +3944,20 @@ msgstr ""
|
||||
"tracks - jeszcze nie zaimplementowano.\n"
|
||||
"tracking - jeszcze nie zaimplementowano.\n"
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Brak kodu potwierdzającego."
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "Zaloguj się na stronę"
|
||||
|
Binary file not shown.
@ -10,12 +10,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:43:15+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:44:05+0000\n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: pt\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3507,20 +3507,20 @@ msgstr ""
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
#, fuzzy
|
||||
msgid "Before"
|
||||
msgstr "Antes »"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
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"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3728,20 +3759,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
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: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -7,12 +7,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:43:18+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:44:09+0000\n"
|
||||
"Language-Team: Brazilian Portuguese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: pt-br\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3656,19 +3656,19 @@ msgstr "Todas"
|
||||
msgid "license."
|
||||
msgstr "licença"
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr "Paginação"
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr "Próximo"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
msgid "Before"
|
||||
msgstr "Anterior"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
"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"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3880,20 +3913,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
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: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "Entrar"
|
||||
|
Binary file not shown.
@ -6,21 +6,20 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:43:20+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:44:12+0000\n"
|
||||
"Language-Team: Russian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: ru\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
|
||||
#: actions/all.php:63 actions/public.php:97 actions/replies.php:92
|
||||
#: actions/showfavorites.php:137 actions/tag.php:51
|
||||
#, fuzzy
|
||||
msgid "No such page"
|
||||
msgstr "Нет такого тега."
|
||||
msgstr "Нет такой страницы"
|
||||
|
||||
#: actions/all.php:74 actions/allrss.php:68
|
||||
#: actions/apiaccountupdatedeliverydevice.php:113
|
||||
@ -3651,19 +3650,19 @@ msgstr "Все"
|
||||
msgid "license."
|
||||
msgstr "лицензия."
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr "Пагинация"
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr "Сюда"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
msgid "Before"
|
||||
msgstr "Туда"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста."
|
||||
|
||||
@ -3835,13 +3834,46 @@ msgstr "Не удаётся создать OpenID-форму: %s "
|
||||
msgid "This link is useable only once, and is good for only 2 minutes: %s"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3871,20 +3903,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Нет кода подтверждения."
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "Войти"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -3392,19 +3392,19 @@ msgstr ""
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
msgid "Before"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
@ -3574,13 +3574,40 @@ msgstr ""
|
||||
msgid "This link is useable only once, and is good for only 2 minutes: %s"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3610,19 +3637,19 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
msgid "No configuration file found. "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -5,12 +5,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:43:23+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:44:15+0000\n"
|
||||
"Language-Team: Swedish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: sv\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3647,21 +3647,21 @@ msgstr ""
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
#, fuzzy
|
||||
msgid "After"
|
||||
msgstr "« Nyare"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
#, fuzzy
|
||||
msgid "Before"
|
||||
msgstr "Tidigare »"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
#, fuzzy
|
||||
msgid "There was a problem with your session token."
|
||||
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"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3870,20 +3903,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Ingen bekräftelsekod."
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -6,12 +6,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:43:25+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:44:17+0000\n"
|
||||
"Language-Team: Telugu\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: te\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -76,7 +76,7 @@ msgstr "%s యొక్క మిత్రుల ఫీడు (ఆటమ్)"
|
||||
#, php-format
|
||||
msgid ""
|
||||
"This is the timeline for %s and friends but no one has posted anything yet."
|
||||
msgstr ""
|
||||
msgstr "ఇది %s మరియు మిత్రుల కాలరేఖ కానీ ఇంకా ఎవరూ ఏమీ రాయలేదు."
|
||||
|
||||
#: actions/all.php:132
|
||||
#, php-format
|
||||
@ -246,9 +246,8 @@ msgid "No status found with that ID."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apifavoritecreate.php:119
|
||||
#, fuzzy
|
||||
msgid "This status is already a favorite!"
|
||||
msgstr "అది ఇప్పటికే మీ ఈమెయిల్ చిరునామా."
|
||||
msgstr "ఈ నోటీసు ఇప్పటికే మీ ఇష్టాంశం!"
|
||||
|
||||
#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176
|
||||
msgid "Could not create favorite."
|
||||
@ -807,7 +806,7 @@ msgstr ""
|
||||
|
||||
#: actions/disfavor.php:94
|
||||
msgid "Add to favorites"
|
||||
msgstr ""
|
||||
msgstr "ఇష్టాంశాలకు చేర్చు"
|
||||
|
||||
#: actions/doc.php:69
|
||||
msgid "No such document."
|
||||
@ -1061,7 +1060,7 @@ msgstr ""
|
||||
#: lib/personalgroupnav.php:115
|
||||
#, php-format
|
||||
msgid "%s's favorite notices"
|
||||
msgstr ""
|
||||
msgstr "%sకి ఇష్టమైన నోటీసులు"
|
||||
|
||||
#: actions/favoritesrss.php:115
|
||||
#, fuzzy, php-format
|
||||
@ -1151,9 +1150,8 @@ msgid "No such file."
|
||||
msgstr "అటువంటి ఫైలు లేదు."
|
||||
|
||||
#: actions/getfile.php:79
|
||||
#, fuzzy
|
||||
msgid "Cannot read file."
|
||||
msgstr "అటువంటి సందేశమేమీ లేదు."
|
||||
msgstr "ఫైలుని చదవలేకపోతున్నాం."
|
||||
|
||||
#: actions/groupblock.php:81 actions/groupunblock.php:81
|
||||
#: actions/makeadmin.php:81
|
||||
@ -1162,7 +1160,7 @@ msgstr ""
|
||||
|
||||
#: actions/groupblock.php:91
|
||||
msgid "Only an admin can block group members."
|
||||
msgstr ""
|
||||
msgstr "నిర్వాహకులు మాత్రమే గుంపు సభ్యులను నిరోధించగలరు."
|
||||
|
||||
#: actions/groupblock.php:95
|
||||
msgid "User is already blocked from group."
|
||||
@ -1170,12 +1168,11 @@ msgstr "వాడుకరిని ఇప్పటికే గుంపున
|
||||
|
||||
#: actions/groupblock.php:100
|
||||
msgid "User is not a member of group."
|
||||
msgstr ""
|
||||
msgstr "వాడుకరి ఈ గుంపులో సభ్యులు కాదు."
|
||||
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:314
|
||||
#, fuzzy
|
||||
msgid "Block user from group"
|
||||
msgstr "అటువంటి వాడుకరి లేరు."
|
||||
msgstr "వాడుకరిని గుంపు నుండి నిరోధించు"
|
||||
|
||||
#: actions/groupblock.php:162
|
||||
#, php-format
|
||||
@ -1204,7 +1201,7 @@ msgstr ""
|
||||
|
||||
#: actions/groupdesignsettings.php:68
|
||||
msgid "You must be logged in to edit a group."
|
||||
msgstr ""
|
||||
msgstr "గుంపుని మార్చడానికి మీరు ప్రవేశించి ఉండాలి."
|
||||
|
||||
#: actions/groupdesignsettings.php:141
|
||||
msgid "Group design"
|
||||
@ -1610,7 +1607,7 @@ msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించ
|
||||
#: actions/leavegroup.php:134 lib/command.php:289
|
||||
#, php-format
|
||||
msgid "%s left group %s"
|
||||
msgstr ""
|
||||
msgstr "%2$s గుంపు నుండి %1$s వైదొలిగారు"
|
||||
|
||||
#: actions/login.php:79 actions/register.php:137
|
||||
msgid "Already logged in."
|
||||
@ -2011,14 +2008,13 @@ msgid "URL of your homepage, blog, or profile on another site"
|
||||
msgstr "మీ హోమ్ పేజీ, బ్లాగు, లేదా వేరే సేటులోని మీ ప్రొఫైలు యొక్క చిరునామా"
|
||||
|
||||
#: actions/profilesettings.php:122 actions/register.php:460
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Describe yourself and your interests in %d chars"
|
||||
msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి"
|
||||
msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి %d అక్షరాల్లో చెప్పండి"
|
||||
|
||||
#: actions/profilesettings.php:125 actions/register.php:463
|
||||
#, fuzzy
|
||||
msgid "Describe yourself and your interests"
|
||||
msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి 140 అక్షరాల్లో చెప్పండి"
|
||||
msgstr "మీ గురించి మరియు మీ ఆసక్తుల గురించి చెప్పండి"
|
||||
|
||||
#: actions/profilesettings.php:127 actions/register.php:465
|
||||
msgid "Bio"
|
||||
@ -2242,7 +2238,7 @@ msgstr ""
|
||||
|
||||
#: actions/recoverpassword.php:191
|
||||
msgid "Nickname or email address"
|
||||
msgstr ""
|
||||
msgstr "ముద్దుపేరు లేదా ఈమెయిలు చిరునామా"
|
||||
|
||||
#: actions/recoverpassword.php:193
|
||||
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
|
||||
msgid "Sorry, only invited people can register."
|
||||
msgstr ""
|
||||
msgstr "క్షమించండి, ఆహ్వానితులు మాత్రమే నమోదుకాగలరు."
|
||||
|
||||
#: actions/register.php:92
|
||||
#, fuzzy
|
||||
@ -2372,7 +2368,7 @@ msgstr "6 లేదా అంతకంటే ఎక్కువ అక్షర
|
||||
|
||||
#: actions/register.php:433
|
||||
msgid "Same as password above. Required."
|
||||
msgstr ""
|
||||
msgstr "పై సంకేతపదం మరోసారి. తప్పనిసరి."
|
||||
|
||||
#: actions/register.php:437 actions/register.php:441
|
||||
#: lib/accountsettingsaction.php:120
|
||||
@ -2385,7 +2381,7 @@ msgstr "తాజా విశేషాలు, ప్రకటనలు, మర
|
||||
|
||||
#: actions/register.php:449
|
||||
msgid "Longer name, preferably your \"real\" name"
|
||||
msgstr ""
|
||||
msgstr "పొడుగాటి పేరు, మీ \"అసలు\" పేరైతే మంచిది"
|
||||
|
||||
#: actions/register.php:493
|
||||
msgid "My text and files are available under "
|
||||
@ -3427,13 +3423,13 @@ msgid "StatusNet software license"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:767
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%site.name%%** is a microblogging service brought to you by [%%site."
|
||||
"broughtby%%](%%site.broughtbyurl%%). "
|
||||
msgstr ""
|
||||
"[%%site.broughtby%%](%%site.broughtbyurl%%) వారు అందిస్తున్న ఈ **%%site.name%%** "
|
||||
"అనేది మైక్రో బ్లాగింగు సదుపాయం."
|
||||
"**%%site.name%%** అనేది [%%site.broughtby%%](%%site.broughtbyurl%%) వారు "
|
||||
"అందిస్తున్న మైక్రో బ్లాగింగు సదుపాయం. "
|
||||
|
||||
#: lib/action.php:769
|
||||
#, php-format
|
||||
@ -3447,6 +3443,9 @@ msgid ""
|
||||
"s, available under the [GNU Affero General Public License](http://www.fsf."
|
||||
"org/licensing/licenses/agpl-3.0.html)."
|
||||
msgstr ""
|
||||
"ఇది [గ్నూ ఆఫెరో జెనరల్ పబ్లిక్ లైసెన్సు](http://www.fsf.org/licensing/licenses/agpl-3.0."
|
||||
"html) కింద లభ్యమయ్యే [స్టేటస్‌నెట్](http://status.net/) మైక్రోబ్లాగింగ్ ఉపకరణం సంచిక %s "
|
||||
"పై నడుస్తుంది."
|
||||
|
||||
#: lib/action.php:785
|
||||
#, fuzzy
|
||||
@ -3461,19 +3460,19 @@ msgstr "అన్నీ "
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr "పేజీకరణ"
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr "తర్వాత"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
msgid "Before"
|
||||
msgstr "ఇంతక్రితం"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
@ -3588,7 +3587,7 @@ msgstr ""
|
||||
#: lib/command.php:431
|
||||
#, php-format
|
||||
msgid "Notice too long - maximum is %d characters, you sent %d"
|
||||
msgstr ""
|
||||
msgstr "నోటిసు చాలా పొడవుగా ఉంది - %d అక్షరాలు గరిష్ఠం, మీరు %d పంపించారు"
|
||||
|
||||
#: lib/command.php:439
|
||||
#, fuzzy, php-format
|
||||
@ -3648,13 +3647,46 @@ msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించ
|
||||
msgid "This link is useable only once, and is good for only 2 minutes: %s"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3684,20 +3716,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "నిర్ధారణ సంకేతం లేదు."
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
@ -4359,9 +4391,8 @@ msgid "All subscribers"
|
||||
msgstr "అందరు చందాదార్లు"
|
||||
|
||||
#: lib/profileaction.php:177
|
||||
#, fuzzy
|
||||
msgid "User ID"
|
||||
msgstr "వాడుకరి"
|
||||
msgstr "వాడుకరి ID"
|
||||
|
||||
#: lib/profileaction.php:182
|
||||
msgid "Member since"
|
||||
@ -4443,7 +4474,7 @@ msgstr "%sకి స్పందనలు"
|
||||
#: lib/subgroupnav.php:99
|
||||
#, php-format
|
||||
msgid "Groups %s is a member of"
|
||||
msgstr ""
|
||||
msgstr "%s సభ్యులుగా ఉన్న గుంపులు"
|
||||
|
||||
#: lib/subscriberspeopleselftagcloudsection.php:48
|
||||
#: lib/subscriptionspeopleselftagcloudsection.php:48
|
||||
@ -4464,9 +4495,8 @@ msgid "Already subscribed!"
|
||||
msgstr ""
|
||||
|
||||
#: lib/subs.php:52
|
||||
#, fuzzy
|
||||
msgid "User has blocked you."
|
||||
msgstr "వాడుకరికి ప్రొఫైలు లేదు."
|
||||
msgstr "వాడుకరి మిమ్మల్ని నిరోధించారు."
|
||||
|
||||
#: lib/subs.php:56
|
||||
msgid "Could not subscribe."
|
||||
@ -4499,7 +4529,7 @@ msgstr ""
|
||||
|
||||
#: lib/unsubscribeform.php:137
|
||||
msgid "Unsubscribe"
|
||||
msgstr ""
|
||||
msgstr "చందామాను"
|
||||
|
||||
#: lib/userprofile.php:116
|
||||
msgid "Edit Avatar"
|
||||
@ -4571,9 +4601,9 @@ msgid "about a year ago"
|
||||
msgstr "ఒక సంవత్సరం క్రితం"
|
||||
|
||||
#: lib/webcolor.php:82
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "%s is not a valid color!"
|
||||
msgstr "హోమ్ పేజీ URL సరైనది కాదు."
|
||||
msgstr "%s అనేది సరైన రంగు కాదు!"
|
||||
|
||||
#: lib/webcolor.php:123
|
||||
#, php-format
|
||||
|
Binary file not shown.
@ -5,12 +5,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:43:28+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:44:20+0000\n"
|
||||
"Language-Team: Turkish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: tr\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3547,21 +3547,21 @@ msgstr ""
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
#, fuzzy
|
||||
msgid "After"
|
||||
msgstr "« Sonra"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
#, fuzzy
|
||||
msgid "Before"
|
||||
msgstr "Önce »"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
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"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3769,20 +3802,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Onay kodu yok."
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -5,12 +5,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:43:31+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:44:23+0000\n"
|
||||
"Language-Team: Ukrainian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: uk\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3627,19 +3627,19 @@ msgstr "Всі "
|
||||
msgid "license."
|
||||
msgstr "ліцензія."
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr "Нумерація сторінок"
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr "Вперед"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
msgid "Before"
|
||||
msgstr "Назад"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Виникли певні проблеми з токеном поточної сесії."
|
||||
|
||||
@ -3811,13 +3811,46 @@ msgstr "Не вдалося створити форму OpenID: %s"
|
||||
msgid "This link is useable only once, and is good for only 2 minutes: %s"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3847,20 +3880,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "Немає коду підтвердження."
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "Увійти на сайт"
|
||||
|
Binary file not shown.
@ -5,12 +5,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:43:33+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:44:26+0000\n"
|
||||
"Language-Team: Vietnamese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: vi\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3687,21 +3687,21 @@ msgstr ""
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
#, fuzzy
|
||||
msgid "After"
|
||||
msgstr "Sau"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
#, fuzzy
|
||||
msgid "Before"
|
||||
msgstr "Trước"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
#, fuzzy
|
||||
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."
|
||||
@ -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"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3917,20 +3950,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
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: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
Binary file not shown.
@ -10,12 +10,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:43:36+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:44:29+0000\n"
|
||||
"Language-Team: Simplified Chinese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: zh-hans\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3607,21 +3607,21 @@ msgstr "全部"
|
||||
msgid "license."
|
||||
msgstr "注册证"
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr "分页"
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
#, fuzzy
|
||||
msgid "After"
|
||||
msgstr "« 之后"
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
#, fuzzy
|
||||
msgid "Before"
|
||||
msgstr "之前 »"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
#, fuzzy
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "会话标识有问题,请重试。"
|
||||
@ -3794,13 +3794,46 @@ msgstr "无法创建 OpenID 表单:%s"
|
||||
msgid "This link is useable only once, and is good for only 2 minutes: %s"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3830,20 +3863,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "没有验证码"
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
#, fuzzy
|
||||
msgid "Go to the installer."
|
||||
msgstr "登入本站"
|
||||
|
Binary file not shown.
@ -10,12 +10,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-11-13 20:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-13 20:43:38+0000\n"
|
||||
"POT-Creation-Date: 2009-11-16 19:42+0000\n"
|
||||
"PO-Revision-Date: 2009-11-16 19:44:31+0000\n"
|
||||
"Language-Team: Traditional Chinese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: zh-hant\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -3484,20 +3484,20 @@ msgstr ""
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1053
|
||||
#: lib/action.php:1052
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1062
|
||||
#: lib/action.php:1061
|
||||
msgid "After"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1070
|
||||
#: lib/action.php:1069
|
||||
#, fuzzy
|
||||
msgid "Before"
|
||||
msgstr "之前的內容»"
|
||||
|
||||
#: lib/action.php:1119
|
||||
#: lib/action.php:1117
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
@ -3667,13 +3667,46 @@ msgstr "無法從 %s 建立OpenID"
|
||||
msgid "This link is useable only once, and is good for only 2 minutes: %s"
|
||||
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 ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
"off - turn off notifications\n"
|
||||
"help - show this help\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"
|
||||
"d <nickname> <text> - direct message to user\n"
|
||||
"get <nickname> - get last notice from user\n"
|
||||
@ -3703,20 +3736,20 @@ msgid ""
|
||||
"tracking - not yet implemented.\n"
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:189
|
||||
#: lib/common.php:192
|
||||
#, fuzzy
|
||||
msgid "No configuration file found. "
|
||||
msgstr "無確認碼"
|
||||
|
||||
#: lib/common.php:190
|
||||
#: lib/common.php:193
|
||||
msgid "I looked for configuration files in the following places: "
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:191
|
||||
#: lib/common.php:194
|
||||
msgid "You may wish to run the installer to fix this."
|
||||
msgstr ""
|
||||
|
||||
#: lib/common.php:192
|
||||
#: lib/common.php:195
|
||||
msgid "Go to the installer."
|
||||
msgstr ""
|
||||
|
||||
|
@ -204,16 +204,7 @@ abstract class AuthenticationPlugin extends Plugin
|
||||
|
||||
function onCheckSchema() {
|
||||
$schema = Schema::get();
|
||||
$schema->ensureTable('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')));
|
||||
$schema->ensureDataObject('User_username');
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -2,9 +2,9 @@
|
||||
/**
|
||||
* 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
|
||||
/* the code below is auto generated do not remove the above tag */
|
||||
@ -43,4 +43,22 @@ class User_username extends Memcached_DataObject
|
||||
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')));
|
||||
}
|
||||
}
|
||||
|
@ -156,6 +156,9 @@ class OpenIDPlugin extends Plugin
|
||||
case 'User_openid':
|
||||
require_once(INSTALLDIR.'/plugins/OpenID/User_openid.php');
|
||||
return false;
|
||||
case 'User_openid_trustroot':
|
||||
require_once(INSTALLDIR.'/plugins/OpenID/User_openid_trustroot.php');
|
||||
return false;
|
||||
default:
|
||||
return true;
|
||||
}
|
||||
@ -278,24 +281,8 @@ class OpenIDPlugin extends Plugin
|
||||
|
||||
function onCheckSchema() {
|
||||
$schema = Schema::get();
|
||||
$schema->ensureTable('user_openid',
|
||||
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')));
|
||||
$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')));
|
||||
$schema->ensureDataObject('User_openid');
|
||||
$schema->ensureDataObject('User_openid_trustroot');
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -2,9 +2,9 @@
|
||||
/**
|
||||
* 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
|
||||
/* 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);
|
||||
}
|
||||
|
||||
/**
|
||||
* 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')));
|
||||
}
|
||||
}
|
||||
|
@ -2,9 +2,9 @@
|
||||
/**
|
||||
* 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
|
||||
/* 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);
|
||||
}
|
||||
|
||||
/**
|
||||
* 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
28
plugins/Recaptcha/README
Normal 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
|
@ -33,7 +33,9 @@ if (!defined('STATUSNET') && !defined('LACONICA')) {
|
||||
|
||||
define('RECAPTCHA', '0.2');
|
||||
|
||||
class recaptcha extends Plugin
|
||||
require_once(INSTALLDIR.'/plugins/Recaptcha/recaptchalib.php');
|
||||
|
||||
class RecaptchaPlugin extends Plugin
|
||||
{
|
||||
var $private_key;
|
||||
var $public_key;
|
||||
@ -41,13 +43,13 @@ class recaptcha extends Plugin
|
||||
var $failed;
|
||||
var $ssl;
|
||||
|
||||
function __construct($public_key, $private_key, $display_errors=false)
|
||||
{
|
||||
parent::__construct();
|
||||
require_once(INSTALLDIR.'/plugins/recaptcha/recaptchalib.php');
|
||||
$this->public_key = $public_key;
|
||||
$this->private_key = $private_key;
|
||||
$this->display_errors = $display_errors;
|
||||
function onInitializePlugin(){
|
||||
if(!isset($this->private_key)){
|
||||
common_log(LOG_ERR, "Recaptcha: Must specify private_key in config.php");
|
||||
}
|
||||
if(!isset($this->public_key)){
|
||||
common_log(LOG_ERR, "Recaptcha: Must specify public_key in config.php");
|
||||
}
|
||||
}
|
||||
|
||||
function checkssl(){
|
@ -48,16 +48,7 @@ class UserFlagPlugin extends Plugin
|
||||
$schema = Schema::get();
|
||||
|
||||
// For storing user-submitted flags on profiles
|
||||
|
||||
$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')));
|
||||
$schema->ensureDataObject('User_flag_profile');
|
||||
|
||||
return true;
|
||||
}
|
||||
|
@ -21,9 +21,9 @@ if (!defined('STATUSNET')) {
|
||||
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
|
||||
/* 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);
|
||||
}
|
||||
|
||||
/**
|
||||
* 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')));
|
||||
}
|
||||
}
|
||||
|
@ -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
0
scripts/deleteuser.php
Normal file → Executable file
@ -93,14 +93,17 @@ border-radius:4px;
|
||||
-webkit-border-radius:4px;
|
||||
margin-bottom:18px;
|
||||
}
|
||||
|
||||
.xoxo li {
|
||||
list-style-type:none;
|
||||
}
|
||||
|
||||
form label.submit {
|
||||
display:none;
|
||||
}
|
||||
|
||||
.form_settings {
|
||||
clear:both;
|
||||
}
|
||||
|
||||
.form_settings fieldset {
|
||||
margin-bottom:29px;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user