Merge branch '0.9.x' into testing

This commit is contained in:
Evan Prodromou 2009-12-08 14:43:21 -05:00
commit 78fc9483d4
146 changed files with 20607 additions and 4125 deletions

View File

@ -574,3 +574,57 @@ EndShortenUrl: After a URL has been shortened
- $shortenerName: name of the requested shortener
- $shortenedUrl: short version of the url
StartCssLinkElement: Before a <link rel="stylesheet"..> element is written
- $action
- &$src
- &$theme
- &$media
EndCssLinkElement: After a <link rel="stylesheet"..> element is written
- $action
- $src
- $theme
- $media
StartStyleElement: Before a <style...> element is written
- $action
- &$code
- &$type
- &$media
EndStyleElement: After a <style...> element is written
- $action
- $code
- $type
- $media
StartScriptElement: Before a <script...> element is written
- $action
- &$src
- &$type
EndScriptElement: After a <script...> element is written
- $action
- $src
- $type
StartInlineScriptElement: Before a <script...> element is written
- $action
- &$code
- &$type
EndInlineScriptElement: After a <script...> element is written
- $action
- $code
- $type
StartLog: Before writing to the logs
- &$priority
- &$msg
- &$filename
EndLog: After writing to the logs
- $priority
- $msg
- $filename

View File

@ -160,7 +160,7 @@ class AllAction extends ProfileAction
function showPageTitle()
{
$user =& common_current_user();
$user = common_current_user();
if ($user && ($user->id == $this->user->id)) {
$this->element('h1', null, _("You and friends"));
} else {

View File

@ -98,6 +98,17 @@ class ApiBlockCreateAction extends ApiAuthAction
return;
}
// Don't allow blocking yourself!
if ($this->user->id == $this->other->id) {
$this->clientError(
_("You cannot block yourself!"),
403,
$this->format
);
return;
}
if ($this->user->hasBlocked($this->other)
|| $this->user->block($this->other)
) {

View File

@ -75,10 +75,15 @@ class LoginAction extends Action
function handle($args)
{
parent::handle($args);
$disabled = common_config('logincommand','disabled');
if (common_is_real_login()) {
$this->clientError(_('Already logged in.'));
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
$this->checkLogin();
} else if (!isset($disabled) && isset($args['user_id']) && isset($args['token'])){
$this->checkLogin($args['user_id'],$args['token']);
} else {
common_ensure_session();
$this->showForm();
@ -95,7 +100,7 @@ class LoginAction extends Action
* @return void
*/
function checkLogin()
function checkLogin($user_id=null, $token=null)
{
if(isset($token) && isset($user_id)){
//Token based login (from the LoginCommand)
@ -137,11 +142,6 @@ class LoginAction extends Action
$user = common_check_user($nickname, $password);
}
$nickname = common_canonical_nickname($this->trimmed('nickname'));
$password = $this->arg('password');
$user = common_check_user($nickname, $password);
if (!$user) {
$this->showForm(_('Incorrect username or password.'));
return;

View File

@ -57,7 +57,7 @@ class SubscribersAction extends GalleryAction
function showPageNotice()
{
$user =& common_current_user();
$user = common_current_user();
if ($user && ($user->id == $this->profile->id)) {
$this->element('p', null,
_('These are the people who listen to '.

View File

@ -59,7 +59,7 @@ class SubscriptionsAction extends GalleryAction
function showPageNotice()
{
$user =& common_current_user();
$user = common_current_user();
if ($user && ($user->id == $this->profile->id)) {
$this->element('p', null,
_('These are the people whose notices '.

View File

@ -71,7 +71,7 @@ class TwitapisearchatomAction extends ApiAction
* @see Action::__construct
*/
function __construct($output='php://output', $indent=true)
function __construct($output='php://output', $indent=null)
{
parent::__construct($output, $indent);
}

View File

@ -69,7 +69,7 @@ class UserbyidAction extends Action
if (!$id) {
$this->clientError(_('No id.'));
}
$user =& User::staticGet($id);
$user = User::staticGet($id);
if (!$user) {
$this->clientError(_('No such user.'));
}

View File

@ -101,7 +101,7 @@ class Design extends Memcached_DataObject
}
if (0 != mb_strlen($css)) {
$out->element('style', array('type' => 'text/css'), $css);
$out->style($css);
}
}

42
classes/Login_token.php Normal file
View File

@ -0,0 +1,42 @@
<?php
/**
* Table Definition for login_token
*
* StatusNet - the distributed open-source microblogging tool
* Copyright (C) 2009, StatusNet, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
class Login_token extends Memcached_DataObject
{
###START_AUTOCODE
/* the code below is auto generated do not remove the above tag */
public $__table = 'login_token'; // table name
public $user_id; // int(4) primary_key not_null
public $token; // char(32) not_null
public $created; // datetime() not_null
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
/* Static get */
function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Login_token',$k,$v); }
/* the code above is auto generated do not remove the tag below */
###END_AUTOCODE
}

View File

@ -502,6 +502,19 @@ class User extends Memcached_DataObject
{
// Add a new block record
// no blocking (and thus unsubbing from) yourself
if ($this->id == $other->id) {
common_log(LOG_WARNING,
sprintf(
"Profile ID %d (%s) tried to block his or herself.",
$profile->id,
$profile->nickname
)
);
return false;
}
$block = new Profile_block();
// Begin a transaction
@ -520,16 +533,7 @@ class User extends Memcached_DataObject
// Cancel their subscription, if it exists
$sub = Subscription::pkeyGet(array('subscriber' => $other->id,
'subscribed' => $this->id));
if ($sub) {
$result = $sub->delete();
if (!$result) {
common_log_db_error($sub, 'DELETE', __FILE__);
return false;
}
}
subs_unsubscribe_to($other->getUser(),$this->getProfile());
$block->query('COMMIT');

View File

@ -260,6 +260,7 @@ modified = 384
[login_token__keys]
user_id = K
token = K
[message]
id = 129

View File

@ -154,7 +154,7 @@ $config['sphinx']['port'] = 3312;
// $config['queue']['subsystem'] = 'stomp';
// $config['queue']['stomp_server'] = 'tcp://localhost:61613';
// use different queue_basename for each statusnet instance managed by the server
// $config['queue']['queue_basename'] = 'statusnet';
// $config['queue']['queue_basename'] = '/queue/statusnet/';
// The following customise the behaviour of the various daemons:
// $config['daemon']['piddir'] = '/var/run';
@ -236,6 +236,11 @@ $config['sphinx']['port'] = 3312;
// Use a different hostname for SSL-encrypted pages
// $config['site']['sslserver'] = 'secure.example.org';
// Indent HTML and XML
// Enable (default) for easier to read markup for developers,
// disable to save some bandwidth.
// $config['site']['indent'] = true;
// If you have a lot of status networks on the same server, you can
// store the site data in a database and switch as follows
// Status_network::setupDB('localhost', 'statusnet', 'statuspass', 'statusnet');

View File

@ -73,3 +73,12 @@ create table location_namespace (
modified timestamp comment 'date this record was modified'
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
create table login_token (
user_id integer not null comment 'user owning this token' references user (id),
token char(32) not null comment 'token useable for logging in',
created datetime not null comment 'date this record was created',
modified timestamp comment 'date this record was modified',
constraint primary key (user_id)
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;

View File

@ -39,6 +39,15 @@ create table profile_role (
);
create table login_token (
user_id integer not null /* comment 'user owning this token'*/ references "user" (id),
token char(32) not null /* comment 'token useable for logging in'*/,
created timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date this record was created'*/,
modified timestamp /* comment 'date this record was modified'*/,
primary key (user_id)
);
DROP index fave_user_id_idx;
CREATE index fave_user_id_idx on fave (user_id,modified);
@ -60,4 +69,3 @@ ALTER TABLE profile ADD COLUMN lat decimal(10,7) /*comment 'latitude'*/ ;
ALTER TABLE profile ADD COLUMN lon decimal(10,7) /*comment 'longitude'*/;
ALTER TABLE profile ADD COLUMN location_id integer /* comment 'location id if possible'*/;
ALTER TABLE profile ADD COLUMN location_ns integer /* comment 'namespace for location'*/;

View File

@ -575,3 +575,13 @@ create table location_namespace (
modified timestamp comment 'date this record was modified'
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
create table login_token (
user_id integer not null comment 'user owning this token' references user (id),
token char(32) not null comment 'token useable for logging in',
created datetime not null comment 'date this record was created',
modified timestamp comment 'date this record was modified',
constraint primary key (user_id)
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;

View File

@ -571,3 +571,13 @@ create table profile_role (
primary key (profile_id, role)
);
create table login_token (
user_id integer not null /* comment 'user owning this token'*/ references "user" (id),
token char(32) not null /* comment 'token useable for logging in'*/,
created timestamp not null DEFAULT CURRENT_TIMESTAMP /* comment 'date this record was created'*/,
modified timestamp /* comment 'date this record was modified'*/,
primary key (user_id)
);

View File

@ -184,30 +184,33 @@ var SN = { // StatusNet
form.removeClass(SN.C.S.Processing);
$('#'+form_id+' #'+SN.C.S.NoticeActionSubmit).removeClass(SN.C.S.Disabled);
$('#'+form_id+' #'+SN.C.S.NoticeActionSubmit).removeAttr(SN.C.S.Disabled, SN.C.S.Disabled);
$('#'+form_id+' .form_response').remove();
if (textStatus == 'timeout') {
form.append('<p class="error>Sorry! We had trouble sending your notice. The servers are overloaded. Please try again, and contact the site administrator if this problem persists.</p>');
form.append('<p class="form_response error">Sorry! We had trouble sending your notice. The servers are overloaded. Please try again, and contact the site administrator if this problem persists.</p>');
}
else {
if ($('.'+SN.C.S.Error, xhr.responseXML).length > 0) {
form.append(document._importNode($('.'+SN.C.S.Error, xhr.responseXML)[0], true));
}
else {
if(jQuery.inArray(parseInt(xhr.status), SN.C.I.HTTP20x30x) < 0) {
form.append('<p class="error>(Sorry! We had trouble sending your notice ('+xhr.status+' '+xhr.statusText+'). Please report the problem to the site administrator if this happens again.</p>');
if (parseInt(xhr.status) === 0 || jQuery.inArray(parseInt(xhr.status), SN.C.I.HTTP20x30x) >= 0) {
$('#'+form_id).resetForm();
$('#'+form_id+' #'+SN.C.S.NoticeDataAttachSelected).remove();
SN.U.FormNoticeEnhancements($('#'+form_id));
}
else {
$('#'+form_id+' #'+SN.C.S.NoticeDataText).val('');
SN.U.FormNoticeEnhancements($('#'+form_id));
form.append('<p class="form_response error">(Sorry! We had trouble sending your notice ('+xhr.status+' '+xhr.statusText+'). Please report the problem to the site administrator if this happens again.</p>');
}
}
}
},
success: function(data, textStatus) {
$('#'+form_id+' .form_response').remove();
var result;
if ($('#'+SN.C.S.Error, data).length > 0) {
result = document._importNode($('p', data)[0], true);
result = result.textContent || result.innerHTML;
form.append('<p class="error">'+result+'</p>');
form.append('<p class="form_response error">'+result+'</p>');
}
else {
if($('body')[0].id == 'bookmarklet') {
@ -217,7 +220,7 @@ var SN = { // StatusNet
if ($('#'+SN.C.S.CommandResult, data).length > 0) {
result = document._importNode($('p', data)[0], true);
result = result.textContent || result.innerHTML;
form.append('<p class="success">'+result+'</p>');
form.append('<p class="form_response success">'+result+'</p>');
}
else {
var notices = $('#notices_primary .notices');
@ -245,12 +248,10 @@ var SN = { // StatusNet
else {
result = document._importNode($('title', data)[0], true);
result_title = result.textContent || result.innerHTML;
form.append('<p class="success">'+result_title+'</p>');
form.append('<p class="form_response success">'+result_title+'</p>');
}
}
$('#'+form_id+' #'+SN.C.S.NoticeDataText).val('');
$('#'+form_id+' #'+SN.C.S.NoticeDataAttach).val('');
$('#'+form_id+' #'+SN.C.S.NoticeInReplyTo).val('');
$('#'+form_id).resetForm();
$('#'+form_id+' #'+SN.C.S.NoticeDataAttachSelected).remove();
SN.U.FormNoticeEnhancements($('#'+form_id));
}

View File

@ -68,7 +68,7 @@ class Action extends HTMLOutputter // lawsuit
* @see XMLOutputter::__construct
* @see HTMLOutputter::__construct
*/
function __construct($output='php://output', $indent=true)
function __construct($output='php://output', $indent=null)
{
parent::__construct($output, $indent);
}

View File

@ -134,19 +134,17 @@ class ApiAction extends Action
$twitter_user['protected'] = false; # not supported by StatusNet yet
$twitter_user['followers_count'] = $profile->subscriberCount();
$design = null;
$user = $profile->getUser();
$design = null;
// Note: some profiles don't have an associated user
$defaultDesign = Design::siteDesign();
if (!empty($user)) {
$design = $user->getDesign();
}
if (empty($design)) {
$design = Design::siteDesign();
}
$color = Design::toWebColor(empty($design->backgroundcolor) ? $defaultDesign->backgroundcolor : $design->backgroundcolor);
$twitter_user['profile_background_color'] = ($color == null) ? '' : '#'.$color->hexValue();
$color = Design::toWebColor(empty($design->textcolor) ? $defaultDesign->textcolor : $design->textcolor);
@ -165,7 +163,7 @@ class ApiAction extends Action
$timezone = 'UTC';
if ($user->timezone) {
if (!empty($user) && !empty($user->timezone)) {
$timezone = $user->timezone;
}

View File

@ -579,6 +579,37 @@ class OnCommand extends Command
}
}
class LoginCommand extends Command
{
function execute($channel)
{
$disabled = common_config('logincommand','disabled');
if(isset($disabled)) {
$channel->error($this->user, _('Login command is disabled'));
return;
}
$login_token = Login_token::staticGet('user_id',$this->user->id);
if($login_token){
$login_token->delete();
}
$login_token = new Login_token();
$login_token->user_id = $this->user->id;
$login_token->token = common_good_rand(16);
$login_token->created = common_sql_now();
$result = $login_token->insert();
if (!$result) {
common_log_db_error($login_token, 'INSERT', __FILE__);
$channel->error($this->user, sprintf(_('Could not create login token for %s'),
$this->user->nickname));
return;
}
$channel->output($this->user,
sprintf(_('This link is useable only once, and is good for only 2 minutes: %s'),
common_local_url('login',
array('user_id'=>$login_token->user_id, 'token'=>$login_token->token))));
}
}
class SubscriptionsCommand extends Command
{
function execute($channel)
@ -666,6 +697,7 @@ class HelpCommand extends Command
"reply #<notice_id> - reply to notice with a given id\n".
"reply <nickname> - reply to the last notice from user\n".
"join <group> - join group\n".
"login - Get a link to login to the web interface\n".
"drop <group> - leave group\n".
"stats - get your stats\n".
"stop - same as 'off'\n".

View File

@ -41,6 +41,12 @@ class CommandInterpreter
return null;
}
return new HelpCommand($user);
case 'login':
if ($arg) {
return null;
} else {
return new LoginCommand($user);
}
case 'subscribers':
if ($arg) {
return null;

View File

@ -53,6 +53,7 @@ $default =
'shorturllength' => 30,
'dupelimit' => 60, # default for same person saying the same thing
'textlimit' => 140,
'indent' => true,
),
'db' =>
array('database' => 'YOU HAVE TO SET THIS IN config.php',
@ -74,7 +75,7 @@ $default =
array('enabled' => false,
'subsystem' => 'db', # default to database, or 'stomp'
'stomp_server' => null,
'queue_basename' => 'statusnet',
'queue_basename' => '/queue/statusnet/',
'stomp_username' => null,
'stomp_password' => null,
),

View File

@ -50,7 +50,7 @@ class ErrorAction extends Action
var $message = null;
var $default = null;
function __construct($message, $code, $output='php://output', $indent=true)
function __construct($message, $code, $output='php://output', $indent=null)
{
parent::__construct($output, $indent);

View File

@ -67,7 +67,7 @@ class HTMLOutputter extends XMLOutputter
* @param boolean $indent Whether to indent output, default true
*/
function __construct($output='php://output', $indent=true)
function __construct($output='php://output', $indent=null)
{
parent::__construct($output, $indent);
}
@ -350,14 +350,43 @@ class HTMLOutputter extends XMLOutputter
*/
function script($src, $type='text/javascript')
{
$url = parse_url($src);
if( empty($url->scheme) && empty($url->host) && empty($url->query) && empty($url->fragment))
{
$src = common_path($src) . '?version=' . STATUSNET_VERSION;
if(Event::handle('StartScriptElement', array($this,&$src,&$type))) {
$url = parse_url($src);
if( empty($url->scheme) && empty($url->host) && empty($url->query) && empty($url->fragment))
{
$src = common_path($src) . '?version=' . STATUSNET_VERSION;
}
$this->element('script', array('type' => $type,
'src' => $src),
' ');
Event::handle('EndScriptElement', array($this,$src,$type));
}
}
/**
* output a script (almost always javascript) tag with inline
* code.
*
* @param string $code code to put in the script tag
* @param string $type 'type' attribute value of the tag
*
* @return void
*/
function inlineScript($code, $type='text/javascript')
{
if(Event::handle('StartInlineScriptElement', array($this,&$code,&$type))) {
$this->elementStart('script', array('type' => $type));
if($type == 'text/javascript') {
$this->raw('/*<![CDATA[*/ '); // XHTML compat
}
$this->raw($code);
if($type == 'text/javascript') {
$this->raw(' /*]]>*/'); // XHTML compat
}
$this->elementEnd('script');
Event::handle('EndInlineScriptElement', array($this,$code,$type));
}
$this->element('script', array('type' => $type,
'src' => $src),
' ');
}
/**
@ -371,19 +400,44 @@ class HTMLOutputter extends XMLOutputter
*/
function cssLink($src,$theme=null,$media=null)
{
$url = parse_url($src);
if( empty($url->scheme) && empty($url->host) && empty($url->query) && empty($url->fragment))
{
if(file_exists(Theme::file($src,$theme))){
$src = Theme::path($src, $theme) . '?version=' . STATUSNET_VERSION;
}else{
$src = common_path($src);
if(Event::handle('StartCssLinkElement', array($this,&$src,&$theme,&$media))) {
$url = parse_url($src);
if( empty($url->scheme) && empty($url->host) && empty($url->query) && empty($url->fragment))
{
if(file_exists(Theme::file($src,$theme))){
$src = Theme::path($src, $theme);
}else{
$src = common_path($src);
}
$src.= '?version=' . STATUSNET_VERSION;
}
$this->element('link', array('rel' => 'stylesheet',
'type' => 'text/css',
'href' => $src,
'media' => $media));
Event::handle('EndCssLinkElement', array($this,$src,$theme,$media));
}
}
/**
* output a style (almost always css) tag with inline
* code.
*
* @param string $code code to put in the style tag
* @param string $type 'type' attribute value of the tag
* @param string $media 'media' attribute value of the tag
*
* @return void
*/
function style($code, $type = 'text/css', $media = null)
{
if(Event::handle('StartStyleElement', array($this,&$code,&$type,&$media))) {
$this->elementStart('style', array('type' => $type, 'media' => $media));
$this->raw($code);
$this->elementEnd('style');
Event::handle('EndStyleElement', array($this,$code,$type,$media));
}
$this->element('link', array('rel' => 'stylesheet',
'type' => 'text/css',
'href' => $src,
'media' => $media));
}
/**
@ -414,7 +468,6 @@ class HTMLOutputter extends XMLOutputter
}
}
/**
* Internal script to autofocus the given element on page onload.
*
@ -425,13 +478,10 @@ class HTMLOutputter extends XMLOutputter
*/
function autofocus($id)
{
$this->elementStart('script', array('type' => 'text/javascript'));
$this->raw('/*<![CDATA[*/'.
$this->inlineScript(
' $(document).ready(function() {'.
' var el = $("#' . $id . '");'.
' if (el.length) { el.focus(); }'.
' });'.
' /*]]>*/');
$this->elementEnd('script');
' });');
}
}

View File

@ -154,8 +154,7 @@ class MessageForm extends Form
$contentLimit = Message::maxContent();
$this->out->element('script', array('type' => 'text/javascript'),
'maxLength = ' . $contentLimit . ';');
$this->out->inlineScript('maxLength = ' . $contentLimit . ';');
if ($contentLimit > 0) {
$this->out->elementStart('dl', 'form_note');

View File

@ -178,8 +178,7 @@ class NoticeForm extends Form
$contentLimit = Notice::maxContent();
$this->out->element('script', array('type' => 'text/javascript'),
'maxLength = ' . $contentLimit . ';');
$this->out->inlineScript('maxLength = ' . $contentLimit . ';');
if ($contentLimit > 0) {
$this->out->elementStart('dl', 'form_note');

View File

@ -76,4 +76,14 @@ class Plugin
{
return true;
}
protected function log($level, $msg)
{
common_log($level, get_class($this) . ': '.$msg);
}
protected function debug($msg)
{
$this->log(LOG_DEBUG, $msg);
}
}

View File

@ -88,6 +88,8 @@ class Router
$m->connect('doc/:title', array('action' => 'doc'));
$m->connect('main/login?user_id=:user_id&token=:token', array('action'=>'login'), array('user_id'=> '[0-9]+', 'token'=>'.+'));
// main stuff is repetitive
$main = array('login', 'logout', 'register', 'subscribe',

View File

@ -52,7 +52,7 @@ class Rss10Action extends Action
* @see Action::__construct
*/
function __construct($output='php://output', $indent=true)
function __construct($output='php://output', $indent=null)
{
parent::__construct($output, $indent);
}

View File

@ -94,7 +94,7 @@ class Schema
public function getTableDef($name)
{
$res =& $this->conn->query('DESCRIBE ' . $name);
$res = $this->conn->query('DESCRIBE ' . $name);
if (PEAR::isError($res)) {
throw new Exception($res->getMessage());
@ -213,7 +213,7 @@ class Schema
$sql .= "); ";
$res =& $this->conn->query($sql);
$res = $this->conn->query($sql);
if (PEAR::isError($res)) {
throw new Exception($res->getMessage());
@ -234,7 +234,7 @@ class Schema
public function dropTable($name)
{
$res =& $this->conn->query("DROP TABLE $name");
$res = $this->conn->query("DROP TABLE $name");
if (PEAR::isError($res)) {
throw new Exception($res->getMessage());
@ -269,7 +269,7 @@ class Schema
$name = "$table_".implode("_", $columnNames)."_idx";
}
$res =& $this->conn->query("ALTER TABLE $table ".
$res = $this->conn->query("ALTER TABLE $table ".
"ADD INDEX $name (".
implode(",", $columnNames).")");
@ -291,7 +291,7 @@ class Schema
public function dropIndex($table, $name)
{
$res =& $this->conn->query("ALTER TABLE $table DROP INDEX $name");
$res = $this->conn->query("ALTER TABLE $table DROP INDEX $name");
if (PEAR::isError($res)) {
throw new Exception($res->getMessage());
@ -314,7 +314,7 @@ class Schema
{
$sql = "ALTER TABLE $table ADD COLUMN " . $this->_columnSql($columndef);
$res =& $this->conn->query($sql);
$res = $this->conn->query($sql);
if (PEAR::isError($res)) {
throw new Exception($res->getMessage());
@ -339,7 +339,7 @@ class Schema
$sql = "ALTER TABLE $table MODIFY COLUMN " .
$this->_columnSql($columndef);
$res =& $this->conn->query($sql);
$res = $this->conn->query($sql);
if (PEAR::isError($res)) {
throw new Exception($res->getMessage());
@ -363,7 +363,7 @@ class Schema
{
$sql = "ALTER TABLE $table DROP COLUMN $columnName";
$res =& $this->conn->query($sql);
$res = $this->conn->query($sql);
if (PEAR::isError($res)) {
throw new Exception($res->getMessage());
@ -446,7 +446,7 @@ class Schema
$sql = 'ALTER TABLE ' . $tableName . ' ' . implode(', ', $phrase);
$res =& $this->conn->query($sql);
$res = $this->conn->query($sql);
if (PEAR::isError($res)) {
throw new Exception($res->getMessage());

View File

@ -127,6 +127,12 @@ function subs_unsubscribe_to($user, $other)
if (!$user->isSubscribed($other))
return _('Not subscribed!');
// Don't allow deleting self subs
if ($user->id == $other->id) {
return _('Couldn\'t delete self-subscription.');
}
$sub = DB_DataObject::factory('subscription');
$sub->subscriber = $user->id;

View File

@ -127,7 +127,7 @@ function common_check_user($nickname, $password)
if (0 == strcmp(common_munge_password($password, $user->id),
$user->password)) {
//internal checking passed
$authenticatedUser =& $user;
$authenticatedUser = $user;
}
}
}
@ -1070,18 +1070,21 @@ function common_request_id()
function common_log($priority, $msg, $filename=null)
{
$msg = '[' . common_request_id() . '] ' . $msg;
$logfile = common_config('site', 'logfile');
if ($logfile) {
$log = fopen($logfile, "a");
if ($log) {
$output = common_log_line($priority, $msg);
fwrite($log, $output);
fclose($log);
if(Event::handle('StartLog', array(&$priority, &$msg, &$filename))){
$msg = '[' . common_request_id() . '] ' . $msg;
$logfile = common_config('site', 'logfile');
if ($logfile) {
$log = fopen($logfile, "a");
if ($log) {
$output = common_log_line($priority, $msg);
fwrite($log, $output);
fclose($log);
}
} else {
common_ensure_syslog();
syslog($priority, $msg);
}
} else {
common_ensure_syslog();
syslog($priority, $msg);
Event::handle('EndLog', array($priority, $msg, $filename));
}
}

View File

@ -67,10 +67,13 @@ class XMLOutputter
* @param boolean $indent Whether to indent output, default true
*/
function __construct($output='php://output', $indent=true)
function __construct($output='php://output', $indent=null)
{
$this->xw = new XMLWriter();
$this->xw->openURI($output);
if(is_null($indent)) {
$indent = common_config('site', 'indent');
}
$this->xw->setIndent($indent);
}

View File

@ -8,12 +8,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:19:01+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:25:58+0000\n"
"Language-Team: Arabic\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ar\n"
"X-Message-Group: out-statusnet\n"
@ -181,7 +181,12 @@ msgstr "ليس للمستخدم ملف شخصي."
msgid "Could not save profile."
msgstr "تعذّر حفظ الملف الشخصي."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "لا يمكنك حذف المستخدمين."
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr "فشل منع المستخدم."
@ -560,7 +565,7 @@ msgstr ""
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -805,100 +810,100 @@ msgstr "التصميم"
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
msgid "Invalid logo URL."
msgstr "مسار شعار غير صالح."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, php-format
msgid "Theme not available: %s"
msgstr "السمة غير متوفرة: %s"
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
msgid "Change logo"
msgstr "غيّر الشعار"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
msgid "Site logo"
msgstr "شعار الموقع"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
msgid "Change theme"
msgstr "غيّر السمة"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
msgid "Site theme"
msgstr "سمة الموقع"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
msgid "Theme for the site."
msgstr "سمة الموقع."
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr "تغيير صورة الخلفية"
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr "الخلفية"
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr ""
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr "مكّن"
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr "عطّل"
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr "مكّن صورة الخلفية أو عطّلها."
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
msgid "Change colours"
msgstr "تغيير الألوان"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
msgid "Content"
msgstr "المحتوى"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
msgid "Sidebar"
msgstr "الشريط الجانبي"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "النص"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
msgid "Links"
msgstr "وصلات"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr "استخدم المبدئيات"
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr "استعد التصميمات المبدئية"
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr "ارجع إلى المبدئي"
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -908,7 +913,7 @@ msgstr "ارجع إلى المبدئي"
msgid "Save"
msgstr "أرسل"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr "احفظ التصميم"
@ -1135,16 +1140,16 @@ msgstr ""
#: actions/favorited.php:65 lib/popularnoticesection.php:88
#: lib/publicgroupnav.php:93
msgid "Popular notices"
msgstr ""
msgstr "إشعارات مشهورة"
#: actions/favorited.php:67
#, php-format
msgid "Popular notices, page %d"
msgstr ""
msgstr "إشعارات مشهورة، الصفحة %d"
#: actions/favorited.php:79
msgid "The most popular notices on the site right now."
msgstr ""
msgstr "أشهر الإشعارات على الموقع حاليًا."
#: actions/favorited.php:150
msgid "Favorite notices appear on this page but no one has favorited one yet."
@ -1306,11 +1311,11 @@ msgstr "لا تمنع هذا المستخدم من هذه المجموعة"
#: actions/groupblock.php:179
msgid "Block this user from this group"
msgstr ""
msgstr "امنع هذا المستخدم من هذه المجموعة"
#: actions/groupblock.php:196
msgid "Database error blocking user from group."
msgstr ""
msgstr "خطأ في قاعدة البيانات أثناء منع المستخدم من المجموعة."
#: actions/groupbyid.php:74
msgid "No ID"
@ -1330,18 +1335,18 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
msgid "Couldn't update your design."
msgstr "تعذّر تحديث تصميمك."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
msgid "Unable to save your design settings!"
msgstr ""
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
msgid "Design preferences saved."
msgstr ""
@ -1637,7 +1642,7 @@ msgstr "رسالة شخصية"
msgid "Optionally add a personal message to the invitation."
msgstr ""
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "أرسل"
@ -1717,11 +1722,11 @@ msgstr ""
msgid "%s left group %s"
msgstr ""
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "والج بالفعل."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
msgid "Invalid or expired token."
msgstr ""
@ -1922,8 +1927,8 @@ msgstr "نوع المحتوى "
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr "ليس نسق بيانات مدعوم."
@ -2500,7 +2505,7 @@ msgstr ""
#: actions/recoverpassword.php:352
msgid "Password must be 6 chars or more."
msgstr ""
msgstr "يجب أن تكون كلمة السر 6 محارف أو أكثر."
#: actions/recoverpassword.php:356
msgid "Password and confirmation do not match."
@ -2516,7 +2521,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
msgid "Sorry, invalid invitation code."
@ -3062,9 +3067,8 @@ msgid "Contact email address for your site"
msgstr "عنوان البريد الإلكتروني للاتصال بموقعك"
#: actions/siteadminpanel.php:290
#, fuzzy
msgid "Local"
msgstr "الموقع"
msgstr "محلي"
#: actions/siteadminpanel.php:301
msgid "Default timezone"
@ -3103,13 +3107,12 @@ msgid "Access"
msgstr "نفاذ"
#: actions/siteadminpanel.php:334
#, fuzzy
msgid "Private"
msgstr "خصوصية"
msgstr "خاص"
#: actions/siteadminpanel.php:336
msgid "Prohibit anonymous users (not logged in) from viewing site?"
msgstr ""
msgstr "أأمنع المستخدمين المجهولين (غير الوالجين) من عرض الموقع؟"
#: actions/siteadminpanel.php:340
#, fuzzy
@ -4203,11 +4206,25 @@ msgstr ""
msgid "Can't turn on notification."
msgstr ""
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "تعذّر إنشاء الكنى."
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
msgid "You are not subscribed to anyone."
msgstr "لست مُشتركًا بأي أحد."
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "لست مشتركًا بأحد."
@ -4217,11 +4234,11 @@ msgstr[3] "أنت مشترك بهؤلاء الأشخاص:"
msgstr[4] ""
msgstr[5] ""
#: lib/command.php:614
#: lib/command.php:645
msgid "No one is subscribed to you."
msgstr "لا أحد مشترك بك."
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "لا أحد مشترك بك."
@ -4231,11 +4248,11 @@ msgstr[3] "هؤلاء الأشخاص مشتركون بك:"
msgstr[4] ""
msgstr[5] ""
#: lib/command.php:636
#: lib/command.php:667
msgid "You are not a member of any groups."
msgstr "لست عضوًا في أي مجموعة."
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "لست عضوًا في أي مجموعة."
@ -4245,7 +4262,7 @@ msgstr[3] "أنت عضو في هذه المجموعات:"
msgstr[4] ""
msgstr[5] ""
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4264,6 +4281,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4320,16 +4338,11 @@ msgid "Upload file"
msgstr "ارفع ملفًا"
#: lib/designsettings.php:109
#, fuzzy
msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %s."
msgstr "تستطيع رفع صورتك الشخصية. أقصى حجم للملف هو 2 م.ب."
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr "استعيدت مبدئيات التصميم."
@ -4773,7 +4786,7 @@ msgstr "أرسل إشعارًا مباشرًا"
msgid "To"
msgstr "إلى"
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
msgid "Available characters"
msgstr "المحارف المتوفرة"
@ -4786,11 +4799,11 @@ msgstr "أرسل إشعارًا"
msgid "What's up, %s?"
msgstr "ما الأخبار يا %s؟"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr "أرفق"
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr "أرفق ملفًا"
@ -4955,7 +4968,7 @@ msgstr "مُختارون"
#: lib/publicgroupnav.php:92
msgid "Popular"
msgstr ""
msgstr "مشهورة"
#: lib/sandboxform.php:67
msgid "Sandbox"
@ -5060,7 +5073,12 @@ msgstr ""
msgid "Not subscribed!"
msgstr "لست مُشتركًا!"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "تعذّر حذف الاشتراك."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "تعذّر حذف الاشتراك."

View File

@ -8,12 +8,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:19:07+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:26:01+0000\n"
"Language-Team: Bulgarian\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: bg\n"
"X-Message-Group: out-statusnet\n"
@ -180,7 +180,12 @@ msgstr "Потребителят няма профил."
msgid "Could not save profile."
msgstr "Грешка при запазване на профила."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "Не можете да спрете да следите себе си!"
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr ""
@ -566,7 +571,7 @@ msgstr "Изрязване"
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -818,106 +823,106 @@ msgstr ""
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "Неправилен размер."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, fuzzy, php-format
msgid "Theme not available: %s"
msgstr "Страницата не е достъпна във вида медия, който приемате"
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
msgid "Change logo"
msgstr "Смяна на логото"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
#, fuzzy
msgid "Site logo"
msgstr "Покани"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "Промяна"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme"
msgstr "Нова бележка"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
#, fuzzy
msgid "Theme for the site."
msgstr "Излизане от сайта"
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr "Смяна на изображението за фон"
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr "Фон"
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr "Може да качите лого за групата ви."
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr "Вкл."
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr "Изкл."
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
msgid "Change colours"
msgstr "Смяна на цветовете"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
msgid "Content"
msgstr "Съдържание"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
msgid "Sidebar"
msgstr "Страничен панел"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "Текст"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
#, fuzzy
msgid "Links"
msgstr "Списък"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -927,7 +932,7 @@ msgstr ""
msgid "Save"
msgstr "Запазване"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -1370,20 +1375,20 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "Грешка при обновяване на потребителя."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: 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"
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
#, fuzzy
msgid "Design preferences saved."
msgstr "Настройките са запазени."
@ -1699,7 +1704,7 @@ msgstr "Лично съобщение"
msgid "Optionally add a personal message to the invitation."
msgstr "Може да добавите и лично съобщение към поканата."
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "Прати"
@ -1806,11 +1811,11 @@ msgstr "Грешка при проследяване — потребителя
msgid "%s left group %s"
msgstr "%s напусна групата %s"
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Вече сте влезли."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
#, fuzzy
msgid "Invalid or expired token."
msgstr "Невалидно съдържание на бележка"
@ -2022,8 +2027,8 @@ msgstr "Свързване"
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr "Неподдържан формат на данните"
@ -4403,39 +4408,53 @@ msgstr "Уведомлението е включено."
msgid "Can't turn on notification."
msgstr "Грешка при включване на уведомлението."
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "Грешка при отбелязване като любима."
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Не сте абонирани за този профил"
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Вече сте абонирани за следните потребители:"
msgstr[1] "Вече сте абонирани за следните потребители:"
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Грешка при абониране на друг потребител за вас."
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Грешка при абониране на друг потребител за вас."
msgstr[1] "Грешка при абониране на друг потребител за вас."
#: lib/command.php:636
#: lib/command.php:667
msgid "You are not a member of any groups."
msgstr "Не членувате в нито една група."
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "Не членувате в тази група."
msgstr[1] "Не членувате в тази група."
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4454,6 +4473,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4516,11 +4536,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "Можете да качите личен аватар тук."
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -4978,7 +4994,7 @@ msgstr "Изпращане на пряко съобщеие"
msgid "To"
msgstr "До"
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
msgid "Available characters"
msgstr "Налични знаци"
@ -4991,11 +5007,11 @@ msgstr "Изпращане на бележка"
msgid "What's up, %s?"
msgstr "Какво става, %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5272,7 +5288,12 @@ msgstr "Грешка при абониране на друг потребите
msgid "Not subscribed!"
msgstr "Не сте абонирани!"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Грешка при изтриване на абонамента."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "Грешка при изтриване на абонамента."

View File

@ -8,12 +8,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:19:11+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:26:04+0000\n"
"Language-Team: Catalan\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ca\n"
"X-Message-Group: out-statusnet\n"
@ -80,6 +80,8 @@ msgstr "Canal dels amics de %s (Atom)"
msgid ""
"This is the timeline for %s and friends but no one has posted anything yet."
msgstr ""
"Aquesta és la línia temporal de %s i amics, però ningú hi ha enviat res "
"encara."
#: actions/all.php:132
#, php-format
@ -183,7 +185,12 @@ msgstr "L'usuari no té perfil."
msgid "Could not save profile."
msgstr "No s'ha pogut guardar el perfil."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "No podeu suprimir els usuaris."
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr "Ha fallat el bloqueig d'usuari."
@ -196,9 +203,9 @@ msgid "No message text!"
msgstr "No hi ha text al missatge!"
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150
#, fuzzy, php-format
#, php-format
msgid "That's too long. Max message size is %d chars."
msgstr "És massa llarg. Màxim del missatge és 140 caràcters."
msgstr "És massa llarg. La mida màxima del missatge és %d caràcters."
#: actions/apidirectmessagenew.php:146
msgid "Recipient user not found."
@ -251,9 +258,8 @@ msgid "No status found with that ID."
msgstr "No s'ha trobat cap estatus amb aquesta ID."
#: actions/apifavoritecreate.php:119
#, fuzzy
msgid "This status is already a favorite!"
msgstr "Aquesta nota ja és favorita."
msgstr "Aquest estat ja és un preferit!"
#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176
msgid "Could not create favorite."
@ -266,7 +272,7 @@ msgstr "Aquesta notificació no és un favorit!"
#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87
msgid "Could not delete favorite."
msgstr "No pots eliminar favorits."
msgstr "No s'ha pogut suprimir el preferit."
#: actions/apifriendshipscreate.php:109
msgid "Could not follow user: User not found."
@ -292,9 +298,8 @@ msgid "Two user ids or screen_names must be supplied."
msgstr "Dos ids d'usuari o screen_names has de ser substituïts."
#: actions/apifriendshipsshow.php:135
#, fuzzy
msgid "Could not determine source user."
msgstr "No s'ha pogut recuperar la conversa pública."
msgstr "No s'ha pogut determinar l'usuari d'origen."
#: actions/apifriendshipsshow.php:143
#, fuzzy
@ -352,9 +357,9 @@ msgstr "Hi ha massa àlies! Màxim %d."
#: actions/apigroupcreate.php:264 actions/editgroup.php:224
#: actions/newgroup.php:168
#, fuzzy, php-format
#, php-format
msgid "Invalid alias: \"%s\""
msgstr "Etiqueta no vàlida: \"%s\""
msgstr "L'àlies no és vàlid «%s»"
#: actions/apigroupcreate.php:273 actions/editgroup.php:228
#: actions/newgroup.php:172
@ -448,9 +453,8 @@ msgid "Max notice size is %d chars, including attachment URL."
msgstr ""
#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261
#, fuzzy
msgid "Unsupported format."
msgstr "Format d'imatge no suportat."
msgstr "El format no està implementat."
#: actions/apitimelinefavorites.php:107
#, php-format
@ -573,7 +577,7 @@ msgstr "Crop"
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -658,9 +662,8 @@ msgid "Unblock this user"
msgstr "Desbloquejar aquest usuari"
#: actions/block.php:69
#, fuzzy
msgid "You already blocked that user."
msgstr "Ja havies bloquejat aquest usuari."
msgstr "Ja heu blocat l'usuari."
#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160
msgid "Block user"
@ -696,9 +699,8 @@ msgid "Failed to save block information."
msgstr "Error al guardar la informació del block."
#: actions/bookmarklet.php:50
#, fuzzy
msgid "Post to "
msgstr "Foto"
msgstr "Envia a "
#: actions/confirmaddress.php:75
msgid "No confirmation code."
@ -834,102 +836,100 @@ msgstr "Disseny"
msgid "Design settings for this StatusNet site."
msgstr "Paràmetres de disseny d'aquest lloc StatusNet."
#: actions/designadminpanel.php:270
#, fuzzy
#: actions/designadminpanel.php:275
msgid "Invalid logo URL."
msgstr "Mida invàlida."
msgstr "L'URL del logotip no és vàlid."
#: actions/designadminpanel.php:274
#, fuzzy, php-format
#: actions/designadminpanel.php:279
#, php-format
msgid "Theme not available: %s"
msgstr "Aquesta pàgina no està disponible en "
msgstr "El tema no és disponible: %s"
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
msgid "Change logo"
msgstr "Canvia el logotip"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
msgid "Site logo"
msgstr "Logotip del lloc"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
msgid "Change theme"
msgstr "Canvia el tema"
#: actions/designadminpanel.php:399
#, fuzzy
#: actions/designadminpanel.php:404
msgid "Site theme"
msgstr "Avís del lloc"
msgstr "Tema del lloc"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
msgid "Theme for the site."
msgstr "Tema del lloc."
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr "Canvia la imatge de fons"
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr "Fons"
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr "Pots pujar una imatge de logo per al grup."
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
msgstr "Activada"
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
msgstr "Desactivada"
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
msgstr "Activa o desactiva la imatge de fons."
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
msgstr "Posa en mosaic la imatge de fons"
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
msgid "Change colours"
msgstr "Canvia els colors"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
msgid "Content"
msgstr "Contingut"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
msgid "Sidebar"
msgstr "Barra lateral"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "Text"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
msgid "Links"
msgstr "Enllaços"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -939,7 +939,7 @@ msgstr ""
msgid "Save"
msgstr "Guardar"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr "Desa el disseny"
@ -949,7 +949,7 @@ msgstr "Aquesta notificació no és un favorit!"
#: actions/disfavor.php:94
msgid "Add to favorites"
msgstr "Afegir a favorits"
msgstr "Afegeix als preferits"
#: actions/doc.php:69
msgid "No such document."
@ -974,18 +974,17 @@ msgid "Use this form to edit the group."
msgstr "Utilitza aquest formulari per editar el grup."
#: actions/editgroup.php:201 actions/newgroup.php:145
#, fuzzy, php-format
#, php-format
msgid "description is too long (max %d chars)."
msgstr "la descripció és massa llarga (màx. 140 caràcters)."
msgstr "la descripció és massa llarga (màx. %d caràcters)."
#: actions/editgroup.php:253
msgid "Could not update group."
msgstr "No s'ha pogut actualitzar el grup."
#: actions/editgroup.php:259 classes/User_group.php:390
#, fuzzy
msgid "Could not create aliases."
msgstr "No es pot crear favorit."
msgstr "No s'han pogut crear els àlies."
#: actions/editgroup.php:269
msgid "Options saved."
@ -1007,13 +1006,13 @@ msgstr "Adreça"
#: actions/emailsettings.php:105
msgid "Current confirmed email address."
msgstr "Correu electrònic confirmat actualment."
msgstr "Adreça electrònica confirmada actualment."
#: actions/emailsettings.php:107 actions/emailsettings.php:140
#: actions/imsettings.php:108 actions/smssettings.php:115
#: actions/smssettings.php:158
msgid "Remove"
msgstr "Eliminar"
msgstr "Suprimeix"
#: actions/emailsettings.php:113
msgid ""
@ -1026,7 +1025,7 @@ msgstr ""
#: actions/emailsettings.php:117 actions/imsettings.php:120
#: actions/smssettings.php:126
msgid "Cancel"
msgstr "Cancel·lar"
msgstr "Cancel·la"
#: actions/emailsettings.php:121
msgid "Email Address"
@ -1039,7 +1038,7 @@ msgstr "Correu electrònic, com Email address, like \"UserName@example.org\""
#: actions/emailsettings.php:126 actions/imsettings.php:133
#: actions/smssettings.php:145
msgid "Add"
msgstr "Afegir"
msgstr "Afegeix"
#: actions/emailsettings.php:133 actions/smssettings.php:152
msgid "Incoming email"
@ -1048,7 +1047,7 @@ msgstr "Correu electrònic entrant"
#: actions/emailsettings.php:138 actions/smssettings.php:157
msgid "Send email to this address to post new notices."
msgstr ""
"Enviar correu electrònic a aquesta direcció per publicar noves notificacions."
"Envia correu electrònic a aquesta adreça per publicar noves notificacions."
#: actions/emailsettings.php:145 actions/smssettings.php:162
msgid "Make a new email address for posting to; cancels the old one."
@ -1255,7 +1254,7 @@ msgstr "Sense adjuncions"
#: actions/file.php:51
msgid "No uploaded attachments"
msgstr ""
msgstr "No s'ha pujat cap adjunció"
#: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!"
@ -1299,9 +1298,8 @@ msgid "No such group."
msgstr "No s'ha trobat el grup."
#: actions/getfile.php:75
#, fuzzy
msgid "No such file."
msgstr "No existeix aquest avís."
msgstr "No existeix el fitxer."
#: actions/getfile.php:79
msgid "Cannot read file."
@ -1384,20 +1382,20 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "No s'ha pogut actualitzar l'usuari."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: 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 "No s'ha pogut guardar la teva configuració de Twitter!"
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
#, fuzzy
msgid "Design preferences saved."
msgstr "Preferències de sincronització guardades."
@ -1447,7 +1445,7 @@ msgstr "Admin"
#: actions/groupmembers.php:346 lib/blockform.php:69
msgid "Block"
msgstr "Bloquejar"
msgstr "Bloca"
#: actions/groupmembers.php:441
#, fuzzy
@ -1724,9 +1722,9 @@ msgstr "Missatge personal"
msgid "Optionally add a personal message to the invitation."
msgstr "Opcionalment pots afegir un missatge a la invitació."
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "Enviar"
msgstr "Envia"
#: actions/invite.php:226
#, php-format
@ -1830,11 +1828,11 @@ msgstr "No s'ha pogut eliminar l'usuari %s del grup %s"
msgid "%s left group %s"
msgstr "%s ha abandonat el grup %s"
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Ja estàs connectat."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
#, fuzzy
msgid "Invalid or expired token."
msgstr "El contingut de l'avís és invàlid"
@ -1937,7 +1935,7 @@ msgstr "Nou missatge"
#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367
msgid "You can't send a message to this user."
msgstr "No pots enviar un missatge a aquest usuari."
msgstr "No podeu enviar un misssatge a aquest usuari."
#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351
#: lib/command.php:424
@ -2046,10 +2044,10 @@ msgstr "tipus de contingut "
#: actions/oembed.php:160
msgid "Only "
msgstr ""
msgstr "Només "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr "Format de data no suportat."
@ -2071,7 +2069,7 @@ msgstr "Gestionar altres vàries opcions."
#: actions/othersettings.php:108
msgid " (free service)"
msgstr ""
msgstr " (servei gratuït)"
#: actions/othersettings.php:116
msgid "Shorten URLs with"
@ -2088,7 +2086,7 @@ msgstr "Configuració del perfil"
#: actions/othersettings.php:123
msgid "Show or hide profile designs."
msgstr ""
msgstr "Mostra o amaga els dissenys de perfil."
#: actions/othersettings.php:153
msgid "URL shortening service is too long (max 50 chars)."
@ -2210,9 +2208,8 @@ msgid "Path"
msgstr "Camí"
#: actions/pathsadminpanel.php:216
#, fuzzy
msgid "Site path"
msgstr "Avís del lloc"
msgstr "Camí del lloc"
#: actions/pathsadminpanel.php:220
msgid "Path to locales"
@ -2228,11 +2225,11 @@ msgstr "Tema"
#: actions/pathsadminpanel.php:232
msgid "Theme server"
msgstr ""
msgstr "Servidor dels temes"
#: actions/pathsadminpanel.php:236
msgid "Theme path"
msgstr ""
msgstr "Camí dels temes"
#: actions/pathsadminpanel.php:240
msgid "Theme directory"
@ -3789,11 +3786,11 @@ msgstr ""
#: actions/useradminpanel.php:265
msgid "Sessions"
msgstr ""
msgstr "Sessions"
#: actions/useradminpanel.php:270
msgid "Handle sessions"
msgstr ""
msgstr "Gestiona les sessions"
#: actions/useradminpanel.php:272
msgid "Whether to handle sessions ourselves."
@ -3823,9 +3820,8 @@ msgstr ""
"avisos de ningú, clica \"Cancel·lar\"."
#: actions/userauthorization.php:188
#, fuzzy
msgid "License"
msgstr "llicència."
msgstr "Llicència"
#: actions/userauthorization.php:209
msgid "Accept"
@ -4033,9 +4029,9 @@ msgid "Could not set group membership."
msgstr "No s'ha pogut establir la pertinença d'aquest grup."
#: classes/User.php:347
#, fuzzy, php-format
#, php-format
msgid "Welcome to %1$s, @%2$s!"
msgstr "Missatge per a %1$s a %2$s"
msgstr "Us donem la benvinguda a %1$s, @%2$s!"
#: lib/accountsettingsaction.php:108
msgid "Change your profile settings"
@ -4105,9 +4101,8 @@ msgid "Connect to services"
msgstr "No s'ha pogut redirigir al servidor: %s"
#: lib/action.php:440
#, fuzzy
msgid "Change site configuration"
msgstr "Navegació primària del lloc"
msgstr "Canvia la configuració del lloc"
#: lib/action.php:444 lib/subgroupnav.php:105
msgid "Invite"
@ -4253,9 +4248,8 @@ msgid "There was a problem with your session token."
msgstr "Ha ocorregut algun problema amb la teva sessió."
#: lib/adminpanelaction.php:96
#, fuzzy
msgid "You cannot make changes to this site."
msgstr "No pots enviar un missatge a aquest usuari."
msgstr "No podeu fer canvis al lloc."
#: lib/adminpanelaction.php:195
#, fuzzy
@ -4395,9 +4389,9 @@ msgid "Notice too long - maximum is %d characters, you sent %d"
msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d"
#: lib/command.php:439
#, fuzzy, php-format
#, php-format
msgid "Reply to %s sent"
msgstr "respondre a aquesta nota"
msgstr "S'ha enviat la resposta a %s"
#: lib/command.php:441
#, fuzzy
@ -4442,40 +4436,53 @@ msgstr "Notificacions on."
msgid "Can't turn on notification."
msgstr "No es poden posar en on les notificacions."
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "No s'han pogut crear els àlies."
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "No estàs subscrit a aquest perfil."
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Ja estàs subscrit a aquests usuaris:"
msgstr[1] "Ja estàs subscrit a aquests usuaris:"
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "No pots subscriure a un altre a tu mateix."
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "No pots subscriure a un altre a tu mateix."
msgstr[1] "No pots subscriure a un altre a tu mateix."
#: lib/command.php:636
#, fuzzy
#: lib/command.php:667
msgid "You are not a member of any groups."
msgstr "No ets membre d'aquest grup."
msgstr "No sou membre de cap grup."
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "No sou un membre del grup."
msgstr[1] "No sou un membre del grup."
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4494,6 +4501,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4514,9 +4522,8 @@ msgid ""
msgstr ""
#: lib/common.php:199
#, fuzzy
msgid "No configuration file found. "
msgstr "Cap codi de confirmació."
msgstr "No s'ha trobat cap fitxer de configuració. "
#: lib/common.php:200
msgid "I looked for configuration files in the following places: "
@ -4527,9 +4534,8 @@ msgid "You may wish to run the installer to fix this."
msgstr ""
#: lib/common.php:202
#, fuzzy
msgid "Go to the installer."
msgstr "Accedir a aquest lloc"
msgstr "Vés a l'instal·lador."
#: lib/connectsettingsaction.php:110
msgid "IM"
@ -4558,11 +4564,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "Pots pujar el teu avatar personal."
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -4657,9 +4659,8 @@ msgid "Group"
msgstr "Grup"
#: lib/groupnav.php:101
#, fuzzy
msgid "Blocked"
msgstr "Bloquejar"
msgstr "Blocat"
#: lib/groupnav.php:102
#, fuzzy, php-format
@ -4771,9 +4772,8 @@ msgid ""
msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:452
#, fuzzy
msgid "from"
msgstr " de "
msgstr "de"
#: lib/mail.php:172
msgid "Email address confirmation"
@ -5027,7 +5027,7 @@ msgstr "Enviar notificació directa"
msgid "To"
msgstr "A"
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
msgid "Available characters"
msgstr "Caràcters disponibles"
@ -5040,13 +5040,13 @@ msgstr "Enviar notificació"
msgid "What's up, %s?"
msgstr "Què tal, %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
msgstr "Adjunta"
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
msgstr "Adjunta un fitxer"
#: lib/noticelist.php:403
#, php-format
@ -5135,7 +5135,7 @@ msgstr "Respostes"
#: lib/personalgroupnav.php:114
msgid "Favorites"
msgstr "Favorits"
msgstr "Preferits"
#: lib/personalgroupnav.php:124
msgid "Inbox"
@ -5263,14 +5263,12 @@ msgid "More..."
msgstr "Més…"
#: lib/silenceform.php:67
#, fuzzy
msgid "Silence"
msgstr "Avís del lloc"
msgstr "Silencia"
#: lib/silenceform.php:78
#, fuzzy
msgid "Silence this user"
msgstr "Bloquejar aquest usuari"
msgstr "Silencia l'usuari"
#: lib/subgroupnav.php:83
#, php-format
@ -5322,7 +5320,12 @@ msgstr "No pots subscriure a un altre a tu mateix."
msgid "Not subscribed!"
msgstr "No estàs subscrit!"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "No s'ha pogut eliminar la subscripció."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "No s'ha pogut eliminar la subscripció."
@ -5345,12 +5348,11 @@ msgstr "Desbloquejar aquest usuari"
#: lib/unsilenceform.php:67
msgid "Unsilence"
msgstr ""
msgstr "Dessilencia"
#: lib/unsilenceform.php:78
#, fuzzy
msgid "Unsilence this user"
msgstr "Desbloquejar aquest usuari"
msgstr "Dessilencia l'usuari"
#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137
msgid "Unsubscribe from this user"

View File

@ -8,12 +8,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:19:14+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:26:08+0000\n"
"Language-Team: Czech\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: cs\n"
"X-Message-Group: out-statusnet\n"
@ -184,7 +184,12 @@ msgstr "Uživatel nemá profil."
msgid "Could not save profile."
msgstr "Nelze uložit profil"
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "Nelze aktualizovat uživatele"
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr ""
@ -265,7 +270,7 @@ msgstr ""
#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87
msgid "Could not delete favorite."
msgstr ""
msgstr "Nelze smazat oblíbenou položku."
#: actions/apifriendshipscreate.php:109
msgid "Could not follow user: User not found."
@ -574,7 +579,7 @@ msgstr ""
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -609,25 +614,22 @@ msgid "Failed updating avatar."
msgstr "Nahrávání obrázku selhalo."
#: actions/avatarsettings.php:387
#, fuzzy
msgid "Avatar deleted."
msgstr "Obrázek nahrán"
msgstr "Avatar smazán."
#: actions/blockedfromgroup.php:73 actions/editgroup.php:84
#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86
#: actions/groupmembers.php:76 actions/grouprss.php:91
#: actions/joingroup.php:76 actions/showgroup.php:121
#, fuzzy
msgid "No nickname"
msgstr "Žádná přezdívka."
msgstr "Žádná přezdívka"
#: actions/blockedfromgroup.php:80 actions/editgroup.php:96
#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97
#: actions/grouplogo.php:99 actions/groupmembers.php:83
#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137
#, fuzzy
msgid "No such group"
msgstr "Žádné takové oznámení."
msgstr "Žádná taková skupina"
#: actions/blockedfromgroup.php:90
#, fuzzy, php-format
@ -677,7 +679,7 @@ msgstr ""
#: actions/block.php:143 actions/deletenotice.php:145
#: actions/deleteuser.php:147 actions/groupblock.php:178
msgid "No"
msgstr ""
msgstr "Ne"
#: actions/block.php:143 actions/deleteuser.php:147
#, fuzzy
@ -687,12 +689,11 @@ msgstr "Žádný takový uživatel."
#: actions/block.php:144 actions/deletenotice.php:146
#: actions/deleteuser.php:148 actions/groupblock.php:179
msgid "Yes"
msgstr ""
msgstr "Ano"
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80
#, fuzzy
msgid "Block this user"
msgstr "Žádný takový uživatel."
msgstr "Zablokovat tohoto uživatele"
#: actions/block.php:162
msgid "Failed to save block information."
@ -770,7 +771,7 @@ msgstr "Nepřihlášen"
#: actions/deletenotice.php:71
msgid "Can't delete this notice."
msgstr ""
msgstr "Toto oznámení nelze odstranit."
#: actions/deletenotice.php:103
msgid ""
@ -793,7 +794,7 @@ msgstr "Žádné takové oznámení."
#: actions/deletenotice.php:146 lib/noticelist.php:550
msgid "Delete this notice"
msgstr ""
msgstr "Odstranit toto oznámení"
#: actions/deletenotice.php:157
msgid "There was a problem with your session token. Try again, please."
@ -820,122 +821,118 @@ msgid ""
msgstr ""
#: actions/deleteuser.php:148 lib/deleteuserform.php:77
#, fuzzy
msgid "Delete this user"
msgstr "Žádný takový uživatel."
msgstr "Odstranit tohoto uživatele"
#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124
#: lib/adminpanelaction.php:302 lib/groupnav.php:119
msgid "Design"
msgstr ""
msgstr "Vzhled"
#: actions/designadminpanel.php:73
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "Neplatná velikost"
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, fuzzy, php-format
msgid "Theme not available: %s"
msgstr "Tato stránka není k dispozici v typu média která přijímáte."
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
#, fuzzy
msgid "Change logo"
msgstr "Změnit heslo"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
#, fuzzy
msgid "Site logo"
msgstr "Nové sdělení"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "Změnit"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme"
msgstr "Nové sdělení"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
msgid "Theme for the site."
msgstr ""
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr ""
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr ""
msgstr "Pozadí"
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků"
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#, fuzzy
#: actions/designadminpanel.php:488 lib/designsettings.php:170
msgid "Change colours"
msgstr "Změnit heslo"
msgstr "Změnit barvy"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#, fuzzy
#: actions/designadminpanel.php:510 lib/designsettings.php:191
msgid "Content"
msgstr "Připojit"
msgstr "Obsah"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
#, fuzzy
msgid "Sidebar"
msgstr "Hledat"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr ""
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#, fuzzy
#: actions/designadminpanel.php:549 lib/designsettings.php:230
msgid "Links"
msgstr "Přihlásit"
msgstr "Odkazy"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -945,7 +942,7 @@ msgstr ""
msgid "Save"
msgstr "Uložit"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -955,7 +952,7 @@ msgstr ""
#: actions/disfavor.php:94
msgid "Add to favorites"
msgstr ""
msgstr "Přidat do oblíbených"
#: actions/doc.php:69
msgid "No such document."
@ -964,7 +961,7 @@ msgstr "Žádný takový dokument."
#: actions/editgroup.php:56
#, php-format
msgid "Edit %s group"
msgstr ""
msgstr "Upravit %s skupinu"
#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
msgid "You must be logged in to create a group."
@ -995,13 +992,12 @@ msgid "Could not create aliases."
msgstr "Nelze uložin informace o obrázku"
#: actions/editgroup.php:269
#, fuzzy
msgid "Options saved."
msgstr "Nastavení uloženo"
msgstr "Nastavení uloženo."
#: actions/emailsettings.php:60
msgid "Email Settings"
msgstr ""
msgstr "Nastavení E-mailu"
#: actions/emailsettings.php:71
#, php-format
@ -1061,7 +1057,7 @@ msgstr ""
#: actions/emailsettings.php:148 actions/smssettings.php:164
msgid "New"
msgstr ""
msgstr "Nový"
#: actions/emailsettings.php:153 actions/imsettings.php:139
#: actions/smssettings.php:169
@ -1244,9 +1240,8 @@ msgid "No notice id"
msgstr "Nové sdělení"
#: actions/file.php:38
#, fuzzy
msgid "No notice"
msgstr "Nové sdělení"
msgstr "Žádné oznámení"
#: actions/file.php:42
msgid "No attachments"
@ -1385,26 +1380,26 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "Nelze aktualizovat uživatele"
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
msgid "Unable to save your design settings!"
msgstr ""
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
#, fuzzy
msgid "Design preferences saved."
msgstr "Nastavení uloženo"
#: actions/grouplogo.php:139 actions/grouplogo.php:192
msgid "Group logo"
msgstr ""
msgstr "Logo skupiny"
#: actions/grouplogo.php:150
#, php-format
@ -1502,7 +1497,7 @@ msgstr ""
#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230
#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
msgid "Groups"
msgstr ""
msgstr "Skupiny"
#: actions/groups.php:64
#, php-format
@ -1712,7 +1707,7 @@ msgstr ""
msgid "Optionally add a personal message to the invitation."
msgstr ""
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "Odeslat"
@ -1794,11 +1789,11 @@ msgstr "Nelze vytvořit OpenID z: %s"
msgid "%s left group %s"
msgstr ""
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Již přihlášen"
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
#, fuzzy
msgid "Invalid or expired token."
msgstr "Neplatný obsah sdělení"
@ -1885,7 +1880,7 @@ msgstr ""
#: actions/newgroup.php:53
msgid "New group"
msgstr ""
msgstr "Nová skupina"
#: actions/newgroup.php:110
msgid "Use this form to create a new group."
@ -2008,8 +2003,8 @@ msgstr "Připojit"
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr ""
@ -2313,9 +2308,8 @@ msgid "Describe yourself and your interests in %d chars"
msgstr "Popiš sebe a své zájmy ve 140 znacích"
#: actions/profilesettings.php:125 actions/register.php:463
#, fuzzy
msgid "Describe yourself and your interests"
msgstr "Popiš sebe a své zájmy ve 140 znacích"
msgstr "Popište sebe a své zájmy"
#: actions/profilesettings.php:127 actions/register.php:465
msgid "Bio"
@ -2345,7 +2339,7 @@ msgstr ""
#: actions/profilesettings.php:144 actions/siteadminpanel.php:307
msgid "Language"
msgstr ""
msgstr "Jazyk"
#: actions/profilesettings.php:145
msgid "Preferred language"
@ -2629,7 +2623,7 @@ msgstr "Chyba v ověřovacím kódu"
#: actions/register.php:112
msgid "Registration successful"
msgstr ""
msgstr "Registrace úspěšná"
#: actions/register.php:114 actions/register.php:502 lib/action.php:455
#: lib/logingroupnav.php:85
@ -2921,9 +2915,8 @@ msgstr ""
#: actions/showgroup.php:274 actions/tagother.php:128
#: actions/userauthorization.php:179 lib/userprofile.php:194
#, fuzzy
msgid "Note"
msgstr "Sdělení"
msgstr "Poznámka"
#: actions/showgroup.php:284 lib/groupeditform.php:184
msgid "Aliases"
@ -3392,7 +3385,7 @@ msgstr ""
#: actions/smssettings.php:306
msgid "No phone number."
msgstr ""
msgstr "Žádné telefonní číslo."
#: actions/smssettings.php:311
msgid "No carrier selected."
@ -3759,7 +3752,7 @@ msgstr ""
#: actions/userauthorization.php:188
msgid "License"
msgstr ""
msgstr "Licence"
#: actions/userauthorization.php:209
msgid "Accept"
@ -4074,9 +4067,8 @@ msgid "Help"
msgstr "Nápověda"
#: lib/action.php:461
#, fuzzy
msgid "Help me!"
msgstr "Nápověda"
msgstr "Pomoci mi!"
#: lib/action.php:464 lib/searchaction.php:127
msgid "Search"
@ -4233,9 +4225,8 @@ msgid "Author"
msgstr ""
#: lib/attachmentlist.php:278
#, fuzzy
msgid "Provider"
msgstr "Profil"
msgstr "Poskytovatel"
#: lib/attachmentnoticesection.php:67
msgid "Notices where this attachment appears"
@ -4382,43 +4373,57 @@ msgstr ""
msgid "Can't turn on notification."
msgstr ""
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "Nelze uložin informace o obrázku"
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Neodeslal jste nám profil"
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Neodeslal jste nám profil"
msgstr[1] "Neodeslal jste nám profil"
msgstr[2] ""
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Vzdálený odběr"
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Vzdálený odběr"
msgstr[1] "Vzdálený odběr"
msgstr[2] ""
#: lib/command.php:636
#: lib/command.php:667
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Neodeslal jste nám profil"
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "Neodeslal jste nám profil"
msgstr[1] "Neodeslal jste nám profil"
msgstr[2] ""
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4437,6 +4442,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4500,11 +4506,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků"
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -4616,9 +4618,8 @@ msgid "Edit %s group properties"
msgstr ""
#: lib/groupnav.php:113
#, fuzzy
msgid "Logo"
msgstr "Odhlásit"
msgstr "Logo"
#: lib/groupnav.php:114
#, php-format
@ -4691,9 +4692,8 @@ msgid "[%s]"
msgstr ""
#: lib/joinform.php:114
#, fuzzy
msgid "Join"
msgstr "Přihlásit"
msgstr "Přidat se"
#: lib/leaveform.php:114
#, fuzzy
@ -4773,9 +4773,9 @@ msgstr ""
"%4$s.\n"
#: lib/mail.php:254
#, fuzzy, php-format
#, php-format
msgid "Location: %s\n"
msgstr "Umístění %s\n"
msgstr "Umístění: %s\n"
#: lib/mail.php:256
#, fuzzy, php-format
@ -4968,7 +4968,7 @@ msgstr ""
msgid "To"
msgstr ""
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
#, fuzzy
msgid "Available characters"
msgstr "6 a více znaků"
@ -4983,11 +4983,11 @@ msgstr "Nové sdělení"
msgid "What's up, %s?"
msgstr "Co se děje %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5077,7 +5077,7 @@ msgstr "Odpovědi"
#: lib/personalgroupnav.php:114
msgid "Favorites"
msgstr ""
msgstr "Oblíbené"
#: lib/personalgroupnav.php:124
msgid "Inbox"
@ -5113,9 +5113,8 @@ msgid "Subscribers"
msgstr "Odběratelé"
#: lib/profileaction.php:157
#, fuzzy
msgid "All subscribers"
msgstr "Odběratelé"
msgstr "Všichni odběratelé"
#: lib/profileaction.php:178
msgid "User ID"
@ -5267,7 +5266,12 @@ msgstr ""
msgid "Not subscribed!"
msgstr "Nepřihlášen!"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Nelze smazat odebírání"
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "Nelze smazat odebírání"
@ -5306,13 +5310,12 @@ msgid "Unsubscribe"
msgstr "Odhlásit"
#: lib/userprofile.php:116
#, fuzzy
msgid "Edit Avatar"
msgstr "Obrázek"
msgstr "Upravit avatar"
#: lib/userprofile.php:236
msgid "User actions"
msgstr ""
msgstr "Akce uživatele"
#: lib/userprofile.php:248
#, fuzzy
@ -5329,7 +5332,7 @@ msgstr ""
#: lib/userprofile.php:273
msgid "Message"
msgstr ""
msgstr "Zpráva"
#: lib/userprofile.php:311
msgid "Moderate"
@ -5395,7 +5398,7 @@ msgstr ""
#: scripts/maildaemon.php:53
msgid "Not a registered user."
msgstr ""
msgstr "Není registrovaný uživatel."
#: scripts/maildaemon.php:57
msgid "Sorry, that is not your incoming email address."

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,6 @@
# Translation of StatusNet to Greek
#
# Author@translatewiki.net: Omnipaedista
# --
# This file is distributed under the same license as the StatusNet package.
#
@ -7,12 +8,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:19:21+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:26:14+0000\n"
"Language-Team: Greek\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: el\n"
"X-Message-Group: out-statusnet\n"
@ -47,7 +48,7 @@ msgstr "Αδύνατη η αποθήκευση του προφίλ."
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
#: lib/subs.php:34 lib/subs.php:116
msgid "No such user."
msgstr ""
msgstr "Κανένας τέτοιος χρήστης."
#: actions/all.php:84
#, fuzzy, php-format
@ -183,7 +184,12 @@ msgstr ""
msgid "Could not save profile."
msgstr "Απέτυχε η αποθήκευση του προφίλ."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "Απέτυχε η ενημέρωση του χρήστη."
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr ""
@ -398,14 +404,14 @@ msgid "%s groups"
msgstr ""
#: actions/apigrouplistall.php:94
#, fuzzy, php-format
#, php-format
msgid "groups on %s"
msgstr "Βρες ομάδες στο site"
msgstr "ομάδες του χρήστη %s"
#: actions/apigrouplist.php:95
#, fuzzy, php-format
#, php-format
msgid "%s's groups"
msgstr "Ομάδες χρηστών"
msgstr "ομάδες των χρηστών %s"
#: actions/apigrouplist.php:103
#, fuzzy, php-format
@ -460,9 +466,9 @@ msgstr ""
#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117
#: actions/grouprss.php:131 actions/userrss.php:90
#, fuzzy, php-format
#, php-format
msgid "%s timeline"
msgstr "Χρονοδιάγραμμα του χρήστη %s"
msgstr "χρονοδιάγραμμα του χρήστη %s"
#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125
#: actions/userrss.php:92
@ -538,9 +544,8 @@ msgstr ""
#: actions/avatarsettings.php:119 actions/avatarsettings.php:194
#: actions/grouplogo.php:251
#, fuzzy
msgid "Avatar settings"
msgstr "Ρυθμίσεις OpenID"
msgstr "Ρυθμίσεις του άβαταρ"
#: actions/avatarsettings.php:126 actions/avatarsettings.php:202
#: actions/grouplogo.php:199 actions/grouplogo.php:259
@ -569,7 +574,7 @@ msgstr ""
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -612,9 +617,8 @@ msgstr "Ρυθμίσεις OpenID"
#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86
#: actions/groupmembers.php:76 actions/grouprss.php:91
#: actions/joingroup.php:76 actions/showgroup.php:121
#, fuzzy
msgid "No nickname"
msgstr "Νέο ψευδώνυμο"
msgstr "Κανένα ψευδώνυμο"
#: actions/blockedfromgroup.php:80 actions/editgroup.php:96
#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97
@ -669,7 +673,7 @@ msgstr ""
#: actions/block.php:143 actions/deletenotice.php:145
#: actions/deleteuser.php:147 actions/groupblock.php:178
msgid "No"
msgstr ""
msgstr "Όχι"
#: actions/block.php:143 actions/deleteuser.php:147
#, fuzzy
@ -737,9 +741,8 @@ msgid "The address \"%s\" has been confirmed for your account."
msgstr ""
#: actions/conversation.php:99
#, fuzzy
msgid "Conversation"
msgstr "Τοποθεσία"
msgstr "Συζήτηση"
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
#: lib/profileaction.php:216 lib/searchgroupnav.php:82
@ -825,106 +828,106 @@ msgstr ""
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
msgid "Invalid logo URL."
msgstr ""
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, fuzzy, php-format
msgid "Theme not available: %s"
msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
#, fuzzy
msgid "Change logo"
msgstr "Αλλάξτε τον κωδικό σας"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
msgid "Site logo"
msgstr ""
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "Αλλαγή"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme"
msgstr "Αλλαγή"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
msgid "Theme for the site."
msgstr ""
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr ""
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr ""
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr ""
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
#, fuzzy
msgid "Change colours"
msgstr "Αλλάξτε τον κωδικό σας"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
#, fuzzy
msgid "Content"
msgstr "Σύνδεση"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
msgid "Sidebar"
msgstr ""
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr ""
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
#, fuzzy
msgid "Links"
msgstr "Σύνδεση"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -934,7 +937,7 @@ msgstr ""
msgid "Save"
msgstr ""
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -1370,19 +1373,19 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "Απέτυχε η ενημέρωση του χρήστη."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
msgid "Unable to save your design settings!"
msgstr ""
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
#, fuzzy
msgid "Design preferences saved."
msgstr "Οι προτιμήσεις αποθηκεύτηκαν"
@ -1688,7 +1691,7 @@ msgstr ""
msgid "Optionally add a personal message to the invitation."
msgstr ""
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr ""
@ -1768,11 +1771,11 @@ msgstr ""
msgid "%s left group %s"
msgstr ""
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Ήδη συνδεδεμένος."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
msgid "Invalid or expired token."
msgstr ""
@ -1979,8 +1982,8 @@ msgstr "Σύνδεση"
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr ""
@ -2969,9 +2972,8 @@ msgid ""
msgstr ""
#: actions/showgroup.php:482
#, fuzzy
msgid "Admins"
msgstr "Διαχειριστής"
msgstr "Διαχειριστές"
#: actions/showmessage.php:81
msgid "No such message."
@ -3192,9 +3194,8 @@ msgid "Use fancy (more readable and memorable) URLs?"
msgstr ""
#: actions/siteadminpanel.php:331
#, fuzzy
msgid "Access"
msgstr "Αποδοχή"
msgstr "Πρόσβαση"
#: actions/siteadminpanel.php:334
msgid "Private"
@ -4317,40 +4318,54 @@ msgstr ""
msgid "Can't turn on notification."
msgstr ""
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "Αδύνατη η αποθήκευση του προφίλ."
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
msgstr[1] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
msgstr[1] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
#: lib/command.php:636
#: lib/command.php:667
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Ομάδες με τα περισσότερα μέλη"
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "Ομάδες με τα περισσότερα μέλη"
msgstr[1] "Ομάδες με τα περισσότερα μέλη"
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4369,6 +4384,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4431,11 +4447,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -4690,12 +4702,12 @@ msgid ""
msgstr ""
#: lib/mail.php:254
#, fuzzy, php-format
#, php-format
msgid "Location: %s\n"
msgstr "Τοποθεσία: %s\n"
#: lib/mail.php:256
#, fuzzy, php-format
#, php-format
msgid "Homepage: %s\n"
msgstr "Αρχική σελίδα: %s\n"
@ -4887,7 +4899,7 @@ msgstr ""
msgid "To"
msgstr ""
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
#, fuzzy
msgid "Available characters"
msgstr "6 ή περισσότεροι χαρακτήρες"
@ -4901,11 +4913,11 @@ msgstr ""
msgid "What's up, %s?"
msgstr ""
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5177,7 +5189,12 @@ msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές
msgid "Not subscribed!"
msgstr "Απέτυχε η συνδρομή."
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Απέτυχε η διαγραφή συνδρομής."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "Απέτυχε η διαγραφή συνδρομής."

View File

@ -9,12 +9,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:19:24+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:26:19+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(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: en-gb\n"
"X-Message-Group: out-statusnet\n"
@ -181,7 +181,12 @@ msgstr "User has no profile."
msgid "Could not save profile."
msgstr "Couldn't save profile."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "Couldn't update user."
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr "Block user failed."
@ -563,7 +568,7 @@ msgstr "Crop"
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -818,106 +823,106 @@ msgstr ""
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "Invalid size."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, fuzzy, php-format
msgid "Theme not available: %s"
msgstr "This page is not available in a "
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
msgid "Change logo"
msgstr "Change logo"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
#, fuzzy
msgid "Site logo"
msgstr "Invite"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "Change"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
msgid "Site theme"
msgstr "Site theme"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
#, fuzzy
msgid "Theme for the site."
msgstr "Logout from the site"
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr ""
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr ""
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr "You can upload a logo image for your group."
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
msgid "Change colours"
msgstr "Change colours"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
#, fuzzy
msgid "Content"
msgstr "Connect"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
#, fuzzy
msgid "Sidebar"
msgstr "Search"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "Text"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
msgid "Links"
msgstr "Links"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -927,7 +932,7 @@ msgstr ""
msgid "Save"
msgstr "Save"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -1365,20 +1370,20 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "Couldn't update user."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: 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 "Unable to save your Twitter settings!"
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
#, fuzzy
msgid "Design preferences saved."
msgstr "Sync preferences saved."
@ -1694,7 +1699,7 @@ msgstr "Personal message"
msgid "Optionally add a personal message to the invitation."
msgstr "Optionally add a personal message to the invitation."
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "Send"
@ -1800,11 +1805,11 @@ msgstr "Could not remove user %s to group %s"
msgid "%s left group %s"
msgstr "%s left group %s"
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Already logged in."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
#, fuzzy
msgid "Invalid or expired token."
msgstr "Invalid notice content"
@ -2016,8 +2021,8 @@ msgstr "Connect"
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr "Not a supported data format."
@ -4387,40 +4392,54 @@ msgstr "Notification on."
msgid "Can't turn on notification."
msgstr "Can't turn on notification."
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "Could not create aliases"
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "You are not subscribed to that profile."
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "You are already subscribed to these users:"
msgstr[1] "You are already subscribed to these users:"
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Could not subscribe other to you."
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Could not subscribe other to you."
msgstr[1] "Could not subscribe other to you."
#: lib/command.php:636
#: lib/command.php:667
#, fuzzy
msgid "You are not a member of any groups."
msgstr "You are not a member of that group."
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "You are not a member of that group."
msgstr[1] "You are not a member of that group."
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4439,6 +4458,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4501,11 +4521,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "You can upload your personal avatar. The maximum file size is %s."
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr "Bad default colour settings: "
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -4971,7 +4987,7 @@ msgstr "Send a direct notice"
msgid "To"
msgstr "To"
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
msgid "Available characters"
msgstr "Available characters"
@ -4984,11 +5000,11 @@ msgstr "Send a notice"
msgid "What's up, %s?"
msgstr "What's up, %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5259,7 +5275,12 @@ msgstr "Could not subscribe other to you."
msgid "Not subscribed!"
msgstr "Not subscribed!"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Couldn't delete subscription."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "Couldn't delete subscription."

View File

@ -11,12 +11,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:19:28+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:26:23+0000\n"
"Language-Team: Spanish\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: es\n"
"X-Message-Group: out-statusnet\n"
@ -188,7 +188,11 @@ msgstr "El usuario no tiene un perfil."
msgid "Could not save profile."
msgstr "No se pudo guardar el perfil."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "¡No puedes bloquearte a tí mismo!"
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr "Falló bloquear usuario."
@ -214,9 +218,9 @@ msgid "Can't send direct messages to users who aren't your friend."
msgstr "No se puede enviar mensajes directos a usuarios que no son tu amigo."
#: actions/apidirectmessage.php:89
#, fuzzy, php-format
#, php-format
msgid "Direct messages from %s"
msgstr "Mensajes directos a %s"
msgstr "Mensajes directos de %s"
#: actions/apidirectmessage.php:93
#, php-format
@ -256,18 +260,16 @@ msgid "No status found with that ID."
msgstr "No se encontró estado para ese ID"
#: actions/apifavoritecreate.php:119
#, fuzzy
msgid "This status is already a favorite!"
msgstr "¡Este aviso ya está en favoritos!"
msgstr "¡Este status ya está en favoritos!"
#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176
msgid "Could not create favorite."
msgstr "No se pudo crear favorito."
#: actions/apifavoritedestroy.php:122
#, fuzzy
msgid "That status is not a favorite!"
msgstr "¡Este aviso no es un favorito!"
msgstr "¡Este status no es un favorito!"
#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87
msgid "Could not delete favorite."
@ -283,27 +285,24 @@ msgid "Could not follow user: %s is already on your list."
msgstr "No puede seguir al usuario: %s ya esta en su lista."
#: actions/apifriendshipsdestroy.php:109
#, fuzzy
msgid "Could not unfollow user: User not found."
msgstr "No puede seguir al usuario. Usuario no encontrado"
msgstr "No se pudo dejar de seguir al usuario. Usuario no encontrado"
#: actions/apifriendshipsdestroy.php:120
msgid "You cannot unfollow yourself!"
msgstr ""
msgstr "¡No puedes dejar de seguirte a ti mismo!"
#: actions/apifriendshipsexists.php:94
msgid "Two user ids or screen_names must be supplied."
msgstr "Deben proveerse dos identificaciones de usuario o nombres en pantalla."
#: actions/apifriendshipsshow.php:135
#, fuzzy
msgid "Could not determine source user."
msgstr "No se pudo acceder a corriente pública."
msgstr "No se pudo determinar el usuario fuente."
#: actions/apifriendshipsshow.php:143
#, fuzzy
msgid "Could not find target user."
msgstr "No se pudo encontrar ningún estado."
msgstr "No se pudo encontrar ningún usuario de destino."
#: actions/apigroupcreate.php:164 actions/editgroup.php:182
#: actions/newgroup.php:126 actions/profilesettings.php:208
@ -311,7 +310,7 @@ msgstr "No se pudo encontrar ningún estado."
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
"El apodo debe tener solamente letras minúsculas y números y no puede tener "
"espacios. "
"espacios."
#: actions/apigroupcreate.php:173 actions/editgroup.php:186
#: actions/newgroup.php:130 actions/profilesettings.php:231
@ -338,9 +337,9 @@ msgid "Full name is too long (max 255 chars)."
msgstr "Tu nombre es demasiado largo (max. 255 carac.)"
#: actions/apigroupcreate.php:213
#, fuzzy, php-format
#, php-format
msgid "Description is too long (max %d chars)."
msgstr "Descripción es demasiado larga (máx. 140 caracteres)."
msgstr "La descripción es demasiado larga (máx. %d caracteres)."
#: actions/apigroupcreate.php:224 actions/editgroup.php:204
#: actions/newgroup.php:148 actions/profilesettings.php:225
@ -352,7 +351,7 @@ msgstr "La ubicación es demasiado larga (máx. 255 caracteres)."
#: actions/newgroup.php:159
#, php-format
msgid "Too many aliases! Maximum %d."
msgstr ""
msgstr "¡Muchos seudónimos! El máximo es %d."
#: actions/apigroupcreate.php:264 actions/editgroup.php:224
#: actions/newgroup.php:168
@ -577,7 +576,7 @@ msgstr "Cortar"
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -840,107 +839,107 @@ msgstr ""
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "Tamaño inválido."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, fuzzy, php-format
msgid "Theme not available: %s"
msgstr "Esta página no está disponible en un "
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
#, fuzzy
msgid "Change logo"
msgstr "Cambiar colores"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
#, fuzzy
msgid "Site logo"
msgstr "Invitar"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "Cambiar"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme"
msgstr "Aviso de sitio"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
#, fuzzy
msgid "Theme for the site."
msgstr "Salir de sitio"
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr ""
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr ""
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr "Puedes cargar una imagen de logo para tu grupo."
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
msgid "Change colours"
msgstr "Cambiar colores"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
msgid "Content"
msgstr "Contenido"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
#, fuzzy
msgid "Sidebar"
msgstr "Buscar"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "Texto"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
msgid "Links"
msgstr "Vínculos"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -950,7 +949,7 @@ msgstr ""
msgid "Save"
msgstr "Guardar"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -1401,20 +1400,20 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "No se pudo actualizar el usuario."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: 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 "¡No se pudo guardar tu configuración de Twitter!"
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
#, fuzzy
msgid "Design preferences saved."
msgstr "Preferencias de sincronización guardadas."
@ -1740,7 +1739,7 @@ msgstr "Mensaje Personal"
msgid "Optionally add a personal message to the invitation."
msgstr "Opcionalmente añada un mensaje personalizado a su invitación."
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "Enviar"
@ -1849,11 +1848,11 @@ msgstr "No se pudo eliminar a usuario %s de grupo %s"
msgid "%s left group %s"
msgstr "%s dejó grupo %s"
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Ya estás conectado."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
#, fuzzy
msgid "Invalid or expired token."
msgstr "El contenido del aviso es inválido"
@ -2071,8 +2070,8 @@ msgstr "Conectarse"
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr "No es un formato de dato soportado"
@ -4507,40 +4506,54 @@ msgstr "Notificación activada."
msgid "Can't turn on notification."
msgstr "No se puede activar notificación."
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "No se pudo crear favorito."
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "No estás suscrito a ese perfil."
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Ya estás suscrito a estos usuarios:"
msgstr[1] "Ya estás suscrito a estos usuarios:"
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "No se pudo suscribir otro a ti."
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "No se pudo suscribir otro a ti."
msgstr[1] "No se pudo suscribir otro a ti."
#: lib/command.php:636
#: lib/command.php:667
#, fuzzy
msgid "You are not a member of any groups."
msgstr "No eres miembro de ese grupo"
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "No eres miembro de este grupo."
msgstr[1] "No eres miembro de este grupo."
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4559,6 +4572,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4620,11 +4634,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "Puedes cargar tu avatar personal."
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -5092,7 +5102,7 @@ msgstr "Enviar un aviso directo"
msgid "To"
msgstr "Para"
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
#, fuzzy
msgid "Available characters"
msgstr "Caracteres disponibles"
@ -5107,11 +5117,11 @@ msgstr "Enviar un aviso"
msgid "What's up, %s?"
msgstr "¿Qué tal, %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5388,7 +5398,12 @@ msgstr "No se pudo suscribir otro a ti."
msgid "Not subscribed!"
msgstr "¡No estás suscrito!"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "No se pudo eliminar la suscripción."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "No se pudo eliminar la suscripción."

View File

@ -9,12 +9,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:19:32+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:26:26+0000\n"
"Language-Team: Finnish\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fi\n"
"X-Message-Group: out-statusnet\n"
@ -188,7 +188,12 @@ msgstr "Käyttäjällä ei ole profiilia."
msgid "Could not save profile."
msgstr "Ei voitu tallentaa profiilia."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "Et voi lopettaa itsesi tilausta!"
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr "Käyttäjän esto epäonnistui."
@ -573,7 +578,7 @@ msgstr "Rajaa"
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -828,107 +833,107 @@ msgstr "Ulkoasu"
msgid "Design settings for this StatusNet site."
msgstr "Ulkoasuasetukset tälle StatusNet palvelulle."
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "Koko ei kelpaa."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, fuzzy, php-format
msgid "Theme not available: %s"
msgstr "Pikaviestin ei ole käytettävissä."
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
#, fuzzy
msgid "Change logo"
msgstr "Vaihda salasanasi"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
#, fuzzy
msgid "Site logo"
msgstr "Kutsu"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "Vaihda"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme"
msgstr "Palvelun ilmoitus"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
#, fuzzy
msgid "Theme for the site."
msgstr "Kirjaudu ulos palvelusta"
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr "Vaihda tautakuva"
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr "Tausta"
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr "Voit ladata ryhmälle logokuvan. Maksimikoko on %s."
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr "On"
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr "Off"
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
msgid "Change colours"
msgstr "Vaihda väriä"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
msgid "Content"
msgstr "Sisältö"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
#, fuzzy
msgid "Sidebar"
msgstr "Haku"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "Teksti"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
msgid "Links"
msgstr "Linkit"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr "Käytä oletusasetuksia"
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -938,7 +943,7 @@ msgstr ""
msgid "Save"
msgstr "Tallenna"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -1373,18 +1378,18 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
msgid "Couldn't update your design."
msgstr "Ei voitu päivittää sinun sivusi ulkoasua."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
msgid "Unable to save your design settings!"
msgstr "Ei voitu tallentaa sinun ulkoasuasetuksia!"
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
msgid "Design preferences saved."
msgstr "Ulkoasuasetukset tallennettu."
@ -1703,7 +1708,7 @@ msgstr "Henkilökohtainen viesti"
msgid "Optionally add a personal message to the invitation."
msgstr "Voit myös lisätä oman viestisi kutsuun"
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "Lähetä"
@ -1808,11 +1813,11 @@ msgstr "Ei voitu poistaa käyttäjää %s ryhmästä %s"
msgid "%s left group %s"
msgstr "%s erosi ryhmästä %s"
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Olet jo kirjautunut sisään."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
#, fuzzy
msgid "Invalid or expired token."
msgstr "Päivityksen sisältö ei kelpaa"
@ -2029,8 +2034,8 @@ msgstr "Yhdistä"
msgid "Only "
msgstr "Vain "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr "Tuo ei ole tuettu tietomuoto."
@ -4435,40 +4440,54 @@ msgstr "Ilmoitukset päällä."
msgid "Can't turn on notification."
msgstr "Ilmoituksia ei voi pistää päälle."
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "Ei voitu lisätä aliasta."
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Et ole tilannut tämän käyttäjän päivityksiä."
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Olet jos tilannut seuraavien käyttäjien päivitykset:"
msgstr[1] "Olet jos tilannut seuraavien käyttäjien päivitykset:"
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Toista ei voitu asettaa tilaamaan sinua."
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Toista ei voitu asettaa tilaamaan sinua."
msgstr[1] "Toista ei voitu asettaa tilaamaan sinua."
#: lib/command.php:636
#: lib/command.php:667
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Sinä et kuulu tähän ryhmään."
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "Sinä et kuulu tähän ryhmään."
msgstr[1] "Sinä et kuulu tähän ryhmään."
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4487,6 +4506,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4551,11 +4571,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s."
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -5025,7 +5041,7 @@ msgstr "Lähetä suora viesti"
msgid "To"
msgstr "Vastaanottaja"
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
msgid "Available characters"
msgstr "Sallitut merkit"
@ -5038,11 +5054,11 @@ msgstr "Lähetä päivitys"
msgid "What's up, %s?"
msgstr "Mitä teet juuri nyt, %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5322,7 +5338,12 @@ msgstr "Toista ei voitu asettaa tilaamaan sinua."
msgid "Not subscribed!"
msgstr "Ei ole tilattu!."
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Ei voitu poistaa tilausta."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "Ei voitu poistaa tilausta."

File diff suppressed because it is too large Load Diff

View File

@ -7,12 +7,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:19:42+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:26:33+0000\n"
"Language-Team: Irish\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ga\n"
"X-Message-Group: out-statusnet\n"
@ -185,7 +185,12 @@ msgstr "O usuario non ten perfil."
msgid "Could not save profile."
msgstr "Non se puido gardar o perfil."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "Non se puido actualizar o usuario."
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr "Bloqueo de usuario fallido."
@ -580,7 +585,7 @@ msgstr ""
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -848,109 +853,109 @@ msgstr ""
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "Tamaño inválido."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, fuzzy, php-format
msgid "Theme not available: %s"
msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas"
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
#, fuzzy
msgid "Change logo"
msgstr "Cambiar contrasinal"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
#, fuzzy
msgid "Site logo"
msgstr "Invitar"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "Modificado"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme"
msgstr "Novo chío"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
msgid "Theme for the site."
msgstr ""
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr ""
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr ""
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr "Podes actualizar a túa información do perfil persoal aquí"
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
#, fuzzy
msgid "Change colours"
msgstr "Cambiar contrasinal"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
#, fuzzy
msgid "Content"
msgstr "Conectar"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
#, fuzzy
msgid "Sidebar"
msgstr "Buscar"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "Texto"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
#, fuzzy
msgid "Links"
msgstr "Lista"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -960,7 +965,7 @@ msgstr ""
msgid "Save"
msgstr "Gardar"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -1410,20 +1415,20 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "Non se puido actualizar o usuario."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: 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 "Non se puideron gardar os teus axustes de Twitter!"
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
#, fuzzy
msgid "Design preferences saved."
msgstr "Preferencias gardadas."
@ -1743,7 +1748,7 @@ msgstr "Mensaxe persoal"
msgid "Optionally add a personal message to the invitation."
msgstr "Opcionalmente engadir unha mensaxe persoal á invitación."
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "Enviar"
@ -1852,11 +1857,11 @@ msgstr "Non podes seguir a este usuario: o Usuario non se atopa."
msgid "%s left group %s"
msgstr ""
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Sesión xa iniciada"
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
#, fuzzy
msgid "Invalid or expired token."
msgstr "Contido do chío inválido"
@ -2072,8 +2077,8 @@ msgstr "Conectar"
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr "Non é un formato de datos soportado."
@ -4528,12 +4533,26 @@ msgstr "Notificación habilitada."
msgid "Can't turn on notification."
msgstr "Non se pode activar a notificación."
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "Non se puido crear o favorito."
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Non estás suscrito a ese perfil"
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Xa estas suscrito a estes usuarios:"
@ -4542,12 +4561,12 @@ msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Outro usuario non se puido suscribir a ti."
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Outro usuario non se puido suscribir a ti."
@ -4556,12 +4575,12 @@ msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
#: lib/command.php:636
#: lib/command.php:667
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Non estás suscrito a ese perfil"
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "Non estás suscrito a ese perfil"
@ -4570,7 +4589,7 @@ msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
#: lib/command.php:652
#: lib/command.php:683
#, fuzzy
msgid ""
"Commands:\n"
@ -4590,6 +4609,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4679,11 +4699,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "Podes actualizar a túa información do perfil persoal aquí"
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -5206,7 +5222,7 @@ msgstr "Eliminar chío"
msgid "To"
msgstr "A"
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
#, fuzzy
msgid "Available characters"
msgstr "6 ou máis caracteres"
@ -5221,11 +5237,11 @@ msgstr "Dar un toque"
msgid "What's up, %s?"
msgstr "¿Que pasa, %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5514,7 +5530,12 @@ msgstr "Outro usuario non se puido suscribir a ti."
msgid "Not subscribed!"
msgstr "Non está suscrito!"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Non se pode eliminar a subscrición."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "Non se pode eliminar a subscrición."

View File

@ -7,12 +7,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:19:46+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:26:36+0000\n"
"Language-Team: Hebrew\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: he\n"
"X-Message-Group: out-statusnet\n"
@ -183,7 +183,12 @@ msgstr "למשתמש אין פרופיל."
msgid "Could not save profile."
msgstr "שמירת הפרופיל נכשלה."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "עידכון המשתמש נכשל."
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr ""
@ -574,7 +579,7 @@ msgstr ""
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -834,109 +839,109 @@ msgstr ""
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "גודל לא חוקי."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, fuzzy, php-format
msgid "Theme not available: %s"
msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל"
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
#, fuzzy
msgid "Change logo"
msgstr "שנה סיסמה"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
#, fuzzy
msgid "Site logo"
msgstr "הודעה חדשה"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "שנה"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme"
msgstr "הודעה חדשה"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
msgid "Theme for the site."
msgstr ""
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr ""
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr ""
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות."
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
#, fuzzy
msgid "Change colours"
msgstr "שנה סיסמה"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
#, fuzzy
msgid "Content"
msgstr "התחבר"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
#, fuzzy
msgid "Sidebar"
msgstr "חיפוש"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "טקסט"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
#, fuzzy
msgid "Links"
msgstr "היכנס"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -946,7 +951,7 @@ msgstr ""
msgid "Save"
msgstr "שמור"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -1388,19 +1393,19 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "עידכון המשתמש נכשל."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
msgid "Unable to save your design settings!"
msgstr ""
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
#, fuzzy
msgid "Design preferences saved."
msgstr "העדפות נשמרו."
@ -1715,7 +1720,7 @@ msgstr ""
msgid "Optionally add a personal message to the invitation."
msgstr ""
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "שלח"
@ -1797,11 +1802,11 @@ msgstr "נכשלה יצירת OpenID מתוך: %s"
msgid "%s left group %s"
msgstr ""
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "כבר מחובר."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
#, fuzzy
msgid "Invalid or expired token."
msgstr "תוכן ההודעה לא חוקי"
@ -2011,8 +2016,8 @@ msgstr "התחבר"
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr ""
@ -4375,40 +4380,54 @@ msgstr ""
msgid "Can't turn on notification."
msgstr ""
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "שמירת מידע התמונה נכשל"
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "לא שלחנו אלינו את הפרופיל הזה"
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "לא שלחנו אלינו את הפרופיל הזה"
msgstr[1] "לא שלחנו אלינו את הפרופיל הזה"
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "הרשמה מרוחקת"
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "הרשמה מרוחקת"
msgstr[1] "הרשמה מרוחקת"
#: lib/command.php:636
#: lib/command.php:667
#, fuzzy
msgid "You are not a member of any groups."
msgstr "לא שלחנו אלינו את הפרופיל הזה"
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "לא שלחנו אלינו את הפרופיל הזה"
msgstr[1] "לא שלחנו אלינו את הפרופיל הזה"
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4427,6 +4446,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4490,11 +4510,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות."
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -4956,7 +4972,7 @@ msgstr ""
msgid "To"
msgstr "אל"
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
#, fuzzy
msgid "Available characters"
msgstr "לפחות 6 אותיות"
@ -4971,11 +4987,11 @@ msgstr "הודעה חדשה"
msgid "What's up, %s?"
msgstr "מה המצב %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5257,7 +5273,12 @@ msgstr ""
msgid "Not subscribed!"
msgstr "לא מנוי!"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "מחיקת המנוי לא הצליחה."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "מחיקת המנוי לא הצליחה."

File diff suppressed because it is too large Load Diff

View File

@ -7,12 +7,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:19:52+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:26:42+0000\n"
"Language-Team: Icelandic\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: is\n"
"X-Message-Group: out-statusnet\n"
@ -184,7 +184,12 @@ msgstr "Notandi hefur enga persónulega síðu."
msgid "Could not save profile."
msgstr "Gat ekki vistað persónulega síðu."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "Gat ekki uppfært notanda."
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr "Mistókst að loka á notanda."
@ -569,7 +574,7 @@ msgstr "Skera af"
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -823,106 +828,106 @@ msgstr ""
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "Ótæk stærð."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, fuzzy, php-format
msgid "Theme not available: %s"
msgstr "Þessi síða er ekki aðgengileg í "
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
#, fuzzy
msgid "Change logo"
msgstr "Breyta"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
#, fuzzy
msgid "Site logo"
msgstr "Bjóða"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "Breyta"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme"
msgstr "Babl vefsíðunnar"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
#, fuzzy
msgid "Theme for the site."
msgstr "Skrá þig út af síðunni"
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr ""
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr ""
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn."
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
msgid "Change colours"
msgstr ""
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
msgid "Content"
msgstr ""
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
msgid "Sidebar"
msgstr ""
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "Texti"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
msgid "Links"
msgstr ""
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -932,7 +937,7 @@ msgstr ""
msgid "Save"
msgstr "Vista"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -1365,18 +1370,18 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
msgid "Couldn't update your design."
msgstr ""
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
msgid "Unable to save your design settings!"
msgstr ""
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
msgid "Design preferences saved."
msgstr ""
@ -1691,7 +1696,7 @@ msgstr "Persónuleg skilaboð"
msgid "Optionally add a personal message to the invitation."
msgstr "Bættu persónulegum skilaboðum við boðskortið ef þú vilt."
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "Senda"
@ -1797,11 +1802,11 @@ msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s"
msgid "%s left group %s"
msgstr "%s gekk úr hópnum %s"
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Þú hefur nú þegar skráð þig inn."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
#, fuzzy
msgid "Invalid or expired token."
msgstr "Ótækt bablinnihald"
@ -2017,8 +2022,8 @@ msgstr ""
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr "Enginn stuðningur við gagnasnið."
@ -4396,40 +4401,54 @@ msgstr "Tilkynningar á."
msgid "Can't turn on notification."
msgstr "Get ekki kveikt á tilkynningum."
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "Gat ekki búið til uppáhald."
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Þú ert ekki áskrifandi."
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Þú ert nú þegar í áskrift að þessum notendum:"
msgstr[1] "Þú ert nú þegar í áskrift að þessum notendum:"
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér."
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Gat ekki leyft öðrum að gerast áskrifandi að þér."
msgstr[1] "Gat ekki leyft öðrum að gerast áskrifandi að þér."
#: lib/command.php:636
#: lib/command.php:667
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Þú ert ekki meðlimur í þessum hópi."
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "Þú ert ekki meðlimur í þessum hópi."
msgstr[1] "Þú ert ekki meðlimur í þessum hópi."
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4448,6 +4467,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4511,11 +4531,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn."
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -4974,7 +4990,7 @@ msgstr "Senda bein skilaboð"
msgid "To"
msgstr "Til"
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
msgid "Available characters"
msgstr "Leyfileg tákn"
@ -4987,11 +5003,11 @@ msgstr "Senda babl"
msgid "What's up, %s?"
msgstr "Hvað er að frétta %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5267,7 +5283,12 @@ msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér."
msgid "Not subscribed!"
msgstr "Ekki í áskrift!"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Gat ekki eytt áskrift."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "Gat ekki eytt áskrift."

View File

@ -8,12 +8,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:19:56+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:26:45+0000\n"
"Language-Team: Italian\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: it\n"
"X-Message-Group: out-statusnet\n"
@ -185,7 +185,12 @@ msgstr "L'utente non ha un profilo."
msgid "Could not save profile."
msgstr "Impossibile salvare il profilo."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "Impossibile aggiornare l'utente."
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr "Blocco dell'utente non riuscito."
@ -577,7 +582,7 @@ msgstr "Ritaglia"
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -838,110 +843,110 @@ msgstr ""
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "Dimensione non valida."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, fuzzy, php-format
msgid "Theme not available: %s"
msgstr "Questa pagina non è disponibile in un "
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
#, fuzzy
msgid "Change logo"
msgstr "Modifica la tua password"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
#, fuzzy
msgid "Site logo"
msgstr "Invita"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "Modifica"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme"
msgstr "Messaggio del sito"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
#, fuzzy
msgid "Theme for the site."
msgstr "Sconnettiti dal sito"
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr ""
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr ""
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr "Puoi caricare un'immagine per il logo del tuo gruppo."
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
#, fuzzy
msgid "Change colours"
msgstr "Modifica la tua password"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
#, fuzzy
msgid "Content"
msgstr "Connetti"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
#, fuzzy
msgid "Sidebar"
msgstr "Ricerca"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "Testo"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
#, fuzzy
msgid "Links"
msgstr "Elenco"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -951,7 +956,7 @@ msgstr ""
msgid "Save"
msgstr "Salva"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -1400,20 +1405,20 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "Impossibile aggiornare l'utente."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: 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 "Impossibile salvare le tue impostazioni di Twitter!"
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
#, fuzzy
msgid "Design preferences saved."
msgstr "Preferenze di sincronizzazione salvate."
@ -1736,7 +1741,7 @@ msgstr "Messaggio personale"
msgid "Optionally add a personal message to the invitation."
msgstr "Puoi aggiungere un messaggio personale agli inviti."
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "Invia"
@ -1842,11 +1847,11 @@ msgstr "Impossibile rimuovere l'utente %s dal gruppo %s"
msgid "%s left group %s"
msgstr "%s ha lasciato il gruppo %s"
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Accesso già effettuato."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
#, fuzzy
msgid "Invalid or expired token."
msgstr "Contenuto del messaggio non valido"
@ -2060,8 +2065,8 @@ msgstr "Connetti"
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr "Non è un formato di dati supportato."
@ -4466,40 +4471,54 @@ msgstr "Notifiche attivate."
msgid "Can't turn on notification."
msgstr "Impossibile attivare le notifiche."
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "Impossibile creare preferito."
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Non sei abbonato a quel profilo."
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Sei già abbonato a questi utenti:"
msgstr[1] "Sei già abbonato a questi utenti:"
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Impossibile abbonare altri a te."
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Impossibile abbonare altri a te."
msgstr[1] "Impossibile abbonare altri a te."
#: lib/command.php:636
#: lib/command.php:667
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Non sei un membro di quel gruppo."
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "Non sei un membro di quel gruppo."
msgstr[1] "Non sei un membro di quel gruppo."
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4518,6 +4537,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4582,11 +4602,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "Qui puoi caricare la tua immagine personale."
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -5050,7 +5066,7 @@ msgstr "Invia un messaggio diretto"
msgid "To"
msgstr "A"
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
msgid "Available characters"
msgstr "Caratteri disponibili"
@ -5063,11 +5079,11 @@ msgstr "Invia un messaggio"
msgid "What's up, %s?"
msgstr "Cosa succede, %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5347,7 +5363,12 @@ msgstr "Impossibile abbonare altri a te."
msgid "Not subscribed!"
msgstr "Non abbonato!"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Impossibile eliminare l'abbonamento."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "Impossibile eliminare l'abbonamento."

View File

@ -9,12 +9,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:19:59+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:26:48+0000\n"
"Language-Team: Japanese\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ja\n"
"X-Message-Group: out-statusnet\n"
@ -189,7 +189,12 @@ msgstr "プロファイルがありません。"
msgid "Could not save profile."
msgstr "プロファイルを保存できません"
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "ユーザを更新できません"
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr "ユーザのブロックに失敗しました。"
@ -581,7 +586,7 @@ msgstr ""
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -839,109 +844,109 @@ msgstr ""
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "不正なサイズ。"
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, fuzzy, php-format
msgid "Theme not available: %s"
msgstr "このページはあなたが承認したメディアタイプでは利用できません。"
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
#, fuzzy
msgid "Change logo"
msgstr "パスワードの変更"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
#, fuzzy
msgid "Site logo"
msgstr "新しい通知"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "変更"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme"
msgstr "新しい通知"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
#, fuzzy
msgid "Theme for the site."
msgstr "サイトからログアウト"
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr ""
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr ""
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr "長すぎます。通知は最大 140 字までです。"
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
#, fuzzy
msgid "Change colours"
msgstr "パスワードの変更"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
msgid "Content"
msgstr "内容"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
#, fuzzy
msgid "Sidebar"
msgstr "検索"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr ""
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
#, fuzzy
msgid "Links"
msgstr "ログイン"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -951,7 +956,7 @@ msgstr ""
msgid "Save"
msgstr "保存"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -1396,19 +1401,19 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "ユーザを更新できません"
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
msgid "Unable to save your design settings!"
msgstr ""
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
#, fuzzy
msgid "Design preferences saved."
msgstr "設定が保存されました。"
@ -1722,7 +1727,7 @@ msgstr ""
msgid "Optionally add a personal message to the invitation."
msgstr ""
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "送る"
@ -1830,11 +1835,11 @@ msgstr "OpenIDを作成できません : %s"
msgid "%s left group %s"
msgstr ""
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "既にログインしています。"
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
#, fuzzy
msgid "Invalid or expired token."
msgstr "不正な通知内容"
@ -2040,8 +2045,8 @@ msgstr "内容種別 "
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr ""
@ -4417,37 +4422,51 @@ msgstr ""
msgid "Can't turn on notification."
msgstr ""
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "アバターを保存できません"
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "そのプロファイルは送信されていません。"
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "そのプロファイルは送信されていません。"
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "リモートサブスクライブ"
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "リモートサブスクライブ"
#: lib/command.php:636
#: lib/command.php:667
#, fuzzy
msgid "You are not a member of any groups."
msgstr "そのプロファイルは送信されていません。"
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "そのプロファイルは送信されていません。"
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4466,6 +4485,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4530,11 +4550,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "長すぎます。通知は最大 140 字までです。"
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -4989,7 +5005,7 @@ msgstr "直接通知を送る"
msgid "To"
msgstr ""
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
msgid "Available characters"
msgstr "利用可能な文字"
@ -5002,11 +5018,11 @@ msgstr "通知を送る"
msgid "What's up, %s?"
msgstr "最近どう %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5284,7 +5300,12 @@ msgstr ""
msgid "Not subscribed!"
msgstr "購読していません!"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "サブスクリプションを削除できません"
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "サブスクリプションを削除できません"

View File

@ -7,12 +7,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:20:03+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:26:51+0000\n"
"Language-Team: Korean\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ko\n"
"X-Message-Group: out-statusnet\n"
@ -184,7 +184,12 @@ msgstr "이용자가 프로필을 가지고 있지 않습니다."
msgid "Could not save profile."
msgstr "프로필을 저장 할 수 없습니다."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "사용자를 업데이트 할 수 없습니다."
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr "사용자 차단에 실패했습니다."
@ -576,7 +581,7 @@ msgstr "자르기"
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -836,110 +841,110 @@ msgstr ""
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "옳지 않은 크기"
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, fuzzy, php-format
msgid "Theme not available: %s"
msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다."
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
#, fuzzy
msgid "Change logo"
msgstr "비밀번호 바꾸기"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
#, fuzzy
msgid "Site logo"
msgstr "초대"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "변환"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme"
msgstr "사이트 공지"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
#, fuzzy
msgid "Theme for the site."
msgstr "이 사이트로부터 로그아웃"
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr ""
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr ""
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다."
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
#, fuzzy
msgid "Change colours"
msgstr "비밀번호 바꾸기"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
#, fuzzy
msgid "Content"
msgstr "연결"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
#, fuzzy
msgid "Sidebar"
msgstr "검색"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "문자"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
#, fuzzy
msgid "Links"
msgstr "로그인"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -949,7 +954,7 @@ msgstr ""
msgid "Save"
msgstr "저장"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -1393,20 +1398,20 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "사용자를 업데이트 할 수 없습니다."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: 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 "트위터 환경설정을 저장할 수 없습니다."
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
#, fuzzy
msgid "Design preferences saved."
msgstr "싱크설정이 저장되었습니다."
@ -1722,7 +1727,7 @@ msgstr "개인적인 메시지"
msgid "Optionally add a personal message to the invitation."
msgstr "초대장에 메시지 첨부하기."
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "보내기"
@ -1823,11 +1828,11 @@ msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다."
msgid "%s left group %s"
msgstr "%s가 그룹%s를 떠났습니다."
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "이미 로그인 하셨습니다."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
#, fuzzy
msgid "Invalid or expired token."
msgstr "옳지 않은 통지 내용"
@ -2040,8 +2045,8 @@ msgstr "연결"
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr "지원하는 형식의 데이터가 아닙니다."
@ -4428,37 +4433,51 @@ msgstr "알림이 켜졌습니다."
msgid "Can't turn on notification."
msgstr "알림을 켤 수 없습니다."
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "좋아하는 게시글을 생성할 수 없습니다."
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "당신은 이 프로필에 구독되지 않고있습니다."
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "당신은 다음 사용자를 이미 구독하고 있습니다."
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "다른 사람을 구독 하실 수 없습니다."
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "다른 사람을 구독 하실 수 없습니다."
#: lib/command.php:636
#: lib/command.php:667
#, fuzzy
msgid "You are not a member of any groups."
msgstr "당신은 해당 그룹의 멤버가 아닙니다."
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "당신은 해당 그룹의 멤버가 아닙니다."
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4477,6 +4496,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4541,11 +4561,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "당신의 개인적인 아바타를 업로드할 수 있습니다."
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -5001,7 +5017,7 @@ msgstr "직접 메시지 보내기"
msgid "To"
msgstr "에게"
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
msgid "Available characters"
msgstr "사용 가능한 글자"
@ -5014,11 +5030,11 @@ msgstr "게시글 보내기"
msgid "What's up, %s?"
msgstr "뭐하세요? %?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5298,7 +5314,12 @@ msgstr "다른 사람을 구독 하실 수 없습니다."
msgid "Not subscribed!"
msgstr "구독하고 있지 않습니다!"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "예약 구독을 삭제 할 수 없습니다."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "예약 구독을 삭제 할 수 없습니다."

View File

@ -8,12 +8,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:20:07+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:26:55+0000\n"
"Language-Team: Macedonian\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: mk\n"
"X-Message-Group: out-statusnet\n"
@ -184,7 +184,12 @@ msgstr "Корисникот нема профил."
msgid "Could not save profile."
msgstr "Профилот не може да се сними."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "Корисникот не може да се освежи/"
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr ""
@ -574,7 +579,7 @@ msgstr ""
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -676,7 +681,7 @@ msgstr ""
#: actions/block.php:143 actions/deletenotice.php:145
#: actions/deleteuser.php:147 actions/groupblock.php:178
msgid "No"
msgstr ""
msgstr "Не"
#: actions/block.php:143 actions/deleteuser.php:147
#, fuzzy
@ -832,109 +837,109 @@ msgstr ""
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "Погрешна големина."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, fuzzy, php-format
msgid "Theme not available: %s"
msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате."
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
#, fuzzy
msgid "Change logo"
msgstr "Промени ја лозинката"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
#, fuzzy
msgid "Site logo"
msgstr "Ново известување"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "Промени"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme"
msgstr "Ново известување"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
msgid "Theme for the site."
msgstr ""
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr ""
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr ""
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr "Ова е предолго. Максималната должина е 140 знаци."
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
#, fuzzy
msgid "Change colours"
msgstr "Промени ја лозинката"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
#, fuzzy
msgid "Content"
msgstr "Поврзи се"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
#, fuzzy
msgid "Sidebar"
msgstr "Барај"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr ""
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
#, fuzzy
msgid "Links"
msgstr "Пријави се"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -944,7 +949,7 @@ msgstr ""
msgid "Save"
msgstr "Сними"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -1384,19 +1389,19 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "Корисникот не може да се освежи/"
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
msgid "Unable to save your design settings!"
msgstr ""
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
#, fuzzy
msgid "Design preferences saved."
msgstr "Преференциите се снимени."
@ -1712,7 +1717,7 @@ msgstr ""
msgid "Optionally add a personal message to the invitation."
msgstr ""
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "Испрати"
@ -1794,11 +1799,11 @@ msgstr "OpenID формуларот не може да се креира:%s"
msgid "%s left group %s"
msgstr ""
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Веќе сте најавени."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
#, fuzzy
msgid "Invalid or expired token."
msgstr "Неправилна содржина за известување"
@ -2010,8 +2015,8 @@ msgstr "Поврзи се"
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr ""
@ -4386,40 +4391,54 @@ msgstr ""
msgid "Can't turn on notification."
msgstr ""
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "Информациите за аватарот не може да се снимат"
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Не ни го испративте тој профил."
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Не ни го испративте тој профил."
msgstr[1] "Не ни го испративте тој профил."
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Оддалечена претплата"
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Оддалечена претплата"
msgstr[1] "Оддалечена претплата"
#: lib/command.php:636
#: lib/command.php:667
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Не ни го испративте тој профил."
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "Не ни го испративте тој профил."
msgstr[1] "Не ни го испративте тој профил."
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4438,6 +4457,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4501,11 +4521,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "Ова е предолго. Максималната должина е 140 знаци."
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -4968,7 +4984,7 @@ msgstr ""
msgid "To"
msgstr ""
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
#, fuzzy
msgid "Available characters"
msgstr "6 или повеќе знаци"
@ -4983,11 +4999,11 @@ msgstr "Ново известување"
msgid "What's up, %s?"
msgstr "Што има %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5266,7 +5282,12 @@ msgstr ""
msgid "Not subscribed!"
msgstr "Не сте претплатени!"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Претплата не може да се избрише."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "Претплата не може да се избрише."

View File

@ -7,12 +7,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:20:10+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:26:58+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(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: no\n"
"X-Message-Group: out-statusnet\n"
@ -183,7 +183,12 @@ msgstr ""
msgid "Could not save profile."
msgstr "Klarte ikke å lagre profil."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "Klarte ikke å oppdatere bruker."
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr ""
@ -572,7 +577,7 @@ msgstr ""
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -828,108 +833,108 @@ msgstr ""
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "Ugyldig størrelse"
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, php-format
msgid "Theme not available: %s"
msgstr ""
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
#, fuzzy
msgid "Change logo"
msgstr "Endre passordet ditt"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
msgid "Site logo"
msgstr ""
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "Endre"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme"
msgstr "Endre"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
msgid "Theme for the site."
msgstr ""
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr ""
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr ""
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr ""
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
#, fuzzy
msgid "Change colours"
msgstr "Endre passordet ditt"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
#, fuzzy
msgid "Content"
msgstr "Koble til"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
#, fuzzy
msgid "Sidebar"
msgstr "Søk"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "Tekst"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
#, fuzzy
msgid "Links"
msgstr "Logg inn"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -939,7 +944,7 @@ msgstr ""
msgid "Save"
msgstr "Lagre"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -1374,19 +1379,19 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "Klarte ikke å oppdatere bruker."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
msgid "Unable to save your design settings!"
msgstr ""
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
msgid "Design preferences saved."
msgstr ""
@ -1689,7 +1694,7 @@ msgstr ""
msgid "Optionally add a personal message to the invitation."
msgstr ""
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "Send"
@ -1791,11 +1796,11 @@ msgstr "Klarte ikke å oppdatere bruker."
msgid "%s left group %s"
msgstr ""
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Allerede innlogget."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
msgid "Invalid or expired token."
msgstr ""
@ -1998,8 +2003,8 @@ msgstr ""
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr ""
@ -4330,40 +4335,54 @@ msgstr ""
msgid "Can't turn on notification."
msgstr ""
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "Klarte ikke å lagre avatar-informasjonen"
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Ikke autorisert."
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Ikke autorisert."
msgstr[1] "Ikke autorisert."
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Svar til %s"
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Svar til %s"
msgstr[1] "Svar til %s"
#: lib/command.php:636
#: lib/command.php:667
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Du er allerede logget inn!"
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "Du er allerede logget inn!"
msgstr[1] "Du er allerede logget inn!"
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4382,6 +4401,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4444,11 +4464,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -4910,7 +4926,7 @@ msgstr ""
msgid "To"
msgstr ""
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
#, fuzzy
msgid "Available characters"
msgstr "6 eller flere tegn"
@ -4924,11 +4940,11 @@ msgstr ""
msgid "What's up, %s?"
msgstr ""
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5204,7 +5220,12 @@ msgstr ""
msgid "Not subscribed!"
msgstr "Alle abonnementer"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Klarte ikke å lagre avatar-informasjonen"
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr ""

View File

@ -9,12 +9,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:20:26+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:27:06+0000\n"
"Language-Team: Dutch\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nl\n"
"X-Message-Group: out-statusnet\n"
@ -192,7 +192,11 @@ msgstr "Deze gebruiker heeft geen profiel."
msgid "Could not save profile."
msgstr "Het was niet mogelijk het profiel op te slaan."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "U zichzelf niet blokkeren!"
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr "Het blokkeren van de gebruiker is mislukt."
@ -582,7 +586,7 @@ msgstr "Uitsnijden"
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -839,45 +843,45 @@ msgstr "Ontwerp"
msgid "Design settings for this StatusNet site."
msgstr "Instellingen voor de vormgeving van deze StatusNet-website."
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
msgid "Invalid logo URL."
msgstr "De logo-URL is ongeldig."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, php-format
msgid "Theme not available: %s"
msgstr "De vormgeving is niet beschikbaar: %s"
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
msgid "Change logo"
msgstr "Logo wijzigen"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
msgid "Site logo"
msgstr "Websitelogo"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
msgid "Change theme"
msgstr "Vormgeving wijzigen"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
msgid "Site theme"
msgstr "Vormgeving website"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
msgid "Theme for the site."
msgstr "Mogelijke vormgevingen voor deze website."
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr "Achtergrondafbeelding wijzigen"
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr "Achtergrond"
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@ -886,55 +890,55 @@ msgstr ""
"Hier kunt u een achtergrondafbeelding voor de website uploaden. De maximale "
"bestandsgrootte is %1$s."
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr "Aan"
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr "Uit"
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr "Achtergrondafbeelding inschakelen of uitschakelen."
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr "Achtergrondafbeelding naast elkaar"
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
msgid "Change colours"
msgstr "Kleuren wijzigen"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
msgid "Content"
msgstr "Inhoud"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
msgid "Sidebar"
msgstr "Menubalk"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "Tekst"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
msgid "Links"
msgstr "Verwijzingen"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr "Standaardinstellingen gebruiken"
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr "Standaardontwerp toepassen"
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr "Standaardinstellingen toepassen"
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -944,7 +948,7 @@ msgstr "Standaardinstellingen toepassen"
msgid "Save"
msgstr "Opslaan"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr "Ontwerp opslaan"
@ -1391,18 +1395,18 @@ msgstr ""
"De vormgeving van uw groep aanpassen met een achtergrondafbeeldingen en een "
"kleurenpalet van uw keuze."
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
msgid "Couldn't update your design."
msgstr "Het was niet mogelijk uw ontwerp bij te werken."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
msgid "Unable to save your design settings!"
msgstr "Het was niet mogelijk om uw ontwerpinstellingen op te slaan!"
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
msgid "Design preferences saved."
msgstr "De ontwerpvoorkeuren zijn opgeslagen."
@ -1732,7 +1736,7 @@ msgstr "Persoonlijk bericht"
msgid "Optionally add a personal message to the invitation."
msgstr "Persoonlijk bericht bij de uitnodiging (optioneel)."
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "Verzenden"
@ -1838,11 +1842,11 @@ msgstr "De gebruiker %s kon niet uit de groet %s verwijderd worden"
msgid "%s left group %s"
msgstr "%s heeft de groep %s verlaten"
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "U bent al aangemeld."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
msgid "Invalid or expired token."
msgstr "Het token is ongeldig of verlopen."
@ -2058,8 +2062,8 @@ msgstr "inhoudstype "
msgid "Only "
msgstr "Alleen "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr "Geen ondersteund gegevensformaat."
@ -2854,11 +2858,10 @@ msgid "Invalid profile URL (bad format)"
msgstr "Ongeldige profiel-URL (foutieve opmaak)"
#: actions/remotesubscribe.php:168
#, fuzzy
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"De URL voor het profiel is niet geldig (het is geen YADIS-document of er is "
"geen of ongeldige XRDS gedefinieerd)."
"De URL is niet geldig (het is geen YADIS-document of er een ongeldige XRDS "
"gedefinieerd)."
#: actions/remotesubscribe.php:176
msgid "Thats a local profile! Login to subscribe."
@ -4492,37 +4495,51 @@ msgstr "Notificaties ingeschakeld."
msgid "Can't turn on notification."
msgstr "Het is niet mogelijk de notificatie uit te schakelen."
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "Het was niet mogelijk de aliassen aan te maken."
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
msgid "You are not subscribed to anyone."
msgstr "U bent op geen enkele gebruiker geabonneerd."
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "U bent geabonneerd op deze gebruiker:"
msgstr[1] "U bent geabonneerd op deze gebruikers:"
#: lib/command.php:614
#: lib/command.php:645
msgid "No one is subscribed to you."
msgstr "Niemand heeft een abonnenment op u."
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Deze gebruiker is op u geabonneerd:"
msgstr[1] "Deze gebruikers zijn op u geabonneerd:"
#: lib/command.php:636
#: lib/command.php:667
msgid "You are not a member of any groups."
msgstr "U bent lid van geen enkele groep."
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "U bent lid van deze groep:"
msgstr[1] "U bent lid van deze groepen:"
#: lib/command.php:652
#: lib/command.php:683
#, fuzzy
msgid ""
"Commands:\n"
@ -4542,6 +4559,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4579,7 +4597,6 @@ msgstr ""
"reply #<mededeling-ID> - antwoorden op de mededeling met het aangegeven ID\n"
"reply <gebruiker> - antwoorden op de laatste mededeling van gebruiker\n"
"join <groep> - lid worden van groep\n"
"login - verwijzing opvragen naar de webpagina voor aanmelden\n"
"drop <groep> - groepslidmaatschap opzeggen\n"
"stats - uw statistieken opvragen\n"
"stop - zelfde als 'off'\n"
@ -4642,11 +4659,7 @@ msgstr ""
"U kunt een persoonlijke achtergrondafbeelding uploaden. De maximale "
"bestandsgrootte is 2 megabyte."
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr "Foutieve standaard kleurinstellingen: "
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr "Het standaardontwerp is weer ingesteld."
@ -5187,7 +5200,7 @@ msgstr "Directe mededeling verzenden"
msgid "To"
msgstr "Aan"
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
msgid "Available characters"
msgstr "Beschikbare tekens"
@ -5200,11 +5213,11 @@ msgstr "Mededeling verzenden"
msgid "What's up, %s?"
msgstr "Hallo, %s."
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr "Toevoegen"
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr "Bestand toevoegen"
@ -5472,7 +5485,11 @@ msgstr "Het was niet mogelijk om een ander op u te laten abonneren"
msgid "Not subscribed!"
msgstr "Niet geabonneerd!"
#: lib/subs.php:140
#: lib/subs.php:133
msgid "Couldn't delete self-subscription."
msgstr "Het was niet mogelijk het abonnement op uzelf te verwijderen."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "Kon abonnement niet verwijderen."

View File

@ -7,12 +7,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:20:13+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:27:01+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(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: nn\n"
"X-Message-Group: out-statusnet\n"
@ -184,7 +184,12 @@ msgstr "Brukaren har inga profil."
msgid "Could not save profile."
msgstr "Kan ikkje lagra profil."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "Kan ikkje oppdatera brukar."
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr "Blokkering av brukar feila."
@ -574,7 +579,7 @@ msgstr "Skaler"
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -835,110 +840,110 @@ msgstr ""
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "Ugyldig storleik."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, fuzzy, php-format
msgid "Theme not available: %s"
msgstr "Denne sida er ikkje tilgjengleg i eit"
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
#, fuzzy
msgid "Change logo"
msgstr "Endra passordet ditt"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
#, fuzzy
msgid "Site logo"
msgstr "Invitér"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "Endra"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme"
msgstr "Statusmelding"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
#, fuzzy
msgid "Theme for the site."
msgstr "Logg ut or sida"
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr ""
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr ""
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr "Du kan lasta opp ein logo for gruppa."
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
#, fuzzy
msgid "Change colours"
msgstr "Endra passordet ditt"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
#, fuzzy
msgid "Content"
msgstr "Kopla til"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
#, fuzzy
msgid "Sidebar"
msgstr "Søk"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "Tekst"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
#, fuzzy
msgid "Links"
msgstr "Logg inn"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -948,7 +953,7 @@ msgstr ""
msgid "Save"
msgstr "Lagra"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -1393,20 +1398,20 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "Kan ikkje oppdatera brukar."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: 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 "Klarte ikkje å lagra Twitter-innstillingane dine!"
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
#, fuzzy
msgid "Design preferences saved."
msgstr "Synkroniserings innstillingar blei lagra."
@ -1724,7 +1729,7 @@ msgstr "Personleg melding"
msgid "Optionally add a personal message to the invitation."
msgstr "Eventuelt legg til ei personleg melding til invitasjonen."
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "Send"
@ -1825,11 +1830,11 @@ msgstr "Kunne ikkje fjerne %s fra %s gruppa "
msgid "%s left group %s"
msgstr "%s forlot %s gruppa"
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Allereie logga inn."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
#, fuzzy
msgid "Invalid or expired token."
msgstr "Ugyldig notisinnhald"
@ -2045,8 +2050,8 @@ msgstr "Kopla til"
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr "Ikkje eit støtta dataformat."
@ -4445,40 +4450,54 @@ msgstr "Notifikasjon på."
msgid "Can't turn on notification."
msgstr "Kan ikkje slå på notifikasjon."
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "Kunne ikkje lagre favoritt."
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Du tingar ikkje oppdateringar til den profilen."
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Du tingar allereie oppdatering frå desse brukarane:"
msgstr[1] "Du tingar allereie oppdatering frå desse brukarane:"
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Kan ikkje tinga andre til deg."
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Kan ikkje tinga andre til deg."
msgstr[1] "Kan ikkje tinga andre til deg."
#: lib/command.php:636
#: lib/command.php:667
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Du er ikkje medlem av den gruppa."
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "Du er ikkje medlem av den gruppa."
msgstr[1] "Du er ikkje medlem av den gruppa."
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4497,6 +4516,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4561,11 +4581,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "Du kan laste opp ein personleg avatar."
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -5028,7 +5044,7 @@ msgstr "Send ei direkte melding"
msgid "To"
msgstr "Til"
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
msgid "Available characters"
msgstr "Tilgjenglege teikn"
@ -5041,11 +5057,11 @@ msgstr "Send ei melding"
msgid "What's up, %s?"
msgstr "Kva skjer, %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5325,7 +5341,12 @@ msgstr "Kan ikkje tinga andre til deg."
msgid "Not subscribed!"
msgstr "Ikkje tinga."
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Kan ikkje sletta tinging."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "Kan ikkje sletta tinging."

View File

@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:20:31+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:27:09+0000\n"
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
"Language-Team: Polish <pl@li.org>\n"
"MIME-Version: 1.0\n"
@ -18,7 +18,7 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pl\n"
"X-Message-Group: out-statusnet\n"
@ -194,7 +194,12 @@ msgstr "Użytkownik nie posiada profilu."
msgid "Could not save profile."
msgstr "Nie można zapisać profilu."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "Nie można zablokować siebie."
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr "Zablokowanie użytkownika nie powiodło się."
@ -576,7 +581,7 @@ msgstr "Przytnij"
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -828,100 +833,100 @@ msgstr "Wygląd"
msgid "Design settings for this StatusNet site."
msgstr "Ustawienia wyglądu tej strony StatusNet."
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
msgid "Invalid logo URL."
msgstr "Nieprawidłowy adres URL logo."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, php-format
msgid "Theme not available: %s"
msgstr "Motyw nie jest dostępny: %s"
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
msgid "Change logo"
msgstr "Zmień logo"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
msgid "Site logo"
msgstr "Logo strony"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
msgid "Change theme"
msgstr "Zmień motyw"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
msgid "Site theme"
msgstr "Motyw strony"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
msgid "Theme for the site."
msgstr "Motyw strony."
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr "Zmień obraz tła"
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr "Tło"
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr "Można wysłać obraz tła dla strony. Maksymalny rozmiar pliku to %1$s."
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr "Włączone"
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr "Wyłączone"
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr "Włącz lub wyłącz obraz tła."
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr "Kafelkowy obraz tła"
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
msgid "Change colours"
msgstr "Zmień kolory"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
msgid "Content"
msgstr "Zawartość"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
msgid "Sidebar"
msgstr "Panel boczny"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "Tekst"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
msgid "Links"
msgstr "Odnośniki"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr "Użycie domyślnych"
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr "Przywróć domyślny wygląd"
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr "Przywróć domyślne ustawienia"
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -931,7 +936,7 @@ msgstr "Przywróć domyślne ustawienia"
msgid "Save"
msgstr "Zapisz"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr "Zapisz wygląd"
@ -1368,18 +1373,18 @@ msgid ""
"palette of your choice."
msgstr "Dostosuj wygląd grupy za pomocą wybranego obrazu tła i palety kolorów."
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
msgid "Couldn't update your design."
msgstr "Nie można zaktualizować wyglądu."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
msgid "Unable to save your design settings!"
msgstr "Nie można zapisać ustawień wyglądu."
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
msgid "Design preferences saved."
msgstr "Zapisano preferencje wyglądu."
@ -1703,7 +1708,7 @@ msgstr "Osobista wiadomość"
msgid "Optionally add a personal message to the invitation."
msgstr "Opcjonalnie dodaj osobistą wiadomość do zaproszenia."
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "Wyślij"
@ -1809,11 +1814,11 @@ msgstr "Nie można usunąć użytkownika %s z grupy %s"
msgid "%s left group %s"
msgstr "Użytkownik %s opuścił grupę %s"
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Jesteś już zalogowany."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
msgid "Invalid or expired token."
msgstr "Nieprawidłowy lub wygasły token."
@ -2029,8 +2034,8 @@ msgstr "typ zawartości "
msgid "Only "
msgstr "Tylko "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr "To nie jest obsługiwany format danych."
@ -2818,7 +2823,7 @@ msgstr "Nieprawidłowy adres URL profilu (błędny format)"
#, fuzzy
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"To nie jest prawidłowy adres URL profilu (brak dokumentu YADIS lub określono "
"Nieprawidłowy adres URL profilu (brak dokumentu YADIS lub określono "
"nieprawidłowe XRDS)."
#: actions/remotesubscribe.php:176
@ -4432,40 +4437,54 @@ msgstr "Włączono powiadomienia."
msgid "Can't turn on notification."
msgstr "Nie można włączyć powiadomień."
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "Nie można utworzyć aliasów."
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
msgid "You are not subscribed to anyone."
msgstr "Nie subskrybujesz nikogo."
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Subskrybujesz tę osobę:"
msgstr[1] "Subskrybujesz te osoby:"
msgstr[2] "Subskrybujesz te osoby:"
#: lib/command.php:614
#: lib/command.php:645
msgid "No one is subscribed to you."
msgstr "Nikt cię nie subskrybuje."
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Ta osoba cię subskrybuje:"
msgstr[1] "Te osoby cię subskrybują:"
msgstr[2] "Te osoby cię subskrybują:"
#: lib/command.php:636
#: lib/command.php:667
msgid "You are not a member of any groups."
msgstr "Nie jesteś członkiem żadnej grupy."
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "Jesteś członkiem tej grupy:"
msgstr[1] "Jesteś członkiem tych grup:"
msgstr[2] "Jesteś członkiem tych grup:"
#: lib/command.php:652
#: lib/command.php:683
#, fuzzy
msgid ""
"Commands:\n"
@ -4485,6 +4504,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4521,9 +4541,8 @@ msgstr ""
"reply #<identyfikator_wpisu> - odpowiada na wpis z podanym identyfikatorem\n"
"reply <pseudonim> - odpowiada na ostatni wpis użytkownika\n"
"join <grupa> - dołącza do grupy\n"
"login - uzyskuje odnośnik do zalogowania się w interfejsie WWW\n"
"drop <grupa> - opuszcza grupę\n"
"stats - uzyskuje twoje statystyki\n"
"stats - uzyskuje statystyki\n"
"stop - to samo co \"off\"\n"
"quit - to samo co \"off\"\n"
"sub <pseudonim> - to samo co \"follow\"\n"
@ -4531,10 +4550,10 @@ msgstr ""
"last <pseudonim> - to samo co \"get\"\n"
"on <pseudonim> - jeszcze nie zaimplementowano.\n"
"off <pseudonim> - jeszcze nie zaimplementowano.\n"
"nudge <pseudonim> - jeszcze nie zaimplementowano.\n"
"nudge <pseudonim> - przypomina użytkownikowi o aktualizacji.\n"
"invite <numer telefonu> - jeszcze nie zaimplementowano.\n"
"track <słowo> - jeszcze nie zaimplementowano.\n"
"untrack <słowo> - jeszcze nie zaimplementowano.\n"
"track <wyraz> - jeszcze nie zaimplementowano.\n"
"untrack <wyraz> - jeszcze nie zaimplementowano.\n"
"track off - jeszcze nie zaimplementowano.\n"
"untrack all - jeszcze nie zaimplementowano.\n"
"tracks - jeszcze nie zaimplementowano.\n"
@ -4581,11 +4600,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "Można wysłać osobisty obraz tła. Maksymalny rozmiar pliku to 2 MB."
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr "Błędne domyślne ustawienia koloru: "
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr "Przywrócono domyślny wygląd."
@ -5123,7 +5138,7 @@ msgstr "Wyślij bezpośredni wpis"
msgid "To"
msgstr "Do"
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
msgid "Available characters"
msgstr "Dostępne znaki"
@ -5136,11 +5151,11 @@ msgstr "Wyślij wpis"
msgid "What's up, %s?"
msgstr "Co słychać, %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr "Załącz"
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr "Załącz plik"
@ -5407,7 +5422,12 @@ msgstr "Nie można subskrybować innych do ciebie."
msgid "Not subscribed!"
msgstr "Niesubskrybowane."
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Nie można usunąć autosubskrypcji."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "Nie można usunąć subskrypcji."

View File

@ -8,12 +8,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:20:35+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:27:13+0000\n"
"Language-Team: Portuguese\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt\n"
"X-Message-Group: out-statusnet\n"
@ -96,8 +96,8 @@ msgid ""
"You can try to [nudge %s](../%s) from his profile or [post something to his "
"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)."
msgstr ""
"Tente [acotovelar o(a) %s](../%s) a partir do perfil ou [publicar qualquer "
"coisa à sua atenção](%%%%action.newnotice%%%%?status_textarea=%s)."
"Tente [acotovelar %s](../%s) a partir do perfil ou [publicar qualquer coisa "
"à sua atenção](%%%%action.newnotice%%%%?status_textarea=%s)."
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
#, php-format
@ -105,8 +105,8 @@ msgid ""
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
"post a notice to his or her attention."
msgstr ""
"Podia [registar uma conta](%%%%action.register%%%%) e depois acotovelar o(a) "
"%s ou publicar uma nota à sua atenção."
"Podia [registar uma conta](%%%%action.register%%%%) e depois acotovelar %s "
"ou publicar uma nota à sua atenção."
#: actions/all.php:165
msgid "You and friends"
@ -115,7 +115,7 @@ msgstr "Você e amigos"
#: actions/allrss.php:119 actions/apitimelinefriends.php:121
#, php-format
msgid "Updates from %1$s and friends on %2$s!"
msgstr "Actualizações do(a) %1$s e amigos no %2$s!"
msgstr "Actualizações de %1$s e amigos no %2$s!"
#: actions/apiaccountratelimitstatus.php:70
#: actions/apiaccountupdatedeliverydevice.php:93
@ -187,7 +187,11 @@ msgstr "Utilizador não tem perfil."
msgid "Could not save profile."
msgstr "Não foi possível gravar o perfil."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Os utilizadores não podem bloquear-se a si próprios!"
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr "Bloqueio do utilizador falhou."
@ -216,7 +220,7 @@ msgstr ""
#: actions/apidirectmessage.php:89
#, php-format
msgid "Direct messages from %s"
msgstr "Mensagens directas do(a) %s"
msgstr "Mensagens directas de %s"
#: actions/apidirectmessage.php:93
#, php-format
@ -396,7 +400,7 @@ msgstr "Não foi possível remover %s do grupo %s."
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
#, php-format
msgid "%s groups"
msgstr "Grupos do(a) %s"
msgstr "Grupos de %s"
#: actions/apigrouplistall.php:94
#, php-format
@ -549,7 +553,7 @@ msgstr "Original"
#: actions/avatarsettings.php:141 actions/avatarsettings.php:214
#: actions/grouplogo.php:210 actions/grouplogo.php:271
msgid "Preview"
msgstr "Antever"
msgstr "Antevisão"
#: actions/avatarsettings.php:148 lib/deleteuserform.php:66
#: lib/noticelist.php:550
@ -568,7 +572,7 @@ msgstr "Cortar"
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -822,45 +826,45 @@ msgstr "Design"
msgid "Design settings for this StatusNet site."
msgstr "Configurações do design deste site StatusNet."
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
msgid "Invalid logo URL."
msgstr "URL do logótipo inválida."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, php-format
msgid "Theme not available: %s"
msgstr "Tema não está disponível: %s"
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
msgid "Change logo"
msgstr "Alterar logótipo"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
msgid "Site logo"
msgstr "Logótipo do site"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
msgid "Change theme"
msgstr "Alterar tema"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
msgid "Site theme"
msgstr "Tema do site"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
msgid "Theme for the site."
msgstr "O tema para o site."
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr "Alterar imagem de fundo"
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr "Imagem de fundo"
msgstr "Fundo"
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@ -869,55 +873,55 @@ msgstr ""
"Pode carregar uma imagem de fundo para o site. O tamanho máximo do ficheiro "
"é %1$s."
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
msgstr "Ligar"
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
msgstr "Desligar"
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
msgstr "Ligar ou desligar a imagem de fundo."
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr "Repetir imagem de fundo em mosaico"
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
msgid "Change colours"
msgstr "Alterar cores"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
msgid "Content"
msgstr "Conteúdo"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
msgid "Sidebar"
msgstr "Barra lateral"
msgstr "Lateral"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "Texto"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
msgid "Links"
msgstr "Ligações"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr "Usar predefinições"
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr "Repor designs predefinidos"
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr "Repor predefinição"
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -927,7 +931,7 @@ msgstr "Repor predefinição"
msgid "Save"
msgstr "Gravar"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr "Gravar o design"
@ -1201,7 +1205,7 @@ msgstr ""
#: lib/personalgroupnav.php:115
#, php-format
msgid "%s's favorite notices"
msgstr "Notas favoritas do(a) %s"
msgstr "Notas favoritas de %s"
#: actions/favoritesrss.php:115
#, php-format
@ -1369,18 +1373,18 @@ msgstr ""
"Personalize o aspecto do seu grupo com uma imagem de fundo e uma paleta de "
"cores à sua escolha."
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
msgid "Couldn't update your design."
msgstr "Não foi possível actualizar o design."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
msgid "Unable to save your design settings!"
msgstr "Não foi possível actualizar as suas configurações do design!"
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
msgid "Design preferences saved."
msgstr "Preferências do design foram gravadas."
@ -1453,8 +1457,8 @@ msgid ""
"Search for groups on %%site.name%% by their name, location, or description. "
"Separate the terms by spaces; they must be 3 characters or more."
msgstr ""
"Procure grupos em %%site.name%% pelo seu nome, localização ou descrição. "
"Separe os termos de busca com espaços; precisam de ter 3 ou mais caracteres."
"Procure grupos neste site pesquisando o nome, localização ou descrição. Os "
"termos de busca devem ter 3 ou mais caracteres e ser separados por espaços."
#: actions/groupsearch.php:58
msgid "Group search"
@ -1631,7 +1635,8 @@ msgstr "Caixa de entrada de %s"
#: actions/inbox.php:115
msgid "This is your inbox, which lists your incoming private messages."
msgstr ""
"Esta é a sua caixa de entrada, que apresenta as mensagens privadas recebidas."
"Esta é a sua caixa de entrada, que apresenta as mensagens privadas que "
"recebeu."
#: actions/invite.php:39
msgid "Invites have been disabled."
@ -1704,9 +1709,9 @@ msgstr "Mensagem pessoal"
#: actions/invite.php:194
msgid "Optionally add a personal message to the invitation."
msgstr "Pode optar por acrescentar uma mensagem pessoal ao convite."
msgstr "Pode optar por acrescentar uma mensagem pessoal ao convite"
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "Enviar"
@ -1811,11 +1816,11 @@ msgstr "Não foi possível remover o utilizador %s do grupo %s"
msgid "%s left group %s"
msgstr "%s deixou o grupo %s"
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Sessão já foi iniciada."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
msgid "Invalid or expired token."
msgstr "Chave inválida ou expirada."
@ -1958,8 +1963,8 @@ msgid ""
"Search for notices on %%site.name%% by their contents. Separate search terms "
"by spaces; they must be 3 characters or more."
msgstr ""
"Procure notas em %%site.name%% pelo seu conteúdo. Separe os termos de busca "
"com espaços; precisam de ter 3 ou mais caracteres."
"Procure notas neste site pesquisando o seu conteúdo. Os termos de busca "
"devem ter 3 ou mais caracteres e ser separados por espaços."
#: actions/noticesearch.php:78
msgid "Text search"
@ -2028,10 +2033,10 @@ msgstr "tipo de conteúdo "
#: actions/oembed.php:160
msgid "Only "
msgstr ""
msgstr "Apenas "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr "Formato de dados não suportado."
@ -2061,15 +2066,15 @@ msgstr "Compactar URLs com"
#: actions/othersettings.php:117
msgid "Automatic shortening service to use."
msgstr "Serviço de compactação automático a utilizar."
msgstr "Serviço de compactação automática que será usado"
#: actions/othersettings.php:122
msgid "View profile designs"
msgstr "Ver designs de perfis"
msgstr "Ver o design dos perfis"
#: actions/othersettings.php:123
msgid "Show or hide profile designs."
msgstr "Mostrar ou esconder designs de perfis"
msgstr "Mostrar ou esconder o design dos perfis"
#: actions/othersettings.php:153
msgid "URL shortening service is too long (max 50 chars)."
@ -2088,7 +2093,7 @@ msgstr "Caixa de saída de %s"
#: actions/outbox.php:116
msgid "This is your outbox, which lists private messages you have sent."
msgstr ""
"Esta é a sua caixa de saída, que apresenta as mensagens privadas enviadas."
"Esta é a sua caixa de saída, que apresenta as mensagens privadas que enviou."
#: actions/passwordsettings.php:58
msgid "Change password"
@ -2258,8 +2263,8 @@ msgid ""
"Search for people on %%site.name%% by their name, location, or interests. "
"Separate the terms by spaces; they must be 3 characters or more."
msgstr ""
"Procure pessoas em %%site.name%% pelo seu nome, localidade ou interesses. "
"Separe os termos de busca com espaços; precisam de ter 3 ou mais caracteres."
"Procure pessoas neste site pesquisando o nome, localidade ou interesses. Os "
"termos de busca devem ter 3 ou mais caracteres e ser separados por espaços."
#: actions/peoplesearch.php:58
msgid "People search"
@ -2316,7 +2321,8 @@ msgstr "Página de acolhimento"
#: actions/profilesettings.php:117 actions/register.php:454
msgid "URL of your homepage, blog, or profile on another site"
msgstr "URL da uma página sua, blogue ou perfil noutro sítio na internet"
msgstr ""
"URL da sua página de acolhimento, blogue ou perfil noutro site na internet"
#: actions/profilesettings.php:122 actions/register.php:460
#, php-format
@ -2708,7 +2714,7 @@ msgstr "Repita a palavra-chave acima. Obrigatório."
#: actions/register.php:437 actions/register.php:441
#: actions/siteadminpanel.php:283 lib/accountsettingsaction.php:120
msgid "Email"
msgstr "Correio electrónico"
msgstr "Correio"
#: actions/register.php:438 actions/register.php:442
msgid "Used only for updates, announcements, and password recovery"
@ -2753,7 +2759,8 @@ msgid ""
"\n"
"Thanks for signing up and we hope you enjoy using this service."
msgstr ""
"Parabéns, %s! Bem-vindo(a) ao %%%%site.name%%%%. A partir daqui, pode...\n"
"Parabéns, %s! Bem-vindo(a) ao site %%%%site.name%%%%. A partir daqui, "
"pode...\n"
"\n"
"* Visitar o [seu perfil](%s) e enviar a primeira mensagem.\n"
"* Adicionar um [endereço Jabber/GTalk](%%%%action.imsettings%%%%) de forma a "
@ -2821,11 +2828,10 @@ msgid "Invalid profile URL (bad format)"
msgstr "URL de perfil inválido (formato incorrecto)"
#: actions/remotesubscribe.php:168
#, fuzzy
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"URL de perfil não é válida (nenhum documento Yadis ou nenhum XRDS inválido "
"definidos)."
"URL do perfil não é válida (não há um documento Yadis, ou foi definido um "
"XRDS inválido)."
#: actions/remotesubscribe.php:176
msgid "Thats a local profile! Login to subscribe."
@ -3041,7 +3047,7 @@ msgid ""
"their life and interests. [Join now](%%%%action.register%%%%) to become part "
"of this group and many more! ([Read more](%%%%doc.help%%%%))"
msgstr ""
"**%s** é um grupo de utilizadores em %%%%site.name%%%%, um serviço de "
"**%s** é um grupo de utilizadores no site %%%%site.name%%%%, um serviço de "
"[microblogues](http://en.wikipedia.org/wiki/Micro-blogging) baseado na "
"aplicação de Software Livre [StatusNet](http://status.net/). Os membros "
"deste grupo partilham mensagens curtas acerca das suas vidas e interesses. "
@ -3056,7 +3062,7 @@ msgid ""
"[StatusNet](http://status.net/) tool. Its members share short messages about "
"their life and interests. "
msgstr ""
"**%s** é um grupo de utilizadores em %%%%site.name%%%%, um serviço de "
"**%s** é um grupo de utilizadores no site %%%%site.name%%%%, um serviço de "
"[microblogues](http://en.wikipedia.org/wiki/Micro-blogging) baseado na "
"aplicação de Software Livre [StatusNet](http://status.net/). Os membros "
"deste grupo partilham mensagens curtas acerca das suas vidas e interesses. "
@ -3152,7 +3158,7 @@ msgid ""
"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to "
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
msgstr ""
"**%s** tem uma conta em %%%%site.name%%%%, um serviço de [microblogues]"
"**%s** tem uma conta no site %%%%site.name%%%%, um serviço de [microblogues]"
"(http://en.wikipedia.org/wiki/Micro-blogging) baseado na aplicação de "
"Software Livre [StatusNet](http://status.net/). [Registe-se agora](%%%%"
"action.register%%%%) para seguir as notas de **%s** e de muitos mais! "
@ -3165,7 +3171,7 @@ msgid ""
"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
"[StatusNet](http://status.net/) tool. "
msgstr ""
"**%s** tem uma conta em %%%%site.name%%%%, um serviço de [microblogues]"
"**%s** tem uma conta no site %%%%site.name%%%%, um serviço de [microblogues]"
"(http://en.wikipedia.org/wiki/Micro-blogging) baseado na aplicação de "
"Software Livre [StatusNet](http://status.net/). "
@ -3914,7 +3920,7 @@ msgstr "Tipo de imagem incorrecto para o avatar da URL %s."
#: actions/userbyid.php:70
msgid "No id."
msgstr ""
msgstr "Nenhuma identificação."
#: actions/userdesignsettings.php:76 lib/designsettings.php:65
msgid "Profile design"
@ -4141,7 +4147,7 @@ msgstr "Ajudem-me!"
#: lib/action.php:464 lib/searchaction.php:127
msgid "Search"
msgstr "Pesquisar"
msgstr "Pesquisa"
#: lib/action.php:464
msgid "Search for people or text"
@ -4181,7 +4187,7 @@ msgstr "Privacidade"
#: lib/action.php:737
msgid "Source"
msgstr "Fonte"
msgstr "Código"
#: lib/action.php:739
msgid "Contact"
@ -4201,8 +4207,8 @@ msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site."
"broughtby%%](%%site.broughtbyurl%%). "
msgstr ""
"**%%site.name%%*** é um serviço de microblogues disponibilizado por [%%site."
"broughtby%%](%%site.broughtbyurl%%)."
"**%%site.name%%** é um serviço de microblogues disponibilizado por [%%site."
"broughtby%%](%%site.broughtbyurl%%). "
#: lib/action.php:774
#, php-format
@ -4226,7 +4232,7 @@ msgstr "Licença de conteúdos do site"
#: lib/action.php:799
msgid "All "
msgstr ""
msgstr "Tudo "
#: lib/action.php:804
msgid "license."
@ -4404,7 +4410,7 @@ msgstr "Introduza o nome do utilizador para subscrever"
#: lib/command.php:502
#, php-format
msgid "Subscribed to %s"
msgstr "Subscreveu o(a) %s"
msgstr "Subscreveu %s"
#: lib/command.php:523
msgid "Specify the name of the user to unsubscribe from"
@ -4413,7 +4419,7 @@ msgstr "Introduza o nome do utilizador para deixar de subscrever"
#: lib/command.php:530
#, php-format
msgid "Unsubscribed from %s"
msgstr "Deixou de subscrever o(a) %s"
msgstr "Deixou de subscrever %s"
#: lib/command.php:548 lib/command.php:571
msgid "Command not yet implemented."
@ -4435,37 +4441,51 @@ msgstr "Notificação ligada."
msgid "Can't turn on notification."
msgstr "Não foi possível ligar a notificação."
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "Não foi possível criar cognomes."
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
msgid "You are not subscribed to anyone."
msgstr "Não subscreveu ninguém."
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Subscreve esta pessoa:"
msgstr[1] "Subscreve estas pessoas:"
#: lib/command.php:614
#: lib/command.php:645
msgid "No one is subscribed to you."
msgstr "Ninguém subscreve as suas notas."
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Esta pessoa subscreve as suas notas:"
msgstr[1] "Estas pessoas subscrevem as suas notas:"
#: lib/command.php:636
#: lib/command.php:667
msgid "You are not a member of any groups."
msgstr "Não está em nenhum grupo."
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "Está no grupo:"
msgstr[1] "Está nos grupos:"
#: lib/command.php:652
#: lib/command.php:683
#, fuzzy
msgid ""
"Commands:\n"
@ -4485,6 +4505,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4520,7 +4541,6 @@ msgstr ""
"reply #<id_da_nota> - responder à nota com esta identificação\n"
"reply <alcunha> - responder à última nota do utilizador\n"
"join <grupo> - juntar-se ao grupo\n"
"login - Receber uma ligação para iniciar sessão na interface web\n"
"drop <grupo> - afastar-se do grupo\n"
"stats - receber as suas estatísticas\n"
"stop - o mesmo que 'off'\n"
@ -4582,11 +4602,7 @@ msgstr ""
"Pode carregar uma imagem de fundo pessoal. O tamanho máximo do ficheiro é "
"2MB."
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr "Configurações inadequadas das cores por omissão: "
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr "Predefinições do design repostas"
@ -5124,7 +5140,7 @@ msgstr "Enviar uma nota directa"
msgid "To"
msgstr "Para"
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
msgid "Available characters"
msgstr "Caracteres disponíveis"
@ -5137,11 +5153,11 @@ msgstr "Enviar uma nota"
msgid "What's up, %s?"
msgstr "Novidades, %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr "Anexar"
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr "Anexar um ficheiro"
@ -5408,7 +5424,11 @@ msgstr "Não foi possível que outro o subscrevesse."
msgid "Not subscribed!"
msgstr "Não subscrito!"
#: lib/subs.php:140
#: lib/subs.php:133
msgid "Couldn't delete self-subscription."
msgstr "Não foi possível apagar a auto-subscrição."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "Não foi possível apagar a subscrição."

View File

@ -9,12 +9,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:20:38+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:27:16+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(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: pt-br\n"
"X-Message-Group: out-statusnet\n"
@ -184,7 +184,12 @@ msgstr "O usuário não tem perfil."
msgid "Could not save profile."
msgstr "Não foi possível salvar o perfil."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "Não foi possível atualizar o usuário."
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr "Não foi possível bloquear o usuário."
@ -254,16 +259,14 @@ msgid "No status found with that ID."
msgstr "Não foi encontrado nenhum status com esse ID."
#: actions/apifavoritecreate.php:119
#, fuzzy
msgid "This status is already a favorite!"
msgstr "Essa mensagem já é uma favorita!"
msgstr "Esta mensagem já é favorita!"
#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176
msgid "Could not create favorite."
msgstr "Não foi possível criar a favorita."
#: actions/apifavoritedestroy.php:122
#, fuzzy
msgid "That status is not a favorite!"
msgstr "Essa mensagem não é uma favorita!"
@ -573,7 +576,7 @@ msgstr "Cortar"
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -833,51 +836,51 @@ msgstr ""
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "Tamanho inválido."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, fuzzy, php-format
msgid "Theme not available: %s"
msgstr "Esta página não está disponível em um "
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
#, fuzzy
msgid "Change logo"
msgstr "Altere a sua senha"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
#, fuzzy
msgid "Site logo"
msgstr "Convidar"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "Alterar"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme"
msgstr "Nova mensagem"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
#, fuzzy
msgid "Theme for the site."
msgstr "Sair deste site"
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr "Alterar imagem de plano de fundo."
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr ""
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@ -886,58 +889,58 @@ msgstr ""
"Você pode enviar uma imagem de plano de fundo para o site. O tamanho máximo "
"do arquivo é %l$s"
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr "Ligado"
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
#, fuzzy
msgid "Change colours"
msgstr "Altere a sua senha"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
msgid "Content"
msgstr "Conteúdo"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
#, fuzzy
msgid "Sidebar"
msgstr "Procurar"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "Texto"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
#, fuzzy
msgid "Links"
msgstr "Lista"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr "Usar o padrão."
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -947,7 +950,7 @@ msgstr ""
msgid "Save"
msgstr "Salvar"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -1395,20 +1398,20 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "Não foi possível atualizar o usuário."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: 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 "Não foi possível salvar suas configurações do Twitter!"
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
#, fuzzy
msgid "Design preferences saved."
msgstr "As preferências de sincronização foram salvas."
@ -1734,7 +1737,7 @@ msgstr "Mensagem pessoal"
msgid "Optionally add a personal message to the invitation."
msgstr "Você pode, opcionalmente, adicionar uma mensagem pessoal ao convite."
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "Enviar"
@ -1847,11 +1850,11 @@ msgstr "Não é possível acompanhar o usuário: Usuário não encontrado."
msgid "%s left group %s"
msgstr ""
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Já está logado."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
#, fuzzy
msgid "Invalid or expired token."
msgstr "O conteúdo da mensagem é inválido"
@ -2069,8 +2072,8 @@ msgstr ""
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr "Formato de dados não suportado."
@ -4495,40 +4498,54 @@ msgstr "Notificação ligada."
msgid "Can't turn on notification."
msgstr "Não é possível ligar a notificação."
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "Não foi possível criar a favorita."
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Você não está assinando esse perfil."
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Você já está assinando esses usuários:"
msgstr[1] "Você já está assinando esses usuários:"
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Não foi possível fazer com que o outros o sigam."
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Não foi possível fazer com que o outros o sigam."
msgstr[1] "Não foi possível fazer com que o outros o sigam."
#: lib/command.php:636
#: lib/command.php:667
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Você não está assinando esse perfil."
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "Você não é membro deste grupo."
msgstr[1] "Você não é membro deste grupo."
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4547,6 +4564,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4611,11 +4629,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "Você pode enviar seu avatar pessoal. O tamanho máximo do arquivo é %s"
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -5080,7 +5094,7 @@ msgstr "Enviar uma mensagem direta"
msgid "To"
msgstr "Para"
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
msgid "Available characters"
msgstr "Caracteres disponíveis"
@ -5093,11 +5107,11 @@ msgstr "Enviar uma mensagem"
msgid "What's up, %s?"
msgstr "E aí, %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5378,7 +5392,12 @@ msgstr "Não foi possível fazer com que o outros o sigam."
msgid "Not subscribed!"
msgstr "Não é seguido!"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Não foi possível excluir a assinatura."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "Não foi possível excluir a assinatura."

View File

@ -10,12 +10,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:20:42+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:27:20+0000\n"
"Language-Team: Russian\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ru\n"
"X-Message-Group: out-statusnet\n"
@ -190,7 +190,11 @@ msgstr "У пользователя нет профиля."
msgid "Could not save profile."
msgstr "Не удаётся сохранить профиль."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Вы не можете заблокировать самого себя!"
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr "Неудача при блокировке пользователя."
@ -577,7 +581,7 @@ msgstr "Обрезать"
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -829,45 +833,45 @@ msgstr "Оформление"
msgid "Design settings for this StatusNet site."
msgstr "Настройки оформления для этого сайта StatusNet."
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
msgid "Invalid logo URL."
msgstr "Неверный URL логотипа."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, php-format
msgid "Theme not available: %s"
msgstr "Тема не доступна: %s"
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
msgid "Change logo"
msgstr "Изменить логотип"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
msgid "Site logo"
msgstr "Логотип сайта"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
msgid "Change theme"
msgstr "Изменить тему"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
msgid "Site theme"
msgstr "Тема сайта"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
msgid "Theme for the site."
msgstr "Тема для сайта."
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr "Изменение фонового изображения"
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr "Фон"
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@ -876,55 +880,55 @@ msgstr ""
"Вы можете загрузить фоновое изображение для сайта. Максимальный размер файла "
"составляет %1$s."
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr "Включить"
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr "Отключить"
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr "Включить или отключить показ фонового изображения."
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr "Растянуть фоновое изображение"
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
msgid "Change colours"
msgstr "Изменение цветовой гаммы"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
msgid "Content"
msgstr "Содержание"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
msgid "Sidebar"
msgstr "Боковая панель"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "Текст"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
msgid "Links"
msgstr "Ссылки"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr "Использовать значения по умолчанию"
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr "Восстановить оформление по умолчанию"
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr "Восстановить значения по умолчанию"
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -934,7 +938,7 @@ msgstr "Восстановить значения по умолчанию"
msgid "Save"
msgstr "Сохранить"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr "Сохранить оформление"
@ -1381,18 +1385,18 @@ msgstr ""
"Настройте внешний вид группы, установив фоновое изображение и цветовую гамму "
"на ваш выбор."
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
msgid "Couldn't update your design."
msgstr "Не удаётся обновить ваше оформление."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
msgid "Unable to save your design settings!"
msgstr "Не удаётся сохранить ваши настройки оформления!"
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
msgid "Design preferences saved."
msgstr "Настройки оформления сохранены."
@ -1719,7 +1723,7 @@ msgstr "Личное сообщение"
msgid "Optionally add a personal message to the invitation."
msgstr "Можно добавить к приглашению личное сообщение."
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "ОК"
@ -1825,11 +1829,11 @@ msgstr "Не удаётся удалить пользователя %s из гр
msgid "%s left group %s"
msgstr "%s покинул группу %s"
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Вы уже авторизовались."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
msgid "Invalid or expired token."
msgstr "Неверный или устаревший ключ."
@ -2043,8 +2047,8 @@ msgstr "тип содержимого "
msgid "Only "
msgstr "Только "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr "Неподдерживаемый формат данных."
@ -2830,11 +2834,8 @@ msgid "Invalid profile URL (bad format)"
msgstr "Неверный URL профиля (плохой формат)"
#: actions/remotesubscribe.php:168
#, fuzzy
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"Неверный URL профиля (не YADIS-документ либо не указан или указан неверный "
"XRDS)."
msgstr "Неправильный URL-профиль (нет YADIS-документа, либо неверный XRDS)."
#: actions/remotesubscribe.php:176
msgid "Thats a local profile! Login to subscribe."
@ -4450,40 +4451,54 @@ msgstr "Есть оповещение."
msgid "Can't turn on notification."
msgstr "Есть оповещение."
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "Не удаётся создать алиасы."
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
msgid "You are not subscribed to anyone."
msgstr "Вы ни на кого не подписаны."
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Вы подписаны на этих людей:"
msgstr[1] "Вы подписаны на этих людей:"
msgstr[2] "Вы подписаны на этих людей:"
#: lib/command.php:614
#: lib/command.php:645
msgid "No one is subscribed to you."
msgstr "Никто не подписан на вас."
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Эти люди подписались на вас:"
msgstr[1] "Эти люди подписались на вас:"
msgstr[2] "Эти люди подписались на вас:"
#: lib/command.php:636
#: lib/command.php:667
msgid "You are not a member of any groups."
msgstr "Вы не состоите ни в одной группе."
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "Вы являетесь участником следующих групп:"
msgstr[1] "Вы являетесь участником следующих групп:"
msgstr[2] "Вы являетесь участником следующих групп:"
#: lib/command.php:652
#: lib/command.php:683
#, fuzzy
msgid ""
"Commands:\n"
@ -4503,6 +4518,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4538,7 +4554,6 @@ msgstr ""
"reply #<notice_id> — ответить на запись с заданным id\n"
"reply <nickname> — ответить на последнюю запись пользователя\n"
"join <group> — присоединиться к группе\n"
"login — получить ссылку на вход в веб-интерфейс\n"
"drop <group> — покинуть группу\n"
"stats — получить свою статистику\n"
"stop — то же, что и 'off'\n"
@ -4600,11 +4615,7 @@ msgstr ""
"Вы можете загрузить собственное фоновое изображение. Максимальный размер "
"файла составляет 2МБ."
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr "Плохие настройки цвета по умолчанию: "
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr "Оформление по умолчанию восстановлено."
@ -5141,7 +5152,7 @@ msgstr "Послать прямую запись"
msgid "To"
msgstr "Для"
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
msgid "Available characters"
msgstr "6 или больше знаков"
@ -5154,11 +5165,11 @@ msgstr "Послать запись"
msgid "What's up, %s?"
msgstr "Что нового, %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr "Прикрепить"
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr "Прикрепить файл"
@ -5425,7 +5436,11 @@ msgstr "Не удаётся подписать других на вашу лен
msgid "Not subscribed!"
msgstr "Не подписаны!"
#: lib/subs.php:140
#: lib/subs.php:133
msgid "Couldn't delete self-subscription."
msgstr "Невозможно удалить самоподписку."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "Не удаётся удалить подписку."

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+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"
@ -176,7 +176,11 @@ msgstr ""
msgid "Could not save profile."
msgstr ""
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr ""
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr ""
@ -555,7 +559,7 @@ msgstr ""
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -800,100 +804,100 @@ msgstr ""
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
msgid "Invalid logo URL."
msgstr ""
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, php-format
msgid "Theme not available: %s"
msgstr ""
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
msgid "Change logo"
msgstr ""
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
msgid "Site logo"
msgstr ""
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
msgid "Change theme"
msgstr ""
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
msgid "Site theme"
msgstr ""
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
msgid "Theme for the site."
msgstr ""
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr ""
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr ""
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr ""
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
msgid "Change colours"
msgstr ""
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
msgid "Content"
msgstr ""
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
msgid "Sidebar"
msgstr ""
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr ""
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
msgid "Links"
msgstr ""
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -903,7 +907,7 @@ msgstr ""
msgid "Save"
msgstr ""
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -1325,18 +1329,18 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
msgid "Couldn't update your design."
msgstr ""
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
msgid "Unable to save your design settings!"
msgstr ""
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
msgid "Design preferences saved."
msgstr ""
@ -1632,7 +1636,7 @@ msgstr ""
msgid "Optionally add a personal message to the invitation."
msgstr ""
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr ""
@ -1712,11 +1716,11 @@ msgstr ""
msgid "%s left group %s"
msgstr ""
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr ""
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
msgid "Invalid or expired token."
msgstr ""
@ -1917,8 +1921,8 @@ msgstr ""
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr ""
@ -4176,37 +4180,51 @@ msgstr ""
msgid "Can't turn on notification."
msgstr ""
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, php-format
msgid "Could not create login token for %s"
msgstr ""
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
msgid "You are not subscribed to anyone."
msgstr ""
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] ""
msgstr[1] ""
#: lib/command.php:614
#: lib/command.php:645
msgid "No one is subscribed to you."
msgstr ""
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] ""
msgstr[1] ""
#: lib/command.php:636
#: lib/command.php:667
msgid "You are not a member of any groups."
msgstr ""
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] ""
msgstr[1] ""
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4225,6 +4243,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4285,11 +4304,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -4733,7 +4748,7 @@ msgstr ""
msgid "To"
msgstr ""
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
msgid "Available characters"
msgstr ""
@ -4746,11 +4761,11 @@ msgstr ""
msgid "What's up, %s?"
msgstr ""
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5017,7 +5032,11 @@ msgstr ""
msgid "Not subscribed!"
msgstr ""
#: lib/subs.php:140
#: lib/subs.php:133
msgid "Couldn't delete self-subscription."
msgstr ""
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr ""

File diff suppressed because it is too large Load Diff

View File

@ -8,12 +8,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:20:50+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:27:26+0000\n"
"Language-Team: Telugu\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: te\n"
"X-Message-Group: out-statusnet\n"
@ -182,7 +182,12 @@ msgstr "వాడుకరికి ప్రొఫైలు లేదు."
msgid "Could not save profile."
msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "వాడుకరిని తాజాకరించలేకున్నాం."
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr "వాడుకరి నిరోధం విఫలమైంది."
@ -566,7 +571,7 @@ msgstr "కత్తిరించు"
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -818,101 +823,101 @@ msgstr "రూపురేఖలు"
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "తప్పుడు పరిమాణం."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, php-format
msgid "Theme not available: %s"
msgstr "అలంకారం అందుబాటులో లేదు: %s"
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
msgid "Change logo"
msgstr "చిహ్నాన్ని మార్చు"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
msgid "Site logo"
msgstr "సైటు చిహ్నం"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
msgid "Change theme"
msgstr "అలంకారాన్ని మార్చు"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
msgid "Site theme"
msgstr "సైటు అలంకారం"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
msgid "Theme for the site."
msgstr "సైటుకి అలంకారం."
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr "నేపథ్య చిత్రాన్ని మార్చు"
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr "నేపథ్యం"
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr "మీ స్వంత నేపథ్యపు చిత్రాన్ని మీరు ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం 2మెబై."
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
msgid "Change colours"
msgstr "రంగులను మార్చు"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
msgid "Content"
msgstr "విషయం"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
msgid "Sidebar"
msgstr "పక్కపట్టీ"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "పాఠ్యం"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
msgid "Links"
msgstr "లంకెలు"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -922,7 +927,7 @@ msgstr ""
msgid "Save"
msgstr "భద్రపరచు"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr "రూపురేఖలని భద్రపరచు"
@ -1346,19 +1351,19 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "వాడుకరిని తాజాకరించలేకున్నాం."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
msgid "Unable to save your design settings!"
msgstr ""
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
#, fuzzy
msgid "Design preferences saved."
msgstr "అభిరుచులు భద్రమయ్యాయి."
@ -1659,7 +1664,7 @@ msgstr "వ్యక్తిగత సందేశం"
msgid "Optionally add a personal message to the invitation."
msgstr "ఐచ్ఛికంగా ఆహ్వానానికి వ్యక్తిగత సందేశం చేర్చండి."
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "పంపించు"
@ -1739,11 +1744,11 @@ msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించ
msgid "%s left group %s"
msgstr "%2$s గుంపు నుండి %1$s వైదొలిగారు"
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "ఇప్పటికే లోనికి ప్రవేశించారు."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
#, fuzzy
msgid "Invalid or expired token."
msgstr "సందేశపు విషయం సరైనది కాదు"
@ -1949,8 +1954,8 @@ msgstr "విషయ రకం "
msgid "Only "
msgstr "మాత్రమే "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr ""
@ -4279,40 +4284,54 @@ msgstr ""
msgid "Can't turn on notification."
msgstr ""
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "మారుపేర్లని సృష్టించలేకపోయాం."
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "%sకి స్పందనలు"
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "%sకి స్పందనలు"
msgstr[1] "%sకి స్పందనలు"
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "%sకి స్పందనలు"
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "%sకి స్పందనలు"
msgstr[1] "%sకి స్పందనలు"
#: lib/command.php:636
#: lib/command.php:667
#, fuzzy
msgid "You are not a member of any groups."
msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!"
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!"
msgstr[1] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!"
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4331,6 +4350,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4394,11 +4414,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "మీ స్వంత నేపథ్యపు చిత్రాన్ని మీరు ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం 2మెబై."
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -4850,7 +4866,7 @@ msgstr ""
msgid "To"
msgstr ""
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
msgid "Available characters"
msgstr "అందుబాటులో ఉన్న అక్షరాలు"
@ -4864,11 +4880,11 @@ msgstr "కొత్త సందేశం"
msgid "What's up, %s?"
msgstr "%s, సంగతులేమిటి?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr "జోడించు"
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr "ఒక ఫైలుని జోడించు"
@ -5145,7 +5161,12 @@ msgstr ""
msgid "Not subscribed!"
msgstr "చందాదార్లు"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "చందాని తొలగించలేకపోయాం."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "చందాని తొలగించలేకపోయాం."

View File

@ -7,12 +7,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:20:53+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:27:29+0000\n"
"Language-Team: Turkish\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: tr\n"
"X-Message-Group: out-statusnet\n"
@ -183,7 +183,12 @@ msgstr "Kullanıcının profili yok."
msgid "Could not save profile."
msgstr "Profil kaydedilemedi."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "Kullanıcı güncellenemedi."
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr ""
@ -577,7 +582,7 @@ msgstr ""
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -836,50 +841,50 @@ msgstr ""
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "Geçersiz büyüklük."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, fuzzy, php-format
msgid "Theme not available: %s"
msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil"
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
#, fuzzy
msgid "Change logo"
msgstr "Parolayı değiştir"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
#, fuzzy
msgid "Site logo"
msgstr "Yeni durum mesajı"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "Değiştir"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme"
msgstr "Yeni durum mesajı"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
msgid "Theme for the site."
msgstr ""
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr ""
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr ""
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@ -887,59 +892,59 @@ msgid ""
msgstr ""
"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?"
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
#, fuzzy
msgid "Change colours"
msgstr "Parolayı değiştir"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
#, fuzzy
msgid "Content"
msgstr "Bağlan"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
#, fuzzy
msgid "Sidebar"
msgstr "Ara"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr ""
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
#, fuzzy
msgid "Links"
msgstr "Giriş"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -949,7 +954,7 @@ msgstr ""
msgid "Save"
msgstr "Kaydet"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -1387,19 +1392,19 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "Kullanıcı güncellenemedi."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
msgid "Unable to save your design settings!"
msgstr ""
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
#, fuzzy
msgid "Design preferences saved."
msgstr "Tercihler kaydedildi."
@ -1716,7 +1721,7 @@ msgstr ""
msgid "Optionally add a personal message to the invitation."
msgstr ""
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "Gönder"
@ -1798,11 +1803,11 @@ msgstr "OpenID formu yaratılamadı: %s"
msgid "%s left group %s"
msgstr ""
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Zaten giriş yapılmış."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
#, fuzzy
msgid "Invalid or expired token."
msgstr "Geçersiz durum mesajı"
@ -2015,8 +2020,8 @@ msgstr "Bağlan"
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr ""
@ -4382,37 +4387,51 @@ msgstr ""
msgid "Can't turn on notification."
msgstr ""
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "Avatar bilgisi kaydedilemedi"
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "Bize o profili yollamadınız"
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Bize o profili yollamadınız"
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Uzaktan abonelik"
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Uzaktan abonelik"
#: lib/command.php:636
#: lib/command.php:667
#, fuzzy
msgid "You are not a member of any groups."
msgstr "Bize o profili yollamadınız"
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "Bize o profili yollamadınız"
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4431,6 +4450,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4495,11 +4515,7 @@ msgid ""
msgstr ""
"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?"
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -4964,7 +4980,7 @@ msgstr ""
msgid "To"
msgstr ""
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
#, fuzzy
msgid "Available characters"
msgstr "6 veya daha fazla karakter"
@ -4979,11 +4995,11 @@ msgstr "Yeni durum mesajı"
msgid "What's up, %s?"
msgstr "N'aber %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5263,7 +5279,12 @@ msgstr ""
msgid "Not subscribed!"
msgstr "Bu kullanıcıyı zaten takip etmiyorsunuz!"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Abonelik silinemedi."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "Abonelik silinemedi."

View File

@ -9,12 +9,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:20:56+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:27:33+0000\n"
"Language-Team: Ukrainian\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: uk\n"
"X-Message-Group: out-statusnet\n"
@ -189,7 +189,11 @@ msgstr "Користувач не має профілю."
msgid "Could not save profile."
msgstr "Не вдалося зберегти профіль."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
msgid "You cannot block yourself!"
msgstr "Ви не можете блокувати самого себе!"
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr "Спроба заблокувати користувача невдала."
@ -573,7 +577,7 @@ msgstr "Втяти"
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -825,45 +829,45 @@ msgstr "Дизайн"
msgid "Design settings for this StatusNet site."
msgstr "Налаштування дизайну для цього сайту StatusNet."
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
msgid "Invalid logo URL."
msgstr "Помилкова URL-адреса логотипу."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, php-format
msgid "Theme not available: %s"
msgstr "Тема не доступна: %s"
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
msgid "Change logo"
msgstr "Змінити логотип"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
msgid "Site logo"
msgstr "Логотип сайту"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
msgid "Change theme"
msgstr "Змінити тему"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
msgid "Site theme"
msgstr "Тема сайту"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
msgid "Theme for the site."
msgstr "Тема для цього сайту."
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr "Змінити фонове зображення"
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr "Фон"
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@ -872,55 +876,55 @@ msgstr ""
"Ви можете завантажити фонове зображення для сайту. Максимальний розмір файлу "
"%1$s."
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr "Увімк."
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr "Вимк."
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr "Увімкнути або вимкнути фонове зображення."
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr "Замостити фон"
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
msgid "Change colours"
msgstr "Змінити кольори"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
msgid "Content"
msgstr "Зміст"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
msgid "Sidebar"
msgstr "Бічна панель"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "Текст"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
msgid "Links"
msgstr "Посилання"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr "За замовч."
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr "Оновити налаштування за замовчуванням"
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr "Повернутись до початкових налаштувань"
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -930,7 +934,7 @@ msgstr "Повернутись до початкових налаштувань"
msgid "Save"
msgstr "Зберегти"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr "Зберегти дизайн"
@ -1366,18 +1370,18 @@ msgstr ""
"Налаштуйте вигляд сторінки групи, використовуючи фонове зображення і кольори "
"на свій смак."
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
msgid "Couldn't update your design."
msgstr "Не вдалося оновити дизайн."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
msgid "Unable to save your design settings!"
msgstr "Не маю можливості зберегти Ваші налаштування дизайну!"
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
msgid "Design preferences saved."
msgstr "Преференції дизайну збережно."
@ -1705,7 +1709,7 @@ msgstr "Особисті повідомлення"
msgid "Optionally add a personal message to the invitation."
msgstr "Можна додати персональне повідомлення до запрошення (опціонально)."
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "Так!"
@ -1812,11 +1816,11 @@ msgstr "Не вдалося видалити користувача %s з гру
msgid "%s left group %s"
msgstr "%s залишив групу %s"
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Тепер Ви увійшли."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
msgid "Invalid or expired token."
msgstr "Недійсний або неправильний токен."
@ -2033,8 +2037,8 @@ msgstr "тип змісту "
msgid "Only "
msgstr "Лише "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr "Такий формат даних не підтримується."
@ -2823,11 +2827,9 @@ msgid "Invalid profile URL (bad format)"
msgstr "Недійсна URL-адреса профілю (неправильний формат)"
#: actions/remotesubscribe.php:168
#, fuzzy
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
msgstr ""
"Це недійсна URL-адреса профілю (немає документа YADIS; немає або помилкове "
"визначення XRDS)."
"Неправильна URL-адреса профілю (немає документа YADIS, або помилковий XRDS)."
#: actions/remotesubscribe.php:176
msgid "Thats a local profile! Login to subscribe."
@ -4439,40 +4441,54 @@ msgstr "Сповіщення увімкнуто."
msgid "Can't turn on notification."
msgstr "Не можна увімкнути сповіщення."
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "Неможна призначити додаткові імена."
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
msgid "You are not subscribed to anyone."
msgstr "Ви не маєте жодних підписок."
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Ви підписані до цієї особи:"
msgstr[1] "Ви підписані до цих людей:"
msgstr[2] "Ви підписані до цих людей:"
#: lib/command.php:614
#: lib/command.php:645
msgid "No one is subscribed to you."
msgstr "До Вас ніхто не підписаний."
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Ця особа є підписаною до Вас:"
msgstr[1] "Ці люди підписані до Вас:"
msgstr[2] "Ці люди підписані до Вас:"
#: lib/command.php:636
#: lib/command.php:667
msgid "You are not a member of any groups."
msgstr "Ви не є учасником жодної групи."
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "Ви є учасником групи:"
msgstr[1] "Ви є учасником таких груп:"
msgstr[2] "Ви є учасником таких груп:"
#: lib/command.php:652
#: lib/command.php:683
#, fuzzy
msgid ""
"Commands:\n"
@ -4492,6 +4508,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4511,40 +4528,40 @@ msgid ""
"tracking - not yet implemented.\n"
msgstr ""
"Команди:\n"
"on - увімкнути сповіщення\n"
"off - вимкнути сповіщення\n"
"help - список команд\n"
"follow <nickname> - підписатись до користувача\n"
"groups - групи, до яких Ви входите\n"
"subscriptions - користувачі, до яких Ви підписані\n"
"subscribers - користувачі, які підписані до Вас\n"
"leave <nickname> - відписатись від користувача\n"
"d <nickname> <text> - надіслати особисте повідомлення\n"
"get <nickname> - отримати останній допис користувача\n"
"whois <nickname> - інфо про користувача\n"
"fav <nickname> - додати останній допис користувача до обраних\n"
"fav #<notice_id> - додати допис #номер до обраних\n"
"reply #<notice_id> - відповісти на допис #номер\n"
"reply <nickname> - відповісти на останній допис користувача\n"
"join <group> - приєднатися до групи\n"
"login - отримати посилання для входу у веб-інтерфейс\n"
"drop <group> - залишити групу\n"
"stats - отримати статистику\n"
"stop - те саме що і 'off'\n"
"quit - те саме що і 'off'\n"
"sub <nickname> - те саме що і 'follow'\n"
"unsub <nickname> - те саме що і 'leave'\n"
"last <nickname> - те саме що і 'get'\n"
"on <nickname> - наразі не виконується\n"
"off <nickname> - наразі не виконується\n"
"nudge <nickname> - «розштовхати»\n"
"invite <phone number> - наразі не виконується\n"
"track <word> - наразі не виконується\n"
"untrack <word> - наразі не виконується\n"
"track off - наразі не виконується\n"
"untrack all - наразі не виконується\n"
"tracks - наразі не виконується\n"
"tracking - наразі не виконується\n"
"on увімкнути сповіщення\n"
"off вимкнути сповіщення\n"
"help список команд\n"
"follow <nickname> підписатись до користувача\n"
"groups групи, до яких Ви входите\n"
"subscriptions користувачі, до яких Ви підписані\n"
"subscribers користувачі, які підписані до Вас\n"
"leave <nickname> відписатись від користувача\n"
"d <nickname> <text> надіслати особисте повідомлення\n"
"get <nickname> отримати останній допис користувача\n"
"whois <nickname> інфо про користувача\n"
"fav <nickname> додати останній допис користувача до обраних\n"
"fav #<notice_id> — додати допис до обраних\n"
"reply #<notice_id> — відповісти на допис\n"
"reply <nickname> відповісти на останній допис користувача\n"
"join <group> приєднатися до групи\n"
"login отримати посилання для входу у веб-інтерфейс\n"
"drop <group> залишити групу\n"
"stats отримати статистику\n"
"stop те саме що і 'off'\n"
"quit те саме що і 'off'\n"
"sub <nickname> те саме що і 'follow'\n"
"unsub <nickname> те саме що і 'leave'\n"
"last <nickname> те саме що і 'get'\n"
"on <nickname> наразі не виконується\n"
"off <nickname> наразі не виконується\n"
"nudge <nickname> «розштовхати»\n"
"invite <phone number> наразі не виконується\n"
"track <word> наразі не виконується\n"
"untrack <word> наразі не виконується\n"
"track off наразі не виконується\n"
"untrack all наразі не виконується\n"
"tracks наразі не виконується\n"
"tracking наразі не виконується\n"
#: lib/common.php:199
msgid "No configuration file found. "
@ -4589,11 +4606,7 @@ msgstr ""
"Ви можете завантажити власне фонове зображення. Максимальний розмір файлу "
"становить 2Мб."
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr "Помилка кольорів за замовчуванням: "
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr "Дизайн за замовчуванням відновлено."
@ -5128,7 +5141,7 @@ msgstr "Надіслати прямий допис"
msgid "To"
msgstr "До"
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
msgid "Available characters"
msgstr "Лишилось знаків"
@ -5141,11 +5154,11 @@ msgstr "Надіслати допис"
msgid "What's up, %s?"
msgstr "Що нового, %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr "Вкласти"
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr "Вкласти файл"
@ -5412,7 +5425,11 @@ msgstr "Не вдалося підписати інших до Вас."
msgid "Not subscribed!"
msgstr "Не підписано!"
#: lib/subs.php:140
#: lib/subs.php:133
msgid "Couldn't delete self-subscription."
msgstr "Не можу видалити самопідписку."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "Не вдалося видалити підписку."

View File

@ -7,12 +7,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:21:00+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:27:36+0000\n"
"Language-Team: Vietnamese\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: vi\n"
"X-Message-Group: out-statusnet\n"
@ -184,7 +184,12 @@ msgstr "Người dùng không có thông tin."
msgid "Could not save profile."
msgstr "Không thể lưu hồ sơ cá nhân."
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "Không thể cập nhật thành viên."
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr ""
@ -584,7 +589,7 @@ msgstr "Nhóm"
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -846,52 +851,52 @@ msgstr ""
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "Kích thước không hợp lệ."
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, fuzzy, php-format
msgid "Theme not available: %s"
msgstr "Trang này không phải là phương tiện truyền thông mà bạn chấp nhận."
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
#, fuzzy
msgid "Change logo"
msgstr "Thay đổi mật khẩu của bạn"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
#, fuzzy
msgid "Site logo"
msgstr "Thư mời"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "Thay đổi"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme"
msgstr "Thông báo mới"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
msgid "Theme for the site."
msgstr ""
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
#, fuzzy
msgid "Change background image"
msgstr "Background Theme:"
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
#, fuzzy
msgid "Background"
msgstr "Background Theme:"
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
@ -900,60 +905,60 @@ msgstr ""
"Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin "
"về bạn."
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
#, fuzzy
msgid "Tile background image"
msgstr "Background Theme:"
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
#, fuzzy
msgid "Change colours"
msgstr "Thay đổi mật khẩu của bạn"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
#, fuzzy
msgid "Content"
msgstr "Kết nối"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
#, fuzzy
msgid "Sidebar"
msgstr "Tìm kiếm"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "Chuỗi bất kỳ"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
#, fuzzy
msgid "Links"
msgstr "Đăng nhập"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -963,7 +968,7 @@ msgstr ""
msgid "Save"
msgstr "Lưu"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
#, fuzzy
msgid "Save design"
msgstr "Lưu"
@ -1431,20 +1436,20 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "Không thể cập nhật thành viên."
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: 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 "Không thể lưu thông tin Twitter của bạn!"
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
#, fuzzy
msgid "Design preferences saved."
msgstr "Các tính năng đã được lưu."
@ -1772,7 +1777,7 @@ msgstr "Tin nhắn cá nhân"
msgid "Optionally add a personal message to the invitation."
msgstr "Không bắt buộc phải thêm thông điệp vào thư mời."
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "Gửi"
@ -1883,11 +1888,11 @@ msgstr "Không thể theo bạn này: %s đã có trong danh sách bạn bè c
msgid "%s left group %s"
msgstr "%s và nhóm"
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "Đã đăng nhập."
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
#, fuzzy
msgid "Invalid or expired token."
msgstr "Nội dung tin nhắn không hợp lệ"
@ -2106,8 +2111,8 @@ msgstr "Kết nối"
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr "Không hỗ trợ định dạng dữ liệu này."
@ -4550,37 +4555,51 @@ msgstr "Không có mã số xác nhận."
msgid "Can't turn on notification."
msgstr ""
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "Không thể tạo favorite."
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, 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:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "Bạn đã theo những người này:"
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "Không thể tạo favorite."
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "Không thể tạo favorite."
#: lib/command.php:636
#: lib/command.php:667
#, 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:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "Bạn chưa cập nhật thông tin riêng"
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4599,6 +4618,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4664,11 +4684,7 @@ msgstr ""
"Bạn có thể cập nhật hồ sơ cá nhân tại đây để mọi người có thể biết thông tin "
"về bạn."
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -5189,7 +5205,7 @@ msgstr "Xóa tin nhắn"
msgid "To"
msgstr ""
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
#, fuzzy
msgid "Available characters"
msgstr "Nhiều hơn 6 ký tự"
@ -5204,11 +5220,11 @@ msgstr "Thông báo mới"
msgid "What's up, %s?"
msgstr "Bạn đang làm gì thế, %s?"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5499,7 +5515,12 @@ msgstr "Không thể tạo favorite."
msgid "Not subscribed!"
msgstr "Chưa đăng nhận!"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "Không thể xóa đăng nhận."
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "Không thể xóa đăng nhận."

View File

@ -9,12 +9,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:21:03+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:27:39+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(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hans\n"
"X-Message-Group: out-statusnet\n"
@ -186,7 +186,12 @@ msgstr "用户没有个人信息。"
msgid "Could not save profile."
msgstr "无法保存个人信息。"
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "无法更新用户。"
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr "阻止用户失败。"
@ -578,7 +583,7 @@ msgstr "剪裁"
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -842,110 +847,110 @@ msgstr ""
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "大小不正确。"
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, fuzzy, php-format
msgid "Theme not available: %s"
msgstr "这个页面不提供您想要的媒体类型"
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
#, fuzzy
msgid "Change logo"
msgstr "修改密码"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
#, fuzzy
msgid "Site logo"
msgstr "邀请"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "修改"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme"
msgstr "新通告"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
#, fuzzy
msgid "Theme for the site."
msgstr "登出本站"
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr ""
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr ""
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, fuzzy, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr "你可以给你的组上载一个logo图。"
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
#, fuzzy
msgid "Change colours"
msgstr "修改密码"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
#, fuzzy
msgid "Content"
msgstr "连接"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
#, fuzzy
msgid "Sidebar"
msgstr "搜索"
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr "文本"
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
#, fuzzy
msgid "Links"
msgstr "登录"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -955,7 +960,7 @@ msgstr ""
msgid "Save"
msgstr "保存"
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -1404,20 +1409,20 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "无法更新用户。"
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: 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 设置!"
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
#, fuzzy
msgid "Design preferences saved."
msgstr "同步选项已保存。"
@ -1731,7 +1736,7 @@ msgstr "个人消息"
msgid "Optionally add a personal message to the invitation."
msgstr "在邀请中加几句话(可选)。"
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr "发送"
@ -1835,11 +1840,11 @@ msgstr "无法订阅用户:未找到。"
msgid "%s left group %s"
msgstr "%s 离开群 %s"
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "已登录。"
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
#, fuzzy
msgid "Invalid or expired token."
msgstr "通告内容不正确"
@ -2048,8 +2053,8 @@ msgstr "连接"
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr "不支持的数据格式。"
@ -4455,37 +4460,51 @@ msgstr "通告开启。"
msgid "Can't turn on notification."
msgstr "无法开启通告。"
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "无法创建收藏。"
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "您未告知此个人信息"
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "您已订阅这些用户:"
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "无法订阅他人更新。"
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "无法订阅他人更新。"
#: lib/command.php:636
#: lib/command.php:667
#, fuzzy
msgid "You are not a member of any groups."
msgstr "您未告知此个人信息"
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "您未告知此个人信息"
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4504,6 +4523,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4568,11 +4588,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr "您可以在这里上传个人头像。"
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -5048,7 +5064,7 @@ msgstr "删除通告"
msgid "To"
msgstr "到"
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
#, fuzzy
msgid "Available characters"
msgstr "6 个或更多字符"
@ -5063,11 +5079,11 @@ msgstr "发送消息"
msgid "What's up, %s?"
msgstr "怎么样,%s"
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5355,7 +5371,12 @@ msgstr "无法订阅他人更新。"
msgid "Not subscribed!"
msgstr "未订阅!"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "无法删除订阅。"
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "无法删除订阅。"

View File

@ -7,12 +7,12 @@ msgid ""
msgstr ""
"Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
"PO-Revision-Date: 2009-12-02 23:21:06+0000\n"
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
"PO-Revision-Date: 2009-12-07 21:27:42+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(r59683); Translate extension (2009-11-29)\n"
"X-Generator: MediaWiki 1.16alpha(r59800); Translate extension (2009-12-06)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: zh-hant\n"
"X-Message-Group: out-statusnet\n"
@ -183,7 +183,12 @@ msgstr ""
msgid "Could not save profile."
msgstr "無法儲存個人資料"
#: actions/apiblockcreate.php:108
#: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!"
msgstr "無法更新使用者"
#: actions/apiblockcreate.php:119
msgid "Block user failed."
msgstr ""
@ -571,7 +576,7 @@ msgstr ""
#: actions/emailsettings.php:238 actions/favor.php:75
#: actions/groupblock.php:66 actions/grouplogo.php:309
#: actions/groupunblock.php:66 actions/imsettings.php:206
#: actions/invite.php:56 actions/login.php:129 actions/makeadmin.php:66
#: actions/invite.php:56 actions/login.php:134 actions/makeadmin.php:66
#: actions/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
#: actions/othersettings.php:145 actions/passwordsettings.php:138
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
@ -830,108 +835,108 @@ msgstr ""
msgid "Design settings for this StatusNet site."
msgstr ""
#: actions/designadminpanel.php:270
#: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL."
msgstr "尺寸錯誤"
#: actions/designadminpanel.php:274
#: actions/designadminpanel.php:279
#, fuzzy, php-format
msgid "Theme not available: %s"
msgstr "個人首頁位址錯誤"
#: actions/designadminpanel.php:370
#: actions/designadminpanel.php:375
#, fuzzy
msgid "Change logo"
msgstr "更改密碼"
#: actions/designadminpanel.php:375
#: actions/designadminpanel.php:380
#, fuzzy
msgid "Site logo"
msgstr "新訊息"
#: actions/designadminpanel.php:382
#: actions/designadminpanel.php:387
#, fuzzy
msgid "Change theme"
msgstr "更改"
#: actions/designadminpanel.php:399
#: actions/designadminpanel.php:404
#, fuzzy
msgid "Site theme"
msgstr "新訊息"
#: actions/designadminpanel.php:400
#: actions/designadminpanel.php:405
msgid "Theme for the site."
msgstr ""
#: actions/designadminpanel.php:412 lib/designsettings.php:101
#: actions/designadminpanel.php:417 lib/designsettings.php:101
msgid "Change background image"
msgstr ""
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
#: lib/designsettings.php:178
msgid "Background"
msgstr ""
#: actions/designadminpanel.php:422
#: actions/designadminpanel.php:427
#, php-format
msgid ""
"You can upload a background image for the site. The maximum file size is %1"
"$s."
msgstr ""
#: actions/designadminpanel.php:452 lib/designsettings.php:139
#: actions/designadminpanel.php:457 lib/designsettings.php:139
msgid "On"
msgstr ""
#: actions/designadminpanel.php:468 lib/designsettings.php:155
#: actions/designadminpanel.php:473 lib/designsettings.php:155
msgid "Off"
msgstr ""
#: actions/designadminpanel.php:469 lib/designsettings.php:156
#: actions/designadminpanel.php:474 lib/designsettings.php:156
msgid "Turn background image on or off."
msgstr ""
#: actions/designadminpanel.php:474 lib/designsettings.php:161
#: actions/designadminpanel.php:479 lib/designsettings.php:161
msgid "Tile background image"
msgstr ""
#: actions/designadminpanel.php:483 lib/designsettings.php:170
#: actions/designadminpanel.php:488 lib/designsettings.php:170
#, fuzzy
msgid "Change colours"
msgstr "更改密碼"
#: actions/designadminpanel.php:505 lib/designsettings.php:191
#: actions/designadminpanel.php:510 lib/designsettings.php:191
#, fuzzy
msgid "Content"
msgstr "連結"
#: actions/designadminpanel.php:518 lib/designsettings.php:204
#: actions/designadminpanel.php:523 lib/designsettings.php:204
msgid "Sidebar"
msgstr ""
#: actions/designadminpanel.php:531 lib/designsettings.php:217
#: actions/designadminpanel.php:536 lib/designsettings.php:217
msgid "Text"
msgstr ""
#: actions/designadminpanel.php:544 lib/designsettings.php:230
#: actions/designadminpanel.php:549 lib/designsettings.php:230
#, fuzzy
msgid "Links"
msgstr "登入"
#: actions/designadminpanel.php:572 lib/designsettings.php:247
#: actions/designadminpanel.php:577 lib/designsettings.php:247
msgid "Use defaults"
msgstr ""
#: actions/designadminpanel.php:573 lib/designsettings.php:248
#: actions/designadminpanel.php:578 lib/designsettings.php:248
msgid "Restore default designs"
msgstr ""
#: actions/designadminpanel.php:579 lib/designsettings.php:254
#: actions/designadminpanel.php:584 lib/designsettings.php:254
msgid "Reset back to default"
msgstr ""
#: actions/designadminpanel.php:581 actions/emailsettings.php:195
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
#: actions/imsettings.php:163 actions/othersettings.php:126
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
@ -941,7 +946,7 @@ msgstr ""
msgid "Save"
msgstr ""
#: actions/designadminpanel.php:582 lib/designsettings.php:257
#: actions/designadminpanel.php:587 lib/designsettings.php:257
msgid "Save design"
msgstr ""
@ -1375,19 +1380,19 @@ msgid ""
"palette of your choice."
msgstr ""
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
#: lib/designsettings.php:434 lib/designsettings.php:464
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
#: lib/designsettings.php:391 lib/designsettings.php:413
#, fuzzy
msgid "Couldn't update your design."
msgstr "無法更新使用者"
#: actions/groupdesignsettings.php:286 actions/groupdesignsettings.php:296
#: actions/groupdesignsettings.php:287 actions/groupdesignsettings.php:297
#: actions/userdesignsettings.php:210 actions/userdesignsettings.php:220
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
msgid "Unable to save your design settings!"
msgstr ""
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
msgid "Design preferences saved."
msgstr ""
@ -1691,7 +1696,7 @@ msgstr ""
msgid "Optionally add a personal message to the invitation."
msgstr ""
#: actions/invite.php:197 lib/messageform.php:181 lib/noticeform.php:225
#: actions/invite.php:197 lib/messageform.php:180 lib/noticeform.php:224
msgid "Send"
msgstr ""
@ -1771,11 +1776,11 @@ msgstr "無法從 %s 建立OpenID"
msgid "%s left group %s"
msgstr ""
#: actions/login.php:79 actions/register.php:137
#: actions/login.php:82 actions/register.php:137
msgid "Already logged in."
msgstr "已登入"
#: actions/login.php:108 actions/login.php:118
#: actions/login.php:113 actions/login.php:123
msgid "Invalid or expired token."
msgstr ""
@ -1977,8 +1982,8 @@ msgstr "連結"
msgid "Only "
msgstr ""
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
#: lib/api.php:1027 lib/api.php:1137
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
#: lib/api.php:1024 lib/api.php:1134
msgid "Not a supported data format."
msgstr ""
@ -4299,37 +4304,51 @@ msgstr ""
msgid "Can't turn on notification."
msgstr ""
#: lib/command.php:592
#: lib/command.php:588
msgid "Login command is disabled"
msgstr ""
#: lib/command.php:602
#, fuzzy, php-format
msgid "Could not create login token for %s"
msgstr "無法存取個人圖像資料"
#: lib/command.php:607
#, php-format
msgid "This link is useable only once, and is good for only 2 minutes: %s"
msgstr ""
#: lib/command.php:623
#, fuzzy
msgid "You are not subscribed to anyone."
msgstr "此帳號已註冊"
#: lib/command.php:594
#: lib/command.php:625
msgid "You are subscribed to this person:"
msgid_plural "You are subscribed to these people:"
msgstr[0] "此帳號已註冊"
#: lib/command.php:614
#: lib/command.php:645
#, fuzzy
msgid "No one is subscribed to you."
msgstr "無此訂閱"
#: lib/command.php:616
#: lib/command.php:647
msgid "This person is subscribed to you:"
msgid_plural "These people are subscribed to you:"
msgstr[0] "無此訂閱"
#: lib/command.php:636
#: lib/command.php:667
#, fuzzy
msgid "You are not a member of any groups."
msgstr "無法連結到伺服器:%s"
#: lib/command.php:638
#: lib/command.php:669
msgid "You are a member of this group:"
msgid_plural "You are a member of these groups:"
msgstr[0] "無法連結到伺服器:%s"
#: lib/command.php:652
#: lib/command.php:683
msgid ""
"Commands:\n"
"on - turn on notifications\n"
@ -4348,6 +4367,7 @@ msgid ""
"reply #<notice_id> - reply to notice with a given id\n"
"reply <nickname> - reply to the last notice from user\n"
"join <group> - join group\n"
"login - Get a link to login to the web interface\n"
"drop <group> - leave group\n"
"stats - get your stats\n"
"stop - same as 'off'\n"
@ -4410,11 +4430,7 @@ msgid ""
"You can upload your personal background image. The maximum file size is 2MB."
msgstr ""
#: lib/designsettings.php:372
msgid "Bad default color settings: "
msgstr ""
#: lib/designsettings.php:468
#: lib/designsettings.php:418
msgid "Design defaults restored."
msgstr ""
@ -4875,7 +4891,7 @@ msgstr ""
msgid "To"
msgstr ""
#: lib/messageform.php:162 lib/noticeform.php:186
#: lib/messageform.php:161 lib/noticeform.php:185
#, fuzzy
msgid "Available characters"
msgstr "6個以上字元"
@ -4890,11 +4906,11 @@ msgstr "新訊息"
msgid "What's up, %s?"
msgstr ""
#: lib/noticeform.php:193
#: lib/noticeform.php:192
msgid "Attach"
msgstr ""
#: lib/noticeform.php:197
#: lib/noticeform.php:196
msgid "Attach a file"
msgstr ""
@ -5169,7 +5185,12 @@ msgstr ""
msgid "Not subscribed!"
msgstr "此帳號已註冊"
#: lib/subs.php:140
#: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription."
msgstr "無法刪除帳號"
#: lib/subs.php:146
msgid "Couldn't delete subscription."
msgstr "無法刪除帳號"

View File

@ -185,7 +185,6 @@ class FacebookPlugin extends Plugin
// XXX: Facebook says we don't need this FB_RequireFeatures(),
// but we actually do, for IE and Safari. Gar.
$js = '<script type="text/javascript">';
$js .= ' $(document).ready(function () {';
$js .= ' FB_RequireFeatures(';
$js .= ' ["XFBML"], function() {';
@ -219,7 +218,6 @@ class FacebookPlugin extends Plugin
$js .= ' }';
$js .= ' );';
$js .= ' });';
$js .= '</script>';
$js = sprintf($js, $apikey, $login_url, $logout_url);
@ -227,7 +225,7 @@ class FacebookPlugin extends Plugin
$js = str_replace(' ', '', $js);
$action->raw(" $js"); // leading two spaces to make it line up
$action->inlineScript($js);
}
}

View File

@ -44,7 +44,7 @@ class FacebookAction extends Action
var $app_uri = null;
var $app_name = null;
function __construct($output='php://output', $indent=true, $facebook=null, $flink=null)
function __construct($output='php://output', $indent=null, $facebook=null, $flink=null)
{
parent::__construct($output, $indent);

View File

@ -168,7 +168,7 @@ function facebookBroadcastNotice($notice)
function updateProfileBox($facebook, $flink, $notice) {
$fbaction = new FacebookAction($output = 'php://output',
$indent = true, $facebook, $flink);
$indent = null, $facebook, $flink);
$fbaction->updateProfileBox($notice);
}

View File

@ -0,0 +1,59 @@
<?php
/*
StatusNet Plugin: 0.9
Plugin Name: FirePHP
Description: Sends StatusNet log output to FirePHP
Version: 0.1
Author: Craig Andrews <candrews@integralblue.com>
Author URI: http://candrews.integralblue.com/
*/
/*
* StatusNet - the distributed open-source microblogging tool
* Copyright (C) 2009, StatusNet, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @package MinifyPlugin
* @maintainer Craig Andrews <candrews@integralblue.com>
*/
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
// We bundle the FirePHP library...
set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/extlib/FirePHP/lib');
class FirePHPPlugin extends Plugin
{
private $firephp;
function onInitializePlugin()
{
//Output buffering has to be enabled so FirePHP can send the HTTP headers it needs
ob_start();
require_once('FirePHPCore/FirePHP.class.php');
$this->firephp = FirePHP::getInstance(true);
}
function onStartLog(&$priority, &$msg, &$filename)
{
static $firephp_priorities = array(FirePHP::ERROR, FirePHP::ERROR, FirePHP::ERROR, FirePHP::ERROR,
FirePHP::WARN, FirePHP::LOG, FirePHP::LOG, FirePHP::INFO);
$priority = $firephp_priorities[$priority];
$this->firephp->fb($msg, $priority);
}
}

21
plugins/FirePHP/README Normal file
View File

@ -0,0 +1,21 @@
The FirePHP writes StatusNet's log output to FirePHP.
Using FirePHP on production sites can expose sensitive information.
You must protect the security of your application by disabling FirePHP
logging on your live site.
Installation
============
add "addPlugin('FirePHP',
array('setting'=>'value', 'setting2'=>'value2', ...);"
to the bottom of your config.php
Settings
========
None at the moment.
Example
=======
addPlugin('FirePHP', array());

View File

@ -0,0 +1,110 @@
2008-06-14 - Release Version: 0.3.1
- (Issue 108) ignore class name case in object filter
2009-05-11 - Release Version: 0.3
2009-05-01 - Release Version: 0.3.rc.1
- (Issue 90) PHP4 compatible version of FirePHPCore
- (Issue 98) Thrown exceptions don't send an HTTP 500 if the FirePHP exception handler is enabled
- (Issue 85) Support associative arrays in encodeTable method in FirePHP.class.php
- (Issue 66) Add a new getOptions() public method in API
- (Issue 82) Define $this->options outside of __construct
- (Issue 72) Message error if group name is null
- (Issue 68) registerErrorHandler() and registerExceptionHandler() should returns previous handlers defined
- (Issue 69) Add the missing register handler in the triumvirate (error, exception, assert)
- (Issue 75) [Error & Exception Handling] Option to not exit script execution
- (Issue 83) Exception handler can't throw exceptions
- (Issue 80) Auto/Pre collapsing groups AND Custom group row colors
2008-11-09 - Release Version: 0.2.1
- (Issue 70) Problem when logging resources
2008-10-21 - Release Version: 0.2.0
- Updated version to 0.2.0
- Switched to using __sleep instead of __wakeup
- Added support to exclude object members when encoding
- Add support to enable/disable logging
2008-10-17 - Release Version: 0.2.b.8
- New implementation for is_utf8()
- (Issue 55) maxObjectDepth Option not working correctly when using TABLE and EXCEPTION Type
- Bugfix for max[Object|Array]Depth when encoding nested array/object graphs
- Bugfix for FB::setOptions()
2008-10-16 - Release Version: 0.2.b.7
- (Issue 45) Truncate dump when string have non utf8 cars
- (Issue 52) logging will not work when firephp object gets stored in the session.
2008-10-16 - Release Version: 0.2.b.6
- (Issue 37) Display file and line information for each log message
- (Issue 51) Limit output of object graphs
- Bugfix for encoding object members set to NULL|false|''
2008-10-14 - Release Version: 0.2.b.5
- Updated JsonStream wildfire protocol to be more robust
- (Issue 33) PHP error notices running demos
- (Issue 48) Warning: ReflectionProperty::getValue() expects exactly 1 parameter, 0 given
2008-10-08 - Release Version: 0.2.b.4
- Bugfix for logging objects with recursion
2008-10-08 - Release Version: 0.2.b.3
- (Issue 43) Notice message in 0.2b2
- Added support for PHP's native json_encode() if available
- Revised object encoder to detect object recursion
2008-10-07 - Release Version: 0.2.b.2
- (Issue 28) Need solution for logging private and protected object variables
- Added trace() and table() aliases in FirePHP class
- (Issue 41) Use PHP doc in FirePHP
- (Issue 39) Static logging method for object oriented API
2008-10-01 - Release Version: 0.2.b.1
- Added support for error and exception handling
- Updated min PHP version for PEAR package to 5.2
- Added version constant for library
- Gave server library it's own wildfire plugin namespace
- Migrated communication protocol to Wildfire JsonStream
- Added support for console groups using "group" and "groupEnd"
- Added support for log, info, warn and error logging aliases
- (Issue 29) problem with TRACE when using with error_handler
- (Issue 33) PHP error notices running demos
- (Issue 12) undefined index php notice
- Removed closing ?> php tags
- (Issue 13) the code in the fb() function has a second return statement that will never be reached
2008-07-30 - Release Version: 0.1.1.3
- Include __className property in JSON string if variable was an object
- Bugfix - Mis-spelt "Exception" in JSON encoding code
2008-06-13 - Release Version: 0.1.1.1
- Bugfix - Standardize windows paths in stack traces
- Bugfix - Display correct stack trace info in windows environments
- Bugfix - Check $_SERVER['HTTP_USER_AGENT'] before returning
2008-06-13 - Release Version: 0.1.1
- Added support for FirePHP::TRACE log style
- Changed license to New BSD License
2008-06-06 - Release Version: 0.0.2
- Bugfix - Added usleep() to header writing loop to ensure unique index
- Bugfix - Ensure chunk_split does not generate trailing "\n" with empty data header
- Added support for FirePHP::TABLE log style

View File

@ -0,0 +1,12 @@
_______________________________
F i r e P H P C o r e
Current Development
-------------------
Christoph Dorn <christoph@christophdorn.com>
Michael Day <manveru.alma@gmail.com>
If you've done work on FirePHPCore and you are not listed here,
please feel free to add yourself.

View File

@ -0,0 +1,32 @@
Version: 0.3.1
------------------------------------------------------
Requirements
------------------------------------------------------
Client Side:
- Firefox - http://www.getfirefox.com/
- Firebug - http://www.getfirebug.com/
- FirePHP - http://www.firephp.org/
Server Side:
- PHP 5 (complete functionality)
- PHP 4 (most functionality)
------------------------------------------------------
Install Tutorial
------------------------------------------------------
http://www.firephp.org/HQ/Install.htm
------------------------------------------------------
Support
------------------------------------------------------
http://forum.firephp.org/

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,29 @@
Software License Agreement (New BSD License)
Copyright (c) 2006-2009, Christoph Dorn
All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of Christoph Dorn nor the names of its
contributors may be used to endorse or promote products derived from this
software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

View File

@ -0,0 +1,261 @@
<?php
/* ***** BEGIN LICENSE BLOCK *****
*
* This file is part of FirePHP (http://www.firephp.org/).
*
* Software License Agreement (New BSD License)
*
* Copyright (c) 2006-2009, Christoph Dorn
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* * Neither the name of Christoph Dorn nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* ***** END LICENSE BLOCK *****
*
* @copyright Copyright (C) 2007-2009 Christoph Dorn
* @author Christoph Dorn <christoph@christophdorn.com>
* @license http://www.opensource.org/licenses/bsd-license.php
* @package FirePHP
*/
require_once dirname(__FILE__).'/FirePHP.class.php';
/**
* Sends the given data to the FirePHP Firefox Extension.
* The data can be displayed in the Firebug Console or in the
* "Server" request tab.
*
* @see http://www.firephp.org/Wiki/Reference/Fb
* @param mixed $Object
* @return true
* @throws Exception
*/
function fb()
{
$instance = FirePHP::getInstance(true);
$args = func_get_args();
return call_user_func_array(array($instance,'fb'),$args);
}
class FB
{
/**
* Enable and disable logging to Firebug
*
* @see FirePHP->setEnabled()
* @param boolean $Enabled TRUE to enable, FALSE to disable
* @return void
*/
public static function setEnabled($Enabled) {
$instance = FirePHP::getInstance(true);
$instance->setEnabled($Enabled);
}
/**
* Check if logging is enabled
*
* @see FirePHP->getEnabled()
* @return boolean TRUE if enabled
*/
public static function getEnabled() {
$instance = FirePHP::getInstance(true);
return $instance->getEnabled();
}
/**
* Specify a filter to be used when encoding an object
*
* Filters are used to exclude object members.
*
* @see FirePHP->setObjectFilter()
* @param string $Class The class name of the object
* @param array $Filter An array or members to exclude
* @return void
*/
public static function setObjectFilter($Class, $Filter) {
$instance = FirePHP::getInstance(true);
$instance->setObjectFilter($Class, $Filter);
}
/**
* Set some options for the library
*
* @see FirePHP->setOptions()
* @param array $Options The options to be set
* @return void
*/
public static function setOptions($Options) {
$instance = FirePHP::getInstance(true);
$instance->setOptions($Options);
}
/**
* Get options for the library
*
* @see FirePHP->getOptions()
* @return array The options
*/
public static function getOptions() {
$instance = FirePHP::getInstance(true);
return $instance->getOptions();
}
/**
* Log object to firebug
*
* @see http://www.firephp.org/Wiki/Reference/Fb
* @param mixed $Object
* @return true
* @throws Exception
*/
public static function send()
{
$instance = FirePHP::getInstance(true);
$args = func_get_args();
return call_user_func_array(array($instance,'fb'),$args);
}
/**
* Start a group for following messages
*
* Options:
* Collapsed: [true|false]
* Color: [#RRGGBB|ColorName]
*
* @param string $Name
* @param array $Options OPTIONAL Instructions on how to log the group
* @return true
*/
public static function group($Name, $Options=null) {
$instance = FirePHP::getInstance(true);
return $instance->group($Name, $Options);
}
/**
* Ends a group you have started before
*
* @return true
* @throws Exception
*/
public static function groupEnd() {
return self::send(null, null, FirePHP::GROUP_END);
}
/**
* Log object with label to firebug console
*
* @see FirePHP::LOG
* @param mixes $Object
* @param string $Label
* @return true
* @throws Exception
*/
public static function log($Object, $Label=null) {
return self::send($Object, $Label, FirePHP::LOG);
}
/**
* Log object with label to firebug console
*
* @see FirePHP::INFO
* @param mixes $Object
* @param string $Label
* @return true
* @throws Exception
*/
public static function info($Object, $Label=null) {
return self::send($Object, $Label, FirePHP::INFO);
}
/**
* Log object with label to firebug console
*
* @see FirePHP::WARN
* @param mixes $Object
* @param string $Label
* @return true
* @throws Exception
*/
public static function warn($Object, $Label=null) {
return self::send($Object, $Label, FirePHP::WARN);
}
/**
* Log object with label to firebug console
*
* @see FirePHP::ERROR
* @param mixes $Object
* @param string $Label
* @return true
* @throws Exception
*/
public static function error($Object, $Label=null) {
return self::send($Object, $Label, FirePHP::ERROR);
}
/**
* Dumps key and variable to firebug server panel
*
* @see FirePHP::DUMP
* @param string $Key
* @param mixed $Variable
* @return true
* @throws Exception
*/
public static function dump($Key, $Variable) {
return self::send($Variable, $Key, FirePHP::DUMP);
}
/**
* Log a trace in the firebug console
*
* @see FirePHP::TRACE
* @param string $Label
* @return true
* @throws Exception
*/
public static function trace($Label) {
return self::send($Label, FirePHP::TRACE);
}
/**
* Log a table in the firebug console
*
* @see FirePHP::TABLE
* @param string $Label
* @param string $Table
* @return true
* @throws Exception
*/
public static function table($Label, $Table) {
return self::send($Table, $Label, FirePHP::TABLE);
}
}

View File

@ -0,0 +1,251 @@
<?php
/* ***** BEGIN LICENSE BLOCK *****
*
* This file is part of FirePHP (http://www.firephp.org/).
*
* Software License Agreement (New BSD License)
*
* Copyright (c) 2006-2009, Christoph Dorn
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* * Neither the name of Christoph Dorn nor the names of its
* contributors may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
* ***** END LICENSE BLOCK *****
*
* @copyright Copyright (C) 2007-2009 Christoph Dorn
* @author Christoph Dorn <christoph@christophdorn.com>
* @author Michael Day <manveru.alma@gmail.com>
* @license http://www.opensource.org/licenses/bsd-license.php
* @package FirePHP
*/
require_once dirname(__FILE__).'/FirePHP.class.php4';
/**
* Sends the given data to the FirePHP Firefox Extension.
* The data can be displayed in the Firebug Console or in the
* "Server" request tab.
*
* @see http://www.firephp.org/Wiki/Reference/Fb
* @param mixed $Object
* @return true
* @throws Exception
*/
function fb()
{
$instance =& FirePHP::getInstance(true);
$args = func_get_args();
return call_user_func_array(array(&$instance,'fb'),$args);
}
class FB
{
/**
* Enable and disable logging to Firebug
*
* @see FirePHP->setEnabled()
* @param boolean $Enabled TRUE to enable, FALSE to disable
* @return void
*/
function setEnabled($Enabled) {
$instance =& FirePHP::getInstance(true);
$instance->setEnabled($Enabled);
}
/**
* Check if logging is enabled
*
* @see FirePHP->getEnabled()
* @return boolean TRUE if enabled
*/
function getEnabled() {
$instance =& FirePHP::getInstance(true);
return $instance->getEnabled();
}
/**
* Specify a filter to be used when encoding an object
*
* Filters are used to exclude object members.
*
* @see FirePHP->setObjectFilter()
* @param string $Class The class name of the object
* @param array $Filter An array or members to exclude
* @return void
*/
function setObjectFilter($Class, $Filter) {
$instance =& FirePHP::getInstance(true);
$instance->setObjectFilter($Class, $Filter);
}
/**
* Set some options for the library
*
* @see FirePHP->setOptions()
* @param array $Options The options to be set
* @return void
*/
function setOptions($Options) {
$instance =& FirePHP::getInstance(true);
$instance->setOptions($Options);
}
/**
* Get options for the library
*
* @see FirePHP->getOptions()
* @return array The options
*/
function getOptions() {
$instance =& FirePHP::getInstance(true);
return $instance->getOptions();
}
/**
* Log object to firebug
*
* @see http://www.firephp.org/Wiki/Reference/Fb
* @param mixed $Object
* @return true
*/
function send()
{
$instance =& FirePHP::getInstance(true);
$args = func_get_args();
return call_user_func_array(array(&$instance,'fb'),$args);
}
/**
* Start a group for following messages
*
* Options:
* Collapsed: [true|false]
* Color: [#RRGGBB|ColorName]
*
* @param string $Name
* @param array $Options OPTIONAL Instructions on how to log the group
* @return true
*/
function group($Name, $Options=null) {
$instance =& FirePHP::getInstance(true);
return $instance->group($Name, $Options);
}
/**
* Ends a group you have started before
*
* @return true
*/
function groupEnd() {
return FB::send(null, null, FirePHP_GROUP_END);
}
/**
* Log object with label to firebug console
*
* @see FirePHP::LOG
* @param mixes $Object
* @param string $Label
* @return true
*/
function log($Object, $Label=null) {
return FB::send($Object, $Label, FirePHP_LOG);
}
/**
* Log object with label to firebug console
*
* @see FirePHP::INFO
* @param mixes $Object
* @param string $Label
* @return true
*/
function info($Object, $Label=null) {
return FB::send($Object, $Label, FirePHP_INFO);
}
/**
* Log object with label to firebug console
*
* @see FirePHP::WARN
* @param mixes $Object
* @param string $Label
* @return true
*/
function warn($Object, $Label=null) {
return FB::send($Object, $Label, FirePHP_WARN);
}
/**
* Log object with label to firebug console
*
* @see FirePHP::ERROR
* @param mixes $Object
* @param string $Label
* @return true
*/
function error($Object, $Label=null) {
return FB::send($Object, $Label, FirePHP_ERROR);
}
/**
* Dumps key and variable to firebug server panel
*
* @see FirePHP::DUMP
* @param string $Key
* @param mixed $Variable
* @return true
*/
function dump($Key, $Variable) {
return FB::send($Variable, $Key, FirePHP_DUMP);
}
/**
* Log a trace in the firebug console
*
* @see FirePHP::TRACE
* @param string $Label
* @return true
*/
function trace($Label) {
return FB::send($Label, FirePHP_TRACE);
}
/**
* Log a table in the firebug console
*
* @see FirePHP::TABLE
* @param string $Label
* @param string $Table
* @return true
*/
function table($Label, $Table) {
return FB::send($Table, $Label, FirePHP_TABLE);
}
}

View File

@ -51,6 +51,11 @@ class GeonamesPlugin extends Plugin
{
const LOCATION_NS = 1;
public $host = 'ws.geonames.org';
public $username = null;
public $token = null;
public $expiry = 7776000; // 90-day expiry
/**
* convert a name into a Location object
*
@ -75,12 +80,11 @@ class GeonamesPlugin extends Plugin
// XXX: break down a name by commas, narrow by each
$str = http_build_query(array('maxRows' => 1,
'q' => $name,
'lang' => $language,
'type' => 'json'));
$result = $client->get('http://ws.geonames.org/search?'.$str);
$result = $client->get($this->wsUrl('search',
array('maxRows' => 1,
'q' => $name,
'lang' => $language,
'type' => 'json')));
if ($result->isOk()) {
$rj = json_decode($result->getBody());
@ -135,10 +139,9 @@ class GeonamesPlugin extends Plugin
$client = HTTPClient::start();
$str = http_build_query(array('geonameId' => $id,
'lang' => $language));
$result = $client->get('http://ws.geonames.org/hierarchyJSON?'.$str);
$result = $client->get($this->wsUrl('hierarchyJSON',
array('geonameId' => $id,
'lang' => $language)));
if ($result->isOk()) {
@ -195,6 +198,9 @@ class GeonamesPlugin extends Plugin
function onLocationFromLatLon($lat, $lon, $language, &$location)
{
$lat = rtrim($lat, "0");
$lon = rtrim($lon, "0");
$loc = $this->getCache(array('lat' => $lat,
'lon' => $lon));
@ -205,12 +211,11 @@ class GeonamesPlugin extends Plugin
$client = HTTPClient::start();
$str = http_build_query(array('lat' => $lat,
'lng' => $lon,
'lang' => $language));
$result =
$client->get('http://ws.geonames.org/findNearbyPlaceNameJSON?'.$str);
$client->get($this->wsUrl('findNearbyPlaceNameJSON',
array('lat' => $lat,
'lng' => $lon,
'lang' => $language)));
if ($result->isOk()) {
@ -286,10 +291,9 @@ class GeonamesPlugin extends Plugin
$client = HTTPClient::start();
$str = http_build_query(array('geonameId' => $location->location_id,
'lang' => $language));
$result = $client->get('http://ws.geonames.org/hierarchyJSON?'.$str);
$result = $client->get($this->wsUrl('hierarchyJSON',
array('geonameId' => $location->location_id,
'lang' => $language)));
if ($result->isOk()) {
@ -376,33 +380,30 @@ class GeonamesPlugin extends Plugin
{
$c = common_memcache();
if (!$c) {
if (empty($c)) {
return null;
}
return $c->get($this->cacheKey($attrs));
$key = $this->cacheKey($attrs);
$value = $c->get($key);
return $value;
}
function setCache($attrs, $loc)
{
$c = common_memcache();
if (!$c) {
if (empty($c)) {
return null;
}
$c->set($this->cacheKey($attrs), $loc);
}
$key = $this->cacheKey($attrs);
function clearCache($attrs)
{
$c = common_memcache();
$result = $c->set($key, $loc, 0, time() + $this->expiry);
if (!$c) {
return null;
}
$c->delete($this->cacheKey($attrs));
return $result;
}
function cacheKey($attrs)
@ -411,4 +412,19 @@ class GeonamesPlugin extends Plugin
implode(',', array_keys($attrs)) . ':'.
common_keyize(implode(',', array_values($attrs))));
}
function wsUrl($method, $params)
{
if (!empty($this->username)) {
$params['username'] = $this->username;
}
if (!empty($this->token)) {
$params['token'] = $this->token;
}
$str = http_build_query($params);
return 'http://'.$this->host.'/'.$method.'?'.$str;
}
}

View File

@ -67,11 +67,7 @@ class GoogleAnalyticsPlugin extends Plugin
'pageTracker._trackPageview();'.
'} catch(err) {}',
$this->code);
$action->elementStart('script', array('type' => 'text/javascript'));
$action->raw($js1);
$action->elementEnd('script');
$action->elementStart('script', array('type' => 'text/javascript'));
$action->raw($js2);
$action->elementEnd('script');
$action->inlineScript($js1);
$action->inlineScript($js2);
}
}

View File

@ -90,6 +90,7 @@ class MapstractionPlugin extends Plugin
{
case 'AllmapAction':
case 'UsermapAction':
case 'MapAction':
include_once INSTALLDIR.'/plugins/Mapstraction/' . strtolower(mb_substr($cls, 0, -6)) . '.php';
return false;
default:
@ -110,9 +111,9 @@ class MapstractionPlugin extends Plugin
function onEndShowScripts($action)
{
$actionName = $action->trimmed('action');
// These are the ones that have maps on 'em
if (!in_array($actionName,
array('showstream', 'all', 'allmap', 'usermap'))) {
array('showstream', 'all', 'usermap', 'allmap'))) {
return true;
}
@ -147,43 +148,20 @@ class MapstractionPlugin extends Plugin
$action->script(common_path('plugins/Mapstraction/usermap.js'));
$action->elementStart('script', array('type' => 'text/javascript'));
$action->raw(sprintf('var _provider = "%s";', $this->provider));
$action->elementEnd('script');
$action->inlineScript(sprintf('var _provider = "%s";', $this->provider));
switch ($actionName) {
case 'usermap':
case 'showstream':
$notice = empty($action->tag)
? $action->user->getNotices(($action->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1)
: $action->user->getTaggedNotices($action->tag, ($action->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1, 0, 0, null);
break;
case 'all':
case 'allmap':
$cur = common_current_user();
if (!empty($cur) && $cur->id == $action->user->id) {
$notice = $action->user->noticeInbox(($action->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
} else {
$notice = $action->user->noticesWithFriends(($action->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
}
break;
// usermap and allmap handle this themselves
if (in_array($actionName,
array('showstream', 'all'))) {
$action->inlineScript('$(document).ready(function() { '.
' var user = null; '.
(($actionName == 'showstream') ? ' user = scrapeUser(); ' : '') .
' var notices = scrapeNotices(user); ' .
' showMapstraction($("#map_canvas"), notices); '.
'});');
}
$jsonArray = array();
while ($notice->fetch()) {
if (!empty($notice->lat) && !empty($notice->lon)) {
$jsonNotice = $this->noticeAsJson($notice);
$jsonArray[] = $jsonNotice;
}
}
$action->elementStart('script', array('type' => 'text/javascript'));
$action->raw('/*<![CDATA[*/'); // XHTML compat for Safari
$action->raw('var _notices = ' . json_encode($jsonArray));
$action->raw('/*]]>*/'); // XHTML compat for Safari
$action->elementEnd('script');
return true;
}
@ -214,34 +192,4 @@ class MapstractionPlugin extends Plugin
$action->elementEnd('div');
}
function noticeAsJson($notice)
{
// FIXME: this code should be abstracted to a neutral third
// party, like Notice::asJson(). I'm not sure of the ethics
// of refactoring from within a plugin, so I'm just abusing
// the ApiAction method. Don't do this unless you're me!
require_once(INSTALLDIR.'/lib/api.php');
$act = new ApiAction('/dev/null');
$arr = $act->twitterStatusArray($notice, true);
$arr['url'] = $notice->bestUrl();
$arr['html'] = $notice->rendered;
$arr['source'] = $arr['source'];
if (!empty($notice->reply_to)) {
$reply_to = Notice::staticGet('id', $notice->reply_to);
if (!empty($reply_to)) {
$arr['in_reply_to_status_url'] = $reply_to->bestUrl();
}
$reply_to = null;
}
$profile = $notice->getProfile();
$arr['user']['profile_url'] = $profile->profileurl;
return $arr;
}
}

View File

@ -37,59 +37,26 @@ if (!defined('STATUSNET')) {
* @category Mapstraction
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @author Craig Andrews <candrews@integralblue.com>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
class AllmapAction extends OwnerDesignAction
class AllmapAction extends MapAction
{
var $profile = null;
var $page = null;
var $notices = null;
public $plugin = null;
function prepare($args)
{
parent::prepare($args);
$nickname_arg = $this->arg('nickname');
$nickname = common_canonical_nickname($nickname_arg);
// Permanent redirect on non-canonical nickname
if ($nickname_arg != $nickname) {
$args = array('nickname' => $nickname);
if ($this->arg('page') && $this->arg('page') != 1) {
$args['page'] = $this->arg['page'];
if(parent::prepare($args)) {
$cur = common_current_user();
if (!empty($cur) && $cur->id == $this->user->id) {
$this->notice = $this->user->noticeInbox(($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
} else {
$this->notice = $this->user->noticesWithFriends(($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
}
common_redirect(common_local_url($this->trimmed('action'), $args), 301);
return true;
}else{
return false;
}
$this->user = User::staticGet('nickname', $nickname);
if (!$this->user) {
$this->clientError(_('No such user.'), 404);
return false;
}
$this->profile = $this->user->getProfile();
if (!$this->profile) {
$this->serverError(_('User has no profile.'));
return false;
}
$page = $this->trimmed('page');
if (!empty($page) && Validate::number($page)) {
$this->page = $page+0;
} else {
$this->page = 1;
}
return true;
}
function title()
@ -109,17 +76,4 @@ class AllmapAction extends OwnerDesignAction
$this->page);
}
}
function handle($args)
{
parent::handle($args);
$this->showPage();
}
function showContent()
{
$this->element('div', array('id' => 'map_canvas',
'class' => 'gray smallmap',
'style' => "width: 100%; height: 400px"));
}
}

View File

@ -0,0 +1,167 @@
<?php
/**
* StatusNet, the distributed open-source microblogging tool
*
* Show a map of user's notices
*
* PHP version 5
*
* LICENCE: This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* @category Mapstraction
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @copyright 2009 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
if (!defined('STATUSNET')) {
exit(1);
}
/**
* Show a map of notices
*
* @category Mapstraction
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @author Craig Andrews <candrews@integralblue.com>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
class MapAction extends OwnerDesignAction
{
var $profile = null;
var $page = null;
var $notices = null;
function prepare($args)
{
parent::prepare($args);
$nickname_arg = $this->arg('nickname');
$nickname = common_canonical_nickname($nickname_arg);
// Permanent redirect on non-canonical nickname
if ($nickname_arg != $nickname) {
$args = array('nickname' => $nickname);
if ($this->arg('page') && $this->arg('page') != 1) {
$args['page'] = $this->arg['page'];
}
common_redirect(common_local_url($this->trimmed('action'), $args), 301);
return false;
}
$this->user = User::staticGet('nickname', $nickname);
if (!$this->user) {
$this->clientError(_('No such user.'), 404);
return false;
}
$this->profile = $this->user->getProfile();
if (!$this->profile) {
$this->serverError(_('User has no profile.'));
return false;
}
$page = $this->trimmed('page');
if (!empty($page) && Validate::number($page)) {
$this->page = $page+0;
} else {
$this->page = 1;
}
$this->notices = empty($this->tag)
? $this->user->getNotices(($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1)
: $this->user->getTaggedNotices($this->tag, ($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1, 0, 0, null);
return true;
}
function handle($args)
{
parent::handle($args);
$this->showPage();
}
function showContent()
{
$this->element('div', array('id' => 'map_canvas',
'class' => 'gray smallmap',
'style' => "width: 100%; height: 400px"));
}
/**
* Hook for adding extra JavaScript
*
* @param Action $action Action object for the page
*
* @return boolean event handler return
*/
function showScripts()
{
parent::showScripts();
$jsonArray = array();
while ($this->notice->fetch()) {
if (!empty($this->notice->lat) && !empty($this->notice->lon)) {
$jsonNotice = $this->noticeAsJson($this->notice);
$jsonArray[] = $jsonNotice;
}
}
$this->inlineScript('$(document).ready(function() { '.
' var _notices = ' . json_encode($jsonArray).'; ' .
'showMapstraction($("#map_canvas"), _notices); });');
return true;
}
function noticeAsJson($notice)
{
// FIXME: this code should be abstracted to a neutral third
// party, like Notice::asJson(). I'm not sure of the ethics
// of refactoring from within a plugin, so I'm just abusing
// the ApiAction method. Don't do this unless you're me!
require_once(INSTALLDIR.'/lib/api.php');
$act = new ApiAction('/dev/null');
$arr = $act->twitterStatusArray($notice, true);
$arr['url'] = $notice->bestUrl();
$arr['html'] = $notice->rendered;
$arr['source'] = $arr['source'];
if (!empty($notice->reply_to)) {
$reply_to = Notice::staticGet('id', $notice->reply_to);
if (!empty($reply_to)) {
$arr['in_reply_to_status_url'] = $reply_to->bestUrl();
}
$reply_to = null;
}
$profile = $notice->getProfile();
$arr['user']['profile_url'] = $profile->profileurl;
return $arr;
}
}

View File

@ -1,40 +1,32 @@
$(document).ready(function() {
function scrapeNotices(user)
{
var notices = [];
$(".notice").each(function(){
var notice = getNoticeFromElement($(this));
if(notice['geo'])
notices.push(notice);
var notice = getNoticeFromElement($(this));
if (user) {
notice['user'] = user;
} else {
notice['user'] = getUserFromElement($(this));
}
if(notice['geo'])
notices.push(notice);
});
if($("#map_canvas").length && notices.length>0)
{
showMapstraction($("#map_canvas"), notices);
}
$('.geo').click(function(){
var noticeElement = $(this).closest(".notice");
notice = getNoticeFromElement(noticeElement);
return notices;
}
$.fn.jOverlay.options = {
color : '#000',
opacity : '0.6',
zIndex : 99,
center : false,
bgClickToClose : true,
autoHide : true,
css : {'max-width':'542px', 'top':'5%', 'left':'32.5%'}
};
var html="<div id='map_canvas_popup' class='gray smallmap' style='width: 542px; height: 500px' />";
html+="<button class='close'>&#215;</button>";
html+=$("<div/>").append($(this).clone()).html();
$().jOverlay({ "html": html });
$('#jOverlayContent').show();
$('#jOverlayContent button').click($.closeOverlay);
function scrapeUser()
{
var avatarURL = $(".entity_profile .entity_depiction img.avatar").attr('src');
var profileURL = $(".entity_profile .entity_nickname .url").attr('href');
var nickname = $(".entity_profile .entity_nickname .nickname").text();
showMapstraction($("#map_canvas_popup"), notice);
return false;
});
});
return {
'profile_image_url': avatarURL,
'profile_url': profileURL,
'screen_name': nickname
};
}
function getMicroformatValue(element)
{
@ -48,23 +40,34 @@ function getMicroformatValue(element)
function getNoticeFromElement(noticeElement)
{
var notice = {};
if(noticeElement.find(".geo").length){
if(noticeElement.find(".geo").length) {
var latlon = noticeElement.find(".geo").attr('title').split(";");
notice['geo']={'coordinates': [
parseFloat(latlon[0]),
parseFloat(latlon[1])] };
}
notice['user']={
'profile_image_url': noticeElement.find("img.avatar").attr('src'),
'profile_url': noticeElement.find(".author a.url").attr('href'),
'screen_name': noticeElement.find(".author .nickname").text()
};
notice['html']=noticeElement.find(".entry-content").html();
notice['url']=noticeElement.find("a.timestamp").attr('href');
notice['created_at']=noticeElement.find("abbr.published").text();
notice['html'] = noticeElement.find(".entry-content").html();
notice['url'] = noticeElement.find("a.timestamp").attr('href');
notice['created_at'] = noticeElement.find("abbr.published").text();
return notice;
}
function getUserFromElement(noticeElement)
{
var avatarURL = noticeElement.find("img.avatar").attr('src');
var profileURL = noticeElement.find(".author a.url").attr('href');
var nickname = noticeElement.find(".author .nickname").text();
return {
'profile_image_url': avatarURL,
'profile_url': profileURL,
'screen_name': nickname
};
}
function showMapstraction(element, notices) {
if(element instanceof jQuery) element = element[0];
if(! $.isArray(notices)) notices = [notices];

View File

@ -37,61 +37,24 @@ if (!defined('STATUSNET')) {
* @category Mapstraction
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @author Craig Andrews <candrews@integralblue.com>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
class UsermapAction extends OwnerDesignAction
class UsermapAction extends MapAction
{
var $profile = null;
var $page = null;
var $notices = null;
public $plugin = null;
function prepare($args)
{
parent::prepare($args);
$nickname_arg = $this->arg('nickname');
$nickname = common_canonical_nickname($nickname_arg);
// Permanent redirect on non-canonical nickname
if ($nickname_arg != $nickname) {
$args = array('nickname' => $nickname);
if ($this->arg('page') && $this->arg('page') != 1) {
$args['page'] = $this->arg['page'];
}
common_redirect(common_local_url($this->trimmed('action'), $args), 301);
if(parent::prepare($args)) {
$this->notice = empty($this->tag)
? $this->user->getNotices(($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1)
: $this->user->getTaggedNotices($this->tag, ($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1, 0, 0, null);
return true;
}else{
return false;
}
$this->user = User::staticGet('nickname', $nickname);
if (!$this->user) {
$this->clientError(_('No such user.'), 404);
return false;
}
$this->profile = $this->user->getProfile();
if (!$this->profile) {
$this->serverError(_('User has no profile.'));
return false;
}
$page = $this->trimmed('page');
if (!empty($page) && Validate::number($page)) {
$this->page = $page+0;
} else {
$this->page = 1;
}
$this->notices = $this->user->getNotices(($this->page-1)*NOTICES_PER_PAGE, NOTICES_PER_PAGE + 1);
return true;
}
function title()
@ -110,17 +73,4 @@ class UsermapAction extends OwnerDesignAction
$this->page);
}
}
function handle($args)
{
parent::handle($args);
$this->showPage();
}
function showContent()
{
$this->element('div', array('id' => 'map_canvas',
'class' => 'gray smallmap',
'style' => "width: 100%; height: 400px"));
}
}

View File

@ -0,0 +1,168 @@
<?php
/*
StatusNet Plugin: 0.9
Plugin Name: Minify
Description: Minifies resources (Javascript and CSS)
Version: 0.1
Author: Craig Andrews <candrews@integralblue.com>
Author URI: http://candrews.integralblue.com/
*/
/*
* StatusNet - the distributed open-source microblogging tool
* Copyright (C) 2009, StatusNet, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @package MinifyPlugin
* @maintainer Craig Andrews <candrews@integralblue.com>
*/
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
// We bundle the minify library...
set_include_path(get_include_path() . PATH_SEPARATOR . dirname(__FILE__) . '/extlib/minify/min/lib');
class MinifyPlugin extends Plugin
{
private $minifyInlineJs = true;
private $minifyInlineCss = true;
const cacheKey = 'minify';
/**
* Add Minification related paths to the router table
*
* Hook for RouterInitialized event.
*
* @return boolean hook return
*/
function onStartInitializeRouter($m)
{
$m->connect('main/min',
array('action' => 'minify'));
return true;
}
function onAutoload($cls)
{
switch ($cls)
{
case 'MinifyAction':
require_once(INSTALLDIR.'/plugins/Minify/' . strtolower(mb_substr($cls, 0, -6)) . '.php');
return false;
default:
return true;
}
}
function onLoginAction($action, &$login)
{
switch ($action)
{
case 'minify':
$login = true;
return false;
default:
return true;
}
}
function onStartScriptElement($action,&$src,&$type) {
$url = parse_url($src);
if( empty($url->scheme) && empty($url->host) && empty($url->query) && empty($url->fragment))
{
$src = $this->minifyUrl($src);
}
}
function onStartCssLinkElement($action,&$src,&$theme,&$media) {
$allowThemeMinification =
is_null(common_config('theme', 'dir'))
&& is_null(common_config('theme', 'path'))
&& is_null(common_config('theme', 'server'));
$url = parse_url($src);
if( empty($url->scheme) && empty($url->host) && empty($url->query) && empty($url->fragment))
{
if(!isset($theme)) {
$theme = common_config('site', 'theme');
}
if($allowThemeMinification && file_exists(INSTALLDIR.'/local/theme/'.$theme.'/'.$src)) {
$src = $this->minifyUrl('local/theme/'.$theme.'/'.$src);
} else if($allowThemeMinification && file_exists(INSTALLDIR.'/theme/'.$theme.'/'.$src)) {
$src = $this->minifyUrl('theme/'.$theme.'/'.$src);
}else if(file_exists(INSTALLDIR.'/'.$src)){
$src = $this->minifyUrl($src);
}
}
}
function onStartInlineScriptElement($action,&$code,&$type)
{
if($this->minifyInlineJs && $type=='text/javascript'){
$c = common_memcache();
if (!empty($c)) {
$cacheKey = common_cache_key(self::cacheKey . ':' . crc32($code));
$out = $c->get($cacheKey);
}
if(empty($out)) {
$out = $this->minifyJs($code);
}
if (!empty($c)) {
$c->set($cacheKey, $out);
}
if(!empty($out)) {
$code = $out;
}
}
}
function onStartStyleElement($action,&$code,&$type,&$media)
{
if($this->minifyInlineCss && $type=='text/css'){
$c = common_memcache();
if (!empty($c)) {
$cacheKey = common_cache_key(self::cacheKey . ':' . crc32($code));
$out = $c->get($cacheKey);
}
if(empty($out)) {
$out = $this->minifyCss($code);
}
if (!empty($c)) {
$c->set($cacheKey, $out);
}
if(!empty($out)) {
$code = $out;
}
}
}
function minifyUrl($src) {
return common_local_url('minify',null,array('f' => $src ,v => STATUSNET_VERSION));
}
static function minifyJs($code) {
require_once('JSMin.php');
return JSMin::minify($code);
}
static function minifyCss($code, $options = array()) {
require_once('Minify/CSS.php');
return Minify_CSS::minify($code,$options);
}
}

34
plugins/Minify/README Normal file
View File

@ -0,0 +1,34 @@
The Minify plugin minifies your CSS and Javascript, removing whitespace and comments.
Note that if enabled this plugin and use a theme server,
(if any of $config['theme']['server'], $config['theme']['path'],
$config['theme']['dir'] are set) theme CSS will not be minified.
This plugin will use memcache, if it is available, for storing minified inline
and file javascript and css. Because minification is non-trivial, using
memcache is recommended.
Installation
============
add "addPlugin('minify',
array('setting'=>'value', 'setting2'=>'value2', ...);"
to the bottom of your config.php
Settings
========
minifyInlineJs (true): Minify inline javascript.
Because caching isn'tas effective for inline resources (due to its more
dynamic nature) than static files, minifying inline resources may adversely
affect performance for higher volume sites. Testing (and memcache usage)
are highly recommended.
minifyInlineCss (true): Minify inline CSS.
Because caching isn'tas effective for inline resources (due to its more
dynamic nature) than static files, minifying inline resources may adversely
affect performance for higher volume sites. Testing (and memcache usage)
are highly recommended.
Example
=======
addPlugin('minify', array());

View File

@ -0,0 +1,75 @@
Minify Release History
Version 2.1.3
* HTTP fixes
* ETag generation now valid (different when gzipped)
* Vary header always sent when Accept-Encoding is sniffed
* Cache-Control no longer has "must-revalidate" due to webkit bug
See: http://mrclay.org/index.php/2009/02/24/safari-4-beta-cache-controlmust-revalidate-bug/
* Dropped deflate encoding. Browser and proxy support could be buggy.
See: http://stackoverflow.com/questions/883841/
* File cache now works w/o setting $min_cachePath
* Allow setting contentType in Minify_Source objects
* No more 5.3 deprecation warnings: split() removed
Version 2.1.2
* Javascript fixes
* Debug mode no longer confused by "*/*" in strings/RegExps (jQuery)
* quote characters inside RegExp literals no longer cause exception
* files ending in single-line comments no longer cause code loss
* CSS: data: URLs no longer mangled
* Optional error logging to Firefox's FirePHP extension
* Unit tests to check for common DOCUMENT_ROOT problems
* DOCUMENT_ROOT no longer overwritten on IIS servers
* Builder app doesn't fail on systems without gzdeflate()
* APC caching class included
Version 2.1.1
* Bug fix release
* Detection and workarounds for zlib.output_compression and non-PHP encoding modules
* Zlib not required (mod_rewrite, et.al., can still be used for encoding)
* HTML : More IE conditional comments preserved
* Minify_groupUri() utility fixed
Version 2.1.0
* "min" default application for quick deployment
* Minify URI Builder app & bookmarklet for quickly creating minify URIs
* Relative URIs in CSS file are fixed automatically by default
* "debug" mode for revealing original line #s in combined files
* Better IIS support
* Improved minifier classes:
* JS: preserves IE conditional comments
* CSS: smaller output, preserves more hacks and valid CSS syntax,
shorter line lengths, other bug fixes
* HTML: smaller output, shorter line lengths, other bug fixes
* Default Cache-Control: max-age of 30 minutes
* Conditional GETs supported even when max-age sent
* Experimental memcache cache class (default is files)
* Minify_Cache_File has flock()s (by default)
* Workaround for Windows mtime reporting bug
Version 2.0.2 beta (2008-06-24)
* Fast new cache system. Cached files served almost 3x as fast.
* Dropped support of compress encoding (though HTTP_Encoder still supports it)
Version 2.0.1 (2008-05-31)
* E_STRICT compliance (Cache_Lite_File).
Version 2.0.0 (2008-05-22)
* Complete code overhaul. Minify is now a PEAR-style class and toolkit
for building customized minifying file servers.
* Content-Encoding: deflate/gzip/compress, based on request headers
* Expanded CSS and HTML minifiers with test cases
* Easily plug-in 3rd-party minifiers (like Packer)
* Plug-able front end controller allows changing the way files are chosen
* Compression & encoding modules lazy-loaded as needed (304 responses use
use minimal code)
* Separate utility classes for HTTP encoding and cache control
Version 1.0.1 (2007-05-05)
* Fixed various problems resolving pathnames when hosted on an NFS mount.
* Fixed 'undefined constant' notice.
* Replaced old JSMin library with a much faster custom implementation.
Version 1.0.0 (2007-05-02)
* First release.

View File

@ -0,0 +1,26 @@
Copyright (c) 2008 Ryan Grove <ryan@wonko.com>
Copyright (c) 2008 Steve Clay <steve@mrclay.org>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of this project nor the names of its contributors may be
used to endorse or promote products derived from this software without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

View File

@ -0,0 +1,53 @@
WELCOME TO MINIFY 2.1!
Minify is an HTTP content server. It compresses sources of content
(usually files), combines the result and serves it with appropriate
HTTP headers. These headers can allow clients to perform conditional
GETs (serving content only when clients do not have a valid cache)
and tell clients to cache the file for a period of time.
More info: http://code.google.com/p/minify/
UPGRADING
See UPGRADING.txt for instructions.
INSTALLATION AND USAGE:
1. Place the /min/ directory as a child of your DOCUMENT_ROOT
directory: i.e. you will have: /home/user/www/public_html/min
2. Open http://yourdomain/min/ in a web browser. This will forward
you to the Minify URI Builder application, which will help you
quickly start using Minify to serve content on your site.
UNIT TESTING:
1. Place the /min_unit_tests/ directory as a child of your DOCUMENT_ROOT
directory: i.e. you will have: /home/user/www/public_html/min_unit_tests
2. To run unit tests, access: http://yourdomain/min_unit_tests/test_all.php
(If you wish, the other test_*.php files can be run to test individual
components with more verbose output.)
3. Remove /min_unit_tests/ from your DOCUMENT_ROOT when you are done.
EXTRAS:
The min_extras folder contains files for benchmarking using Apache ab on Windows
and a couple single-use tools. DO NOT place this on your production server.
FILE ENCODINGS
Minify *should* work fine with files encoded in UTF-8 or other 8-bit
encodings like ISO 8859/Windows-1252. By default Minify appends
";charset=utf-8" to the Content-Type headers it sends.
Leading UTF-8 BOMs are stripped from all sources to prevent
duplication in output files, and files are converted to Unix newlines.

View File

@ -0,0 +1,35 @@
Minify Upgrade Guide
UPGRADING FROM 2.1.*
1. Rename the following files:
/min/config.php --> /min/old_config.php
/min/groupsConfig.php --> /min/old_groupsConfig.php
2. Overwrite all files in /min (and /min_unit_tests) with those from this zip.
3. Delete /min/groupsConfig.php
4. Rename /min/old_groupsConfig.php --> /min/groupsConfig.php
5. Merge your settings in old_config.php into config.php.
* If you've set $_SERVER['DOCUMENT_ROOT'], instead set the new option
$min_documentRoot. This is advantageous on IIS systems because Minify
will no longer overwrite the path you specified.
* $min_errorLogger adds the ability to enable FirePHP logging.
6. (optional) Delete /min/old_config.php and the Minify files from your cache
directory (specified in $min_cachePath).
INSTALLING FRESH
See README.txt for instructions on installing this app for the first time.
SUPPORT
Send a message to http://groups.google.com/group/minify

View File

@ -0,0 +1,132 @@
The files in this directory represent the default Minify setup designed to ease
integration with your site. This app will combine and minify your Javascript or
CSS files and serve them with HTTP compression and cache headers.
RECOMMENDED
It's recommended to edit config.php to set $min_cachePath to a writeable
(by PHP) directory on your system. This will improve performance.
GETTING STARTED
The quickest way to get started is to use the Minify URI Builder application
on your website: http://example.com/min/builder/
MINIFYING A SINGLE FILE
Let's say you want to serve this file:
http://example.com/wp-content/themes/default/default.css
Here's the "Minify URL" for this file:
http://example.com/min/?f=wp-content/themes/default/default.css
In other words, the "f" argument is set to the file path from root without the
initial "/". As CSS files may contain relative URIs, Minify will automatically
"fix" these by rewriting them as root relative.
COMBINING MULTIPLE FILES IN ONE DOWNLOAD
Separate the paths given to "f" with commas.
Let's say you have CSS files at these URLs:
http://example.com/scripts/jquery-1.2.6.js
http://example.com/scripts/site.js
You can combine these files through Minify by requesting this URL:
http://example.com/min/?f=scripts/jquery-1.2.6.js,scripts/site.js
SIMPLIFYING URLS WITH A BASE PATH
If you're combining files that share the same ancestor directory, you can use
the "b" argument to set the base directory for the "f" argument. Do not include
the leading or trailing "/" characters.
E.g., the following URLs will serve the exact same content:
http://example.com/min/?f=scripts/jquery-1.2.6.js,scripts/site.js,scripts/home.js
http://example.com/min/?b=scripts&f=jquery-1.2.6.js,site.js,home.js
MINIFY URLS IN HTML
In (X)HTML files, don't forget to replace any "&" characters with "&amp;".
SPECIFYING ALLOWED DIRECTORIES
By default, Minify will serve any *.css/*.js files within the DOCUMENT_ROOT. If
you'd prefer to limit Minify's access to certain directories, set the
$min_serveOptions['minApp']['allowDirs'] array in config.php. E.g. to limit
to the /js and /themes/default directories, use:
$min_serveOptions['minApp']['allowDirs'] = array('//js', '//themes/default');
GROUPS: FASTER PERFORMANCE AND BETTER URLS
For the best performance, edit groupsConfig.php to pre-specify groups of files
to be combined under preset keys. E.g., here's an example configuration in
groupsConfig.php:
return array(
'js' => array('//js/Class.js', '//js/email.js')
);
This pre-selects the following files to be combined under the key "js":
http://example.com/js/Class.js
http://example.com/js/email.js
You can now serve these files with this simple URL:
http://example.com/min/?g=js
GROUPS: SPECIFYING FILES OUTSIDE THE DOC_ROOT
In the groupsConfig.php array, the "//" in the file paths is a shortcut for
the DOCUMENT_ROOT, but you can also specify paths from the root of the filesystem
or relative to the DOC_ROOT:
return array(
'js' => array(
'//js/file.js' // file within DOC_ROOT
,'//../file.js' // file in parent directory of DOC_ROOT
,'C:/Users/Steve/file.js' // file anywhere on filesystem
)
);
FAR-FUTURE EXPIRES HEADERS
Minify can send far-future (one year) Expires headers. To enable this you must
add a number to the querystring (e.g. /min/?g=js&1234 or /min/f=file.js&1234)
and alter it whenever a source file is changed. If you have a build process you
can use a build/source control revision number.
If you serve files as a group, you can use the utility function Minify_groupUri()
to get a "versioned" Minify URI for use in your HTML. E.g.:
<?php
// add /min/lib to your include_path first!
require $_SERVER['DOCUMENT_ROOT'] . '/min/utils.php';
$jsUri = Minify_groupUri('js');
echo "<script type='text/javascript' src='{$jsUri}'></script>";
DEBUG MODE
In debug mode, instead of compressing files, Minify sends combined files with
comments prepended to each line to show the line number in the original source
file. To enable this, set $min_allowDebugFlag to true in config.php and append
"&debug=1" to your URIs. E.g. /min/?f=script1.js,script2.js&debug=1
Known issue: files with comment-like strings/regexps can cause problems in this mode.
QUESTIONS?
http://groups.google.com/group/minify

View File

@ -0,0 +1,242 @@
var MUB = {
_uid : 0
,_minRoot : '/min/?'
,checkRewrite : function () {
var testUri = location.pathname.replace(/\/[^\/]*$/, '/rewriteTest.js').substr(1);
function fail() {
$('#minRewriteFailed')[0].className = 'topNote';
};
$.ajax({
url : '../f=' + testUri + '&' + (new Date()).getTime()
,success : function (data) {
if (data === '1') {
MUB._minRoot = '/min/';
$('span.minRoot').html('/min/');
} else
fail();
}
,error : fail
});
}
/**
* Get markup for new source LI element
*/
,newLi : function () {
return '<li id="li' + MUB._uid + '">http://' + location.host + '/<input type=text size=20>'
+ ' <button title="Remove">x</button> <button title="Include Earlier">&uarr;</button>'
+ ' <button title="Include Later">&darr;</button> <span></span></li>';
}
/**
* Add new empty source LI and attach handlers to buttons
*/
,addLi : function () {
$('#sources').append(MUB.newLi());
var li = $('#li' + MUB._uid)[0];
$('button[title=Remove]', li).click(function () {
$('#results').hide();
var hadValue = !!$('input', li)[0].value;
$(li).remove();
});
$('button[title$=Earlier]', li).click(function () {
$(li).prev('li').find('input').each(function () {
$('#results').hide();
// this = previous li input
var tmp = this.value;
this.value = $('input', li).val();
$('input', li).val(tmp);
MUB.updateAllTestLinks();
});
});
$('button[title$=Later]', li).click(function () {
$(li).next('li').find('input').each(function () {
$('#results').hide();
// this = next li input
var tmp = this.value;
this.value = $('input', li).val();
$('input', li).val(tmp);
MUB.updateAllTestLinks();
});
});
++MUB._uid;
}
/**
* In the context of a source LI element, this will analyze the URI in
* the INPUT and check the URL on the site.
*/
,liUpdateTestLink : function () { // call in context of li element
if (! $('input', this)[0].value)
return;
var li = this;
$('span', this).html('');
var url = 'http://' + location.host + '/'
+ $('input', this)[0].value.replace(/^\//, '');
$.ajax({
url : url
,complete : function (xhr, stat) {
if ('success' == stat)
$('span', li).html('&#x2713;');
else {
$('span', li).html('<button><b>404! </b> recheck</button>')
.find('button').click(function () {
MUB.liUpdateTestLink.call(li);
});
}
}
,dataType : 'text'
});
}
/**
* Check all source URLs
*/
,updateAllTestLinks : function () {
$('#sources li').each(MUB.liUpdateTestLink);
}
/**
* In a given array of strings, find the character they all have at
* a particular index
* @param Array arr array of strings
* @param Number pos index to check
* @return mixed a common char or '' if any do not match
*/
,getCommonCharAtPos : function (arr, pos) {
var i
,l = arr.length
,c = arr[0].charAt(pos);
if (c === '' || l === 1)
return c;
for (i = 1; i < l; ++i)
if (arr[i].charAt(pos) !== c)
return '';
return c;
}
/**
* Get the shortest URI to minify the set of source files
* @param Array sources URIs
*/
,getBestUri : function (sources) {
var pos = 0
,base = ''
,c;
while (true) {
c = MUB.getCommonCharAtPos(sources, pos);
if (c === '')
break;
else
base += c;
++pos;
}
base = base.replace(/[^\/]+$/, '');
var uri = MUB._minRoot + 'f=' + sources.join(',');
if (base.charAt(base.length - 1) === '/') {
// we have a base dir!
var basedSources = sources
,i
,l = sources.length;
for (i = 0; i < l; ++i) {
basedSources[i] = sources[i].substr(base.length);
}
base = base.substr(0, base.length - 1);
var bUri = MUB._minRoot + 'b=' + base + '&f=' + basedSources.join(',');
//window.console && console.log([uri, bUri]);
uri = uri.length < bUri.length
? uri
: bUri;
}
return uri;
}
/**
* Create the Minify URI for the sources
*/
,update : function () {
MUB.updateAllTestLinks();
var sources = []
,ext = false
,fail = false;
$('#sources input').each(function () {
var m, val;
if (! fail && this.value && (m = this.value.match(/\.(css|js)$/))) {
var thisExt = m[1];
if (ext === false)
ext = thisExt;
else if (thisExt !== ext) {
fail = true;
return alert('extensions must match!');
}
this.value = this.value.replace(/^\//, '');
if (-1 != $.inArray(this.value, sources)) {
fail = true;
return alert('duplicate file!');
}
sources.push(this.value);
}
});
if (fail || ! sources.length)
return;
$('#groupConfig').val(" 'keyName' => array('//" + sources.join("', '//") + "'),");
var uri = MUB.getBestUri(sources)
,uriH = uri.replace(/</, '&lt;').replace(/>/, '&gt;').replace(/&/, '&amp;');
$('#uriA').html(uriH)[0].href = uri;
$('#uriHtml').val(
ext === 'js'
? '<script type="text/javascript" src="' + uriH + '"></script>'
: '<link type="text/css" rel="stylesheet" href="' + uriH + '" />'
);
$('#results').show();
}
/**
* Handler for the "Add file +" button
*/
,addButtonClick : function () {
$('#results').hide();
MUB.addLi();
MUB.updateAllTestLinks();
$('#update').show().click(MUB.update);
$('#sources li:last input')[0].focus();
}
/**
* Runs on DOMready
*/
,init : function () {
$('#app').show();
$('#sources').html('');
$('#add button').click(MUB.addButtonClick);
// make easier to copy text out of
$('#uriHtml, #groupConfig').click(function () {
this.select();
}).focus(function () {
this.select();
});
$('a.ext').attr({target:'_blank'});
if (location.hash) {
// make links out of URIs from bookmarklet
$('#getBm').hide();
$('#bmUris').html('<p><strong>Found by bookmarklet:</strong> /<a href=#>'
+ location.hash.substr(1).split(',').join('</a> | /<a href=#>')
+ '</a></p>'
);
$('#bmUris a').click(function () {
MUB.addButtonClick();
$('#sources li:last input').val(this.innerHTML)
MUB.liUpdateTestLink.call($('#sources li:last')[0]);
$('#results').hide();
return false;
}).attr({title:'Add file +'});
} else {
// copy bookmarklet code into href
var bmUri = location.pathname.replace(/\/[^\/]*$/, '/bm.js').substr(1);
$.ajax({
url : '../?f=' + bmUri
,success : function (code) {
$('#bm')[0].href = code
.replace('%BUILDER_URL%', location.href)
.replace(/\n/g, ' ');
}
,dataType : 'text'
});
$.browser.msie && $('#getBm p:last').append(' Sorry, not supported in MSIE!');
MUB.addButtonClick();
}
MUB.checkRewrite();
}
};
window.onload = MUB.init;

View File

@ -0,0 +1,36 @@
javascript:(function() {
var d = document
,uris = []
,i = 0
,o
,home = (location + '').split('/').splice(0, 3).join('/') + '/';
function add(uri) {
return (0 === uri.indexOf(home))
&& (!/[\?&]/.test(uri))
&& uris.push(escape(uri.substr(home.length)));
};
function sheet(ss) {
// we must check the domain with add() before accessing ss.cssRules
// otherwise a security exception will be thrown
if (ss.href && add(ss.href) && ss.cssRules) {
var i = 0, r;
while (r = ss.cssRules[i++])
r.styleSheet && sheet(r.styleSheet);
}
};
while (o = d.getElementsByTagName('script')[i++])
o.src && !(o.type && /vbs/i.test(o.type)) && add(o.src);
i = 0;
while (o = d.styleSheets[i++])
/* http://www.w3.org/TR/DOM-Level-2-Style/stylesheets.html#StyleSheets-DocumentStyle-styleSheets
document.styleSheet is a list property where [0] accesses the 1st element and
[outOfRange] returns null. In IE, styleSheets is a function, and also throws an
exception when you check the out of bounds index. (sigh) */
sheet(o);
if (uris.length)
window.open('%BUILDER_URL%#' + uris.join(','));
else
alert('No js/css files found with URLs within "'
+ home.split('/')[2]
+ '".\n(This tool is limited to URLs with the same domain.)');
})();

View File

@ -0,0 +1,182 @@
<?php
if (phpversion() < 5) {
exit('Minify requires PHP5 or greater.');
}
// check for auto-encoding
$encodeOutput = (function_exists('gzdeflate')
&& !ini_get('zlib.output_compression'));
require dirname(__FILE__) . '/../config.php';
if (! $min_enableBuilder) {
header('Location: /');
exit();
}
ob_start();
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<head>
<meta name="ROBOTS" content="NOINDEX, NOFOLLOW">
<title>Minify URI Builder</title>
<style type="text/css">
body {margin:1em 60px;}
h1, h2, h3 {margin-left:-25px; position:relative;}
h1 {margin-top:0;}
#sources {margin:0; padding:0;}
#sources li {margin:0 0 0 40px}
#sources li input {margin-left:2px}
#add {margin:5px 0 1em 40px}
.hide {display:none}
#uriTable {border-collapse:collapse;}
#uriTable td, #uriTable th {padding-top:10px;}
#uriTable th {padding-right:10px;}
#groupConfig {font-family:monospace;}
b {color:#c00}
.topNote {background: #ff9; display:inline-block; padding:.5em .6em; margin:0 0 1em;}
.topWarning {background:#c00; color:#fff; padding:.5em .6em; margin:0 0 1em;}
</style>
</head>
<?php if (! isset($min_cachePath)): ?>
<p class=topNote><strong>Note:</strong> Please set <code>$min_cachePath</code>
in /min/config.php to improve performance.</p>
<?php endIf; ?>
<p id=minRewriteFailed class="hide"><strong>Note:</strong> Your webserver does not seem to
support mod_rewrite (used in /min/.htaccess). Your Minify URIs will contain "?", which
<a href="http://www.stevesouders.com/blog/2008/08/23/revving-filenames-dont-use-querystring/"
>may reduce the benefit of proxy cache servers</a>.</p>
<h1>Minify URI Builder</h1>
<noscript><p class="topNote">Javascript and a browser supported by jQuery 1.2.6 is required
for this application.</p></noscript>
<div id=app class=hide>
<p>Create a list of Javascript or CSS files (or 1 is fine) you'd like to combine
and click [Update].</p>
<ol id=sources><li></li></ol>
<div id=add><button>Add file +</button></div>
<div id=bmUris></div>
<p><button id=update class=hide>Update</button></p>
<div id=results class=hide>
<h2>Minify URI</h2>
<p>Place this URI in your HTML to serve the files above combined, minified, compressed and
with cache headers.</p>
<table id=uriTable>
<tr><th>URI</th><td><a id=uriA class=ext>/min</a> <small>(opens in new window)</small></td></tr>
<tr><th>HTML</th><td><input id=uriHtml type=text size=100 readonly></td></tr>
</table>
<h2>How to serve these files as a group</h2>
<p>For the best performance you can serve these files as a pre-defined group with a URI
like: <code><span class=minRoot>/min/?</span>g=keyName</code></p>
<p>To do this, add a line like this to /min/groupsConfig.php:</p>
<pre><code>return array(
<span style="color:#666">... your existing groups here ...</span>
<input id=groupConfig size=100 type=text readonly>
);</code></pre>
<p><em>Make sure to replace <code>keyName</code> with a unique key for this group.</em></p>
</div>
<div id=getBm>
<h3>Find URIs on a Page</h3>
<p>You can use the bookmarklet below to fetch all CSS &amp; Javascript URIs from a page
on your site. When you active it, this page will open in a new window with a list of
available URIs to add.</p>
<p><a id=bm>Create Minify URIs</a> <small>(right-click, add to bookmarks)</small></p>
</div>
<h3>Combining CSS files that contain <code>@import</code></h3>
<p>If your CSS files contain <code>@import</code> declarations, Minify will not
remove them. Therefore, you will want to remove those that point to files already
in your list, and move any others to the top of the first file in your list
(imports below any styles will be ignored by browsers as invalid).</p>
<p>If you desire, you can use Minify URIs in imports and they will not be touched
by Minify. E.g. <code>@import "<span class=minRoot>/min/?</span>g=css2";</code></p>
</div><!-- #app -->
<hr>
<p>Need help? Search or post to the <a class=ext
href="http://groups.google.com/group/minify">Minify discussion list</a>.</p>
<p><small>This app is minified :) <a class=ext
href="http://code.google.com/p/minify/source/browse/trunk/min/builder/index.php">view
source</a></small></p>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
<script type="text/javascript">
$(function () {
// detection of double output encoding
var msg = '<\p class=topWarning><\strong>Warning:<\/strong> ';
var url = 'ocCheck.php?' + (new Date()).getTime();
$.get(url, function (ocStatus) {
$.get(url + '&hello=1', function (ocHello) {
if (ocHello != 'World!') {
msg += 'It appears output is being automatically compressed, interfering '
+ ' with Minify\'s own compression. ';
if (ocStatus == '1')
msg += 'The option "zlib.output_compression" is enabled in your PHP configuration. '
+ 'Minify set this to "0", but it had no effect. This option must be disabled '
+ 'in php.ini or .htaccess.';
else
msg += 'The option "zlib.output_compression" is disabled in your PHP configuration '
+ 'so this behavior is likely due to a server option.';
$(document.body).prepend(msg + '<\/p>');
} else
if (ocStatus == '1')
$(document.body).prepend('<\p class=topNote><\strong>Note:</\strong> The option '
+ '"zlib.output_compression" is enabled in your PHP configuration, but has been '
+ 'successfully disabled via ini_set(). If you experience mangled output you '
+ 'may want to consider disabling this option in your PHP configuration.<\/p>'
);
});
});
});
</script>
<script type="text/javascript">
// workaround required to test when /min isn't child of web root
var src = location.pathname.replace(/\/[^\/]*$/, '/_index.js').substr(1);
document.write('<\script type="text/javascript" src="../?f=' + src + '"><\/script>');
</script>
<?php
$serveOpts = array(
'content' => ob_get_contents()
,'id' => __FILE__
,'lastModifiedTime' => max(
// regenerate cache if either of these change
filemtime(__FILE__)
,filemtime(dirname(__FILE__) . '/../config.php')
)
,'minifyAll' => true
,'encodeOutput' => $encodeOutput
);
ob_end_clean();
set_include_path(dirname(__FILE__) . '/../lib' . PATH_SEPARATOR . get_include_path());
require 'Minify.php';
if (0 === stripos(PHP_OS, 'win')) {
Minify::setDocRoot(); // we may be on IIS
}
Minify::setCache(isset($min_cachePath) ? $min_cachePath : null);
Minify::$uploaderHoursBehind = $min_uploaderHoursBehind;
Minify::serve('Page', $serveOpts);

View File

@ -0,0 +1,36 @@
<?php
/**
* AJAX checks for zlib.output_compression
*
* @package Minify
*/
$_oc = ini_get('zlib.output_compression');
// allow access only if builder is enabled
require dirname(__FILE__) . '/../config.php';
if (! $min_enableBuilder) {
header('Location: /');
exit();
}
if (isset($_GET['hello'])) {
// echo 'World!'
// try to prevent double encoding (may not have an effect)
ini_set('zlib.output_compression', '0');
require $min_libPath . '/HTTP/Encoder.php';
HTTP_Encoder::$encodeToIe6 = true; // just in case
$he = new HTTP_Encoder(array(
'content' => 'World!'
,'method' => 'deflate'
));
$he->encode();
$he->sendAll();
} else {
// echo status "0" or "1"
header('Content-Type: text/plain');
echo (int)$_oc;
}

View File

@ -0,0 +1 @@
1

View File

@ -0,0 +1,34 @@
<?php
/**
* Groups configuration for default Minify implementation
* @package Minify
*/
/**
* You may wish to use the Minify URI Builder app to suggest
* changes. http://yourdomain/min/builder/
**/
return array(
// 'js' => array('//js/file1.js', '//js/file2.js'),
// 'css' => array('//css/file1.css', '//css/file2.css'),
// custom source example
/*'js2' => array(
dirname(__FILE__) . '/../min_unit_tests/_test_files/js/before.js',
// do NOT process this file
new Minify_Source(array(
'filepath' => dirname(__FILE__) . '/../min_unit_tests/_test_files/js/before.js',
'minifier' => create_function('$a', 'return $a;')
))
),//*/
/*'js3' => array(
dirname(__FILE__) . '/../min_unit_tests/_test_files/js/before.js',
// do NOT process this file
new Minify_Source(array(
'filepath' => dirname(__FILE__) . '/../min_unit_tests/_test_files/js/before.js',
'minifier' => array('Minify_Packer', 'minify')
))
),//*/
);

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