Merge commit 'origin/0.9.x' into 0.9.x

This commit is contained in:
Brenda Wallace 2009-12-08 23:45:54 +00:00
commit a5c11cc92a
195 changed files with 23402 additions and 4604 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

18
Makefile Normal file
View File

@ -0,0 +1,18 @@
# Warning: do not transform tabs to spaces in this file.
all : translations
core_mo = $(patsubst %.po,%.mo,$(wildcard locale/*/LC_MESSAGES/statusnet.po))
plugin_mo = $(patsubst %.po,%.mo,$(wildcard plugins/*/locale/*/LC_MESSAGES/*.po))
translations : $(core_mo) $(plugin_mo)
clean :
rm -f $(core_mo) $(plugin_mo)
updatepo :
php scripts/update_po_templates.php --all
%.mo : %.po
msgfmt -o $@ $<

View File

@ -144,7 +144,7 @@ class AllAction extends ProfileAction
function showContent()
{
$nl = new NoticeList($this->notice, $this);
$nl = new InboxNoticeList($this->notice, $this->user, $this);
$cnt = $nl->show();
@ -160,12 +160,95 @@ 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 {
$this->element('h1', null, sprintf(_('%s and friends'), $this->user->nickname));
}
}
}
class InboxNoticeList extends NoticeList
{
var $owner = null;
function __construct($notice, $owner, $out=null)
{
parent::__construct($notice, $out);
$this->owner = $owner;
}
function newListItem($notice)
{
return new InboxNoticeListItem($notice, $this->owner, $this->out);
}
}
class InboxNoticeListItem extends NoticeListItem
{
var $owner = null;
var $ib = null;
function __construct($notice, $owner, $out=null)
{
parent::__construct($notice, $out);
$this->owner = $owner;
$this->ib = Notice_inbox::pkeyGet(array('user_id' => $owner->id,
'notice_id' => $notice->id));
}
function showAuthor()
{
parent::showAuthor();
if ($this->ib->source == NOTICE_INBOX_SOURCE_FORWARD) {
$this->out->element('span', 'forward', _('Fwd'));
}
}
function showEnd()
{
if ($this->ib->source == NOTICE_INBOX_SOURCE_FORWARD) {
$forward = new Forward();
// FIXME: scary join!
$forward->query('SELECT profile_id '.
'FROM forward JOIN subscription ON forward.profile_id = subscription.subscribed '.
'WHERE subscription.subscriber = ' . $this->owner->id . ' '.
'AND forward.notice_id = ' . $this->notice->id . ' '.
'ORDER BY forward.created ');
$n = 0;
$firstForwarder = null;
while ($forward->fetch()) {
if (empty($firstForwarder)) {
$firstForwarder = Profile::staticGet('id', $forward->profile_id);
}
$n++;
}
$forward->free();
unset($forward);
$this->out->elementStart('span', 'forwards');
$link = XMLStringer::estring('a', array('href' => $firstForwarder->profileurl),
$firstForwarder->nickname);
if ($n == 1) {
$this->out->raw(sprintf(_('Forwarded by %s'), $link));
} else {
// XXX: use that cool ngettext thing
$this->out->raw(sprintf(_('Forwarded by %s and %d other(s)'), $link, $n - 1));
}
$this->out->elementEnd('span');
}
parent::showEnd();
}
}

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

@ -129,8 +129,6 @@ class DesignadminpanelAction extends AdminPanelAction
$bgimage = $this->saveBackgroundImage();
common_debug("background image: $bgimage");
static $settings = array('theme', 'logo');
$values = array();
@ -141,13 +139,28 @@ class DesignadminpanelAction extends AdminPanelAction
$this->validate($values);
// assert(all values are valid);
$oldtheme = common_config('site', 'theme');
$bgcolor = new WebColor($this->trimmed('design_background'));
$ccolor = new WebColor($this->trimmed('design_content'));
$sbcolor = new WebColor($this->trimmed('design_sidebar'));
$tcolor = new WebColor($this->trimmed('design_text'));
$lcolor = new WebColor($this->trimmed('design_links'));
$config = new Config();
$config->query('BEGIN');
// Only update colors if the theme has not changed.
if ($oldtheme == $values['theme']) {
$bgcolor = new WebColor($this->trimmed('design_background'));
$ccolor = new WebColor($this->trimmed('design_content'));
$sbcolor = new WebColor($this->trimmed('design_sidebar'));
$tcolor = new WebColor($this->trimmed('design_text'));
$lcolor = new WebColor($this->trimmed('design_links'));
Config::save('design', 'backgroundcolor', $bgcolor->intValue());
Config::save('design', 'contentcolor', $ccolor->intValue());
Config::save('design', 'sidebarcolor', $sbcolor->intValue());
Config::save('design', 'textcolor', $tcolor->intValue());
Config::save('design', 'linkcolor', $lcolor->intValue());
}
$onoff = $this->arg('design_background-image_onoff');
@ -162,9 +175,11 @@ class DesignadminpanelAction extends AdminPanelAction
$tile = $this->boolean('design_background-image_repeat');
$config = new Config();
// Hack to use Design's bit setter
$scratch = new Design();
$scratch->setDisposition($on, $off, $tile);
$config->query('BEGIN');
Config::save('design', 'disposition', $scratch->disposition);
foreach ($settings as $setting) {
Config::save('site', $setting, $values[$setting]);
@ -174,21 +189,7 @@ class DesignadminpanelAction extends AdminPanelAction
Config::save('design', 'backgroundimage', $bgimage);
}
Config::save('design', 'backgroundcolor', $bgcolor->intValue());
Config::save('design', 'contentcolor', $ccolor->intValue());
Config::save('design', 'sidebarcolor', $sbcolor->intValue());
Config::save('design', 'textcolor', $tcolor->intValue());
Config::save('design', 'linkcolor', $lcolor->intValue());
// Hack to use Design's bit setter
$scratch = new Design();
$scratch->setDisposition($on, $off, $tile);
Config::save('design', 'disposition', $scratch->disposition);
$config->query('COMMIT');
return;
}
/**
@ -212,6 +213,10 @@ class DesignadminpanelAction extends AdminPanelAction
}
// XXX: Should we restore the default dir settings, etc.? --Z
// XXX: I can't get it to show the new settings without forcing
// this terrible reload -- FIX ME!
common_redirect(common_local_url('designadminpanel'), 303);
}
/**

122
actions/forward.php Normal file
View File

@ -0,0 +1,122 @@
<?php
/**
* Forward action.
*
* PHP version 5
*
* @category Action
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
* @link http://status.net/
*
* StatusNet - the distributed open-source microblogging tool
* Copyright (C) 2008, 2009, StatusNet, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
if (!defined('STATUSNET')) {
exit(1);
}
/**
* Forward action
*
* @category Action
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
* @link http://status.net/
*/
class ForwardAction extends Action
{
var $user = null;
var $notice = null;
function prepare($args)
{
parent::prepare($args);
$this->user = common_current_user();
if (empty($this->user)) {
$this->clientError(_("Only logged-in users can forward notices."));
return false;
}
$id = $this->trimmed('notice');
if (empty($id)) {
$this->clientError(_("No notice specified."));
return false;
}
$this->notice = Notice::staticGet('id', $id);
if (empty($this->notice)) {
$this->clientError(_("No notice specified."));
return false;
}
if ($this->user->id == $this->notice->profile_id) {
$this->clientError(_("You can't forward your own notice."));
return false;
}
$token = $this->trimmed('token-'.$id);
if (empty($token) || $token != common_session_token()) {
$this->clientError(_("There was a problem with your session token. Try again, please."));
return false;
}
$profile = $this->user->getProfile();
if ($profile->hasForwarded($id)) {
$this->clientError(_("You already forwarded that notice."));
return false;
}
return true;
}
/**
* Class handler.
*
* @param array $args query arguments
*
* @return void
*/
function handle($args)
{
$forward = Forward::saveNew($this->user->id, $this->notice->id);
if ($this->boolean('ajax')) {
$this->startHTML('text/xml;charset=utf-8');
$this->elementStart('head');
$this->element('title', null, _('Forwarded'));
$this->elementEnd('head');
$this->elementStart('body');
$this->element('p', array('id' => 'forward_response'), _('Forwarded!'));
$this->elementEnd('body');
$this->elementEnd('html');
} else {
// FIXME!
}
}
}

View File

@ -173,17 +173,12 @@ class GroupDesignSettingsAction extends DesignSettingsAction
function getWorkingDesign()
{
$design = null;
if (isset($this->group)) {
$design = $this->group->getDesign();
}
if (empty($design)) {
$design = $this->defaultDesign();
}
return $design;
}
@ -197,7 +192,13 @@ class GroupDesignSettingsAction extends DesignSettingsAction
function showContent()
{
$this->showDesignForm($this->getWorkingDesign());
$design = $this->getWorkingDesign();
if (empty($design)) {
$design = Design::siteDesign();
}
$this->showDesignForm($design);
}
/**

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

@ -96,14 +96,8 @@ class UserDesignSettingsAction extends DesignSettingsAction
function getWorkingDesign()
{
$user = common_current_user();
$design = $user->getDesign();
if (empty($design)) {
$design = $this->defaultDesign();
}
return $design;
}
@ -117,7 +111,13 @@ class UserDesignSettingsAction extends DesignSettingsAction
function showContent()
{
$this->showDesignForm($this->getWorkingDesign());
$design = $this->getWorkingDesign();
if (empty($design)) {
$design = Design::siteDesign();
}
$this->showDesignForm($design);
}
/**

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);
}
}

126
classes/Forward.php Normal file
View File

@ -0,0 +1,126 @@
<?php
/*
* StatusNet - the distributed open-source microblogging tool
* Copyright (C) 2009, StatusNet, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
if (!defined('STATUSNET')) {
exit(1);
}
/**
* Table Definition for location_namespace
*/
require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
class Forward extends Memcached_DataObject
{
###START_AUTOCODE
/* the code below is auto generated do not remove the above tag */
public $__table = 'forward'; // table name
public $profile_id; // int(4) primary_key not_null
public $notice_id; // int(4) primary_key not_null
public $created; // datetime not_null default_0000-00-00%2000%3A00%3A00
/* Static get */
function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('Forward',$k,$v); }
/* the code above is auto generated do not remove the tag below */
###END_AUTOCODE
function &pkeyGet($kv)
{
return Memcached_DataObject::pkeyGet('Forward', $kv);
}
static function saveNew($profile_id, $notice_id)
{
$forward = new Forward();
$forward->profile_id = $profile_id;
$forward->notice_id = $notice_id;
$forward->created = common_sql_now();
$forward->query('BEGIN');
if (!$forward->insert()) {
throw new ServerException(_("Couldn't insert forward."));
}
$ni = $forward->addToInboxes();
$forward->query('COMMIT');
$forward->blowCache($ni);
return $forward;
}
function addToInboxes()
{
$inbox = new Notice_inbox();
$user = new User();
$user->query('SELECT user.* FROM user JOIN subscription ON user.id = subscription.subscriber '.
'WHERE subscription.subscribed = '.$this->profile_id);
$ni = array();
$notice = Notice::staticGet('id', $this->notice_id);
$author = Profile::staticGet('id', $notice->profile_id);
while ($user->fetch()) {
$inbox = Notice_inbox::pkeyGet(array('user_id' => $user->id,
'notice_id' => $this->notice_id));
if (empty($inbox)) {
if (!$user->hasBlocked($author)) {
$ni[$user->id] = NOTICE_INBOX_SOURCE_FORWARD;
}
} else {
$inbox->free();
}
}
$user->free();
$author->free();
unset($user);
unset($author);
Notice_inbox::bulkInsert($this->notice_id, $this->created, $ni);
return $ni;
}
function blowCache($ni)
{
$cache = common_memcache();
if (!empty($cache)) {
foreach ($ni as $id => $source) {
$cache->delete(common_cache_key('notice_inbox:by_user:'.$id));
$cache->delete(common_cache_key('notice_inbox:by_user_own:'.$id));
$cache->delete(common_cache_key('notice_inbox:by_user:'.$id.';last'));
$cache->delete(common_cache_key('notice_inbox:by_user_own:'.$id.';last'));
}
}
}
}

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

@ -948,39 +948,7 @@ class Notice extends Memcached_DataObject
}
}
$cnt = 0;
$qryhdr = 'INSERT INTO notice_inbox (user_id, notice_id, source, created) VALUES ';
$qry = $qryhdr;
foreach ($ni as $id => $source) {
if ($cnt > 0) {
$qry .= ', ';
}
$qry .= '('.$id.', '.$this->id.', '.$source.", '".$this->created. "') ";
$cnt++;
if (rand() % NOTICE_INBOX_SOFT_LIMIT == 0) {
// FIXME: Causes lag in replicated servers
// Notice_inbox::gc($id);
}
if ($cnt >= MAX_BOXCARS) {
$inbox = new Notice_inbox();
$result = $inbox->query($qry);
if (PEAR::isError($result)) {
common_log_db_error($inbox, $qry);
}
$qry = $qryhdr;
$cnt = 0;
}
}
if ($cnt > 0) {
$inbox = new Notice_inbox();
$result = $inbox->query($qry);
if (PEAR::isError($result)) {
common_log_db_error($inbox, $qry);
}
}
Notice_inbox::bulkInsert($this->id, $this->created, $ni);
return;
}

View File

@ -32,6 +32,7 @@ define('NOTICE_INBOX_SOFT_LIMIT', 1000);
define('NOTICE_INBOX_SOURCE_SUB', 1);
define('NOTICE_INBOX_SOURCE_GROUP', 2);
define('NOTICE_INBOX_SOURCE_REPLY', 3);
define('NOTICE_INBOX_SOURCE_FORWARD', 4);
define('NOTICE_INBOX_SOURCE_GATEWAY', -1);
class Notice_inbox extends Memcached_DataObject
@ -83,7 +84,7 @@ class Notice_inbox extends Memcached_DataObject
$inbox->whereAdd('created > \'' . date('Y-m-d H:i:s', $since) . '\'');
}
$inbox->orderBy('notice_id DESC');
$inbox->orderBy('created DESC');
if (!is_null($offset)) {
$inbox->limit($offset, $limit);
@ -141,4 +142,43 @@ class Notice_inbox extends Memcached_DataObject
'WHERE user_id = ' . $user_id . ' ' .
'AND notice_id in ('.implode(',', $notices).')');
}
static function bulkInsert($notice_id, $created, $ni)
{
$cnt = 0;
$qryhdr = 'INSERT INTO notice_inbox (user_id, notice_id, source, created) VALUES ';
$qry = $qryhdr;
foreach ($ni as $id => $source) {
if ($cnt > 0) {
$qry .= ', ';
}
$qry .= '('.$id.', '.$notice_id.', '.$source.", '".$created. "') ";
$cnt++;
if (rand() % NOTICE_INBOX_SOFT_LIMIT == 0) {
// FIXME: Causes lag in replicated servers
// Notice_inbox::gc($id);
}
if ($cnt >= MAX_BOXCARS) {
$inbox = new Notice_inbox();
$result = $inbox->query($qry);
if (PEAR::isError($result)) {
common_log_db_error($inbox, $qry);
}
$qry = $qryhdr;
$cnt = 0;
}
}
if ($cnt > 0) {
$inbox = new Notice_inbox();
$result = $inbox->query($qry);
if (PEAR::isError($result)) {
common_log_db_error($inbox, $qry);
}
}
return;
}
}

View File

@ -716,4 +716,12 @@ class Profile extends Memcached_DataObject
}
return $result;
}
function hasForwarded($notice_id)
{
$forward = Forward::pkeyGet(array('profile_id' => $this->id,
'notice_id' => $notice_id));
return (!empty($forward));
}
}

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

@ -1,3 +1,4 @@
[avatar]
profile_id = 129
original = 17
@ -195,6 +196,15 @@ id = K
service = K
uri = U
[forward]
profile_id = 129
notice_id = 129
created = 142
[forward__keys]
profile_id = K
notice_id = K
[group_alias]
alias = 130
group_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

@ -72,4 +72,25 @@ create table location_namespace (
created datetime not null comment 'date the record was created',
modified timestamp comment 'date this record was modified'
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
) 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;
create table forward (
profile_id integer not null comment 'profile who forwarded the notice' references profile (id),
notice_id integer not null comment 'notice they forwarded' references notice (id),
created datetime not null comment 'date this record was created',
constraint primary key (profile_id, notice_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,24 @@ 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;
create table forward (
profile_id integer not null comment 'profile who forwarded the notice' references profile (id),
notice_id integer not null comment 'notice they forwarded' references notice (id),
created datetime not null comment 'date this record was created',
constraint primary key (profile_id, notice_id)
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;

View File

@ -570,4 +570,14 @@ 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

@ -15,7 +15,7 @@
* @author Alan Knowles <alan@akbkhome.com>
* @copyright 1997-2006 The PHP Group
* @license http://www.php.net/license/3_01.txt PHP License 3.01
* @version CVS: $Id: DataObject.php 284150 2009-07-15 23:27:59Z alan_k $
* @version CVS: $Id: DataObject.php 291349 2009-11-27 09:15:18Z alan_k $
* @link http://pear.php.net/package/DB_DataObject
*/
@ -235,7 +235,7 @@ class DB_DataObject extends DB_DataObject_Overload
* @access private
* @var string
*/
var $_DB_DataObject_version = "1.8.12";
var $_DB_DataObject_version = "1.9.0";
/**
* The Database table (used by table extends)
@ -309,7 +309,8 @@ class DB_DataObject extends DB_DataObject_Overload
/**
* An autoloading, caching static get method using key, value (based on get)
*
* (depreciated - use ::get / and your own caching method)
*
* Usage:
* $object = DB_DataObject::staticGet("DbTable_mytable",12);
* or
@ -942,9 +943,13 @@ class DB_DataObject extends DB_DataObject_Overload
}
$this->$key = $keyvalue;
}
// if we haven't set disable_null_strings to "full"
$ignore_null = !isset($options['disable_null_strings'])
|| !is_string($options['disable_null_strings'])
|| strtolower($options['disable_null_strings']) !== 'full' ;
foreach($items as $k => $v) {
// if we are using autoincrement - skip the column...
@ -953,7 +958,10 @@ class DB_DataObject extends DB_DataObject_Overload
}
if (!isset($this->$k)) {
// Ignore variables which aren't set to a value
if ( !isset($this->$k) && $ignore_null) {
continue;
}
// dont insert data into mysql timestamps
@ -980,8 +988,7 @@ class DB_DataObject extends DB_DataObject_Overload
}
if (!isset($options['disable_null_strings']) && is_string($this->$k) && (strtolower($this->$k) === 'null') && !($v & DB_DATAOBJECT_NOTNULL)) {
if (!($v & DB_DATAOBJECT_NOTNULL) && DB_DataObject::_is_null($this,$k)) {
$rightq .= " NULL ";
continue;
}
@ -1194,8 +1201,14 @@ class DB_DataObject extends DB_DataObject_Overload
$options = $_DB_DATAOBJECT['CONFIG'];
$ignore_null = !isset($options['disable_null_strings'])
|| !is_string($options['disable_null_strings'])
|| strtolower($options['disable_null_strings']) !== 'full' ;
foreach($items as $k => $v) {
if (!isset($this->$k)) {
if (!isset($this->$k) && $ignore_null) {
continue;
}
// ignore stuff thats
@ -1234,7 +1247,7 @@ class DB_DataObject extends DB_DataObject_Overload
}
// special values ... at least null is handled...
if (!isset($options['disable_null_strings']) && (strtolower($this->$k) === 'null') && !($v & DB_DATAOBJECT_NOTNULL)) {
if (!($v & DB_DATAOBJECT_NOTNULL) && DB_DataObject::_is_null($this,$k)) {
$settings .= "$kSql = NULL ";
continue;
}
@ -1796,10 +1809,15 @@ class DB_DataObject extends DB_DataObject_Overload
}
$_DB_DATAOBJECT['INI'][$this->_database] = array();
foreach ($schemas as $ini) {
if (file_exists($ini) && is_file($ini)) {
$_DB_DATAOBJECT['INI'][$this->_database] = parse_ini_file($ini, true);
$_DB_DATAOBJECT['INI'][$this->_database] = array_merge(
$_DB_DATAOBJECT['INI'][$this->_database],
parse_ini_file($ini, true)
);
if (!empty($_DB_DATAOBJECT['CONFIG']['debug'])) {
if (!is_readable ($ini)) {
$this->debug("ini file is not readable: $ini","databaseStructure",1);
@ -2478,7 +2496,8 @@ class DB_DataObject extends DB_DataObject_Overload
$x = new DB_DataObject;
$this->_query= $x->_query;
}
foreach($keys as $k => $v) {
// index keys is an indexed array
/* these filter checks are a bit suspicious..
@ -2519,7 +2538,7 @@ class DB_DataObject extends DB_DataObject_Overload
continue;
}
if (!isset($options['disable_null_strings']) && (strtolower($this->$k) === 'null') && !($v & DB_DATAOBJECT_NOTNULL)) {
if (!($v & DB_DATAOBJECT_NOTNULL) && DB_DataObject::_is_null($this,$k)) {
$this->whereAdd(" $kSql IS NULL");
continue;
}
@ -2624,15 +2643,31 @@ class DB_DataObject extends DB_DataObject_Overload
}
// does this need multi db support??
$p = isset($_DB_DATAOBJECT['CONFIG']['class_prefix']) ?
$_DB_DATAOBJECT['CONFIG']['class_prefix'] : '';
$class = $p . preg_replace('/[^A-Z0-9]/i','_',ucfirst($table));
$ce = substr(phpversion(),0,1) > 4 ? class_exists($class,false) : class_exists($class);
$cp = isset($_DB_DATAOBJECT['CONFIG']['class_prefix']) ?
explode(PATH_SEPARATOR, $_DB_DATAOBJECT['CONFIG']['class_prefix']) : '';
$class = $ce ? $class : DB_DataObject::_autoloadClass($class);
// multiprefix support.
$tbl = preg_replace('/[^A-Z0-9]/i','_',ucfirst($table));
if (is_array($cp)) {
$class = array();
foreach($cp as $cpr) {
$ce = substr(phpversion(),0,1) > 4 ? class_exists($cpr . $tbl,false) : class_exists($cpr . $tbl);
if ($ce) {
$class = $cpr . $tbl;
break;
}
$class[] = $cpr . $tbl;
}
} else {
$class = $tbl;
$ce = substr(phpversion(),0,1) > 4 ? class_exists($class,false) : class_exists($class);
}
$rclass = $ce ? $class : DB_DataObject::_autoloadClass($class, $table);
// proxy = full|light
if (!$class && isset($_DB_DATAOBJECT['CONFIG']['proxy'])) {
if (!$rclass && isset($_DB_DATAOBJECT['CONFIG']['proxy'])) {
DB_DataObject::debug("FAILED TO Autoload $database.$table - using proxy.","FACTORY",1);
@ -2653,12 +2688,14 @@ class DB_DataObject extends DB_DataObject_Overload
return $x->$proxyMethod( $d->_database, $table);
}
if (!$class) {
if (!$rclass) {
return DB_DataObject::raiseError(
"factory could not find class $class from $table",
"factory could not find class " .
(is_array($class) ? implode(PATH_SEPARATOR, $class) : $class ).
"from $table",
DB_DATAOBJECT_ERROR_INVALIDCONFIG);
}
$ret = new $class;
$ret = new $rclass;
if (!empty($database)) {
DB_DataObject::debug("Setting database to $database","FACTORY",1);
$ret->database($database);
@ -2668,11 +2705,12 @@ class DB_DataObject extends DB_DataObject_Overload
/**
* autoload Class
*
* @param string $class Class
* @param string|array $class Class
* @param string $table Table trying to load.
* @access private
* @return string classname on Success
*/
function _autoloadClass($class)
function _autoloadClass($class, $table=false)
{
global $_DB_DATAOBJECT;
@ -2682,32 +2720,62 @@ class DB_DataObject extends DB_DataObject_Overload
$class_prefix = empty($_DB_DATAOBJECT['CONFIG']['class_prefix']) ?
'' : $_DB_DATAOBJECT['CONFIG']['class_prefix'];
$table = substr($class,strlen($class_prefix));
$table = $table ? $table : substr($class,strlen($class_prefix));
// only include the file if it exists - and barf badly if it has parse errors :)
if (!empty($_DB_DATAOBJECT['CONFIG']['proxy']) || empty($_DB_DATAOBJECT['CONFIG']['class_location'])) {
return false;
}
// support for:
// class_location = mydir/ => maps to mydir/Tablename.php
// class_location = mydir/myfile_%s.php => maps to mydir/myfile_Tablename
// with directory sepr
// class_location = mydir/:mydir2/: => tries all of thes locations.
$cl = $_DB_DATAOBJECT['CONFIG']['class_location'];
if (strpos($_DB_DATAOBJECT['CONFIG']['class_location'],'%s') !== false) {
$file = sprintf($_DB_DATAOBJECT['CONFIG']['class_location'], preg_replace('/[^A-Z0-9]/i','_',ucfirst($table)));
} else {
$file = $_DB_DATAOBJECT['CONFIG']['class_location'].'/'.preg_replace('/[^A-Z0-9]/i','_',ucfirst($table)).".php";
switch (true) {
case (strpos($cl ,'%s') !== false):
$file = sprintf($cl , preg_replace('/[^A-Z0-9]/i','_',ucfirst($table)));
break;
case (strpos($cl , PATH_SEPARATOR) !== false):
$file = array();
foreach(explode(PATH_SEPARATOR, $cl ) as $p) {
$file[] = $p .'/'.preg_replace('/[^A-Z0-9]/i','_',ucfirst($table)).".php";
}
break;
default:
$file = $cl .'/'.preg_replace('/[^A-Z0-9]/i','_',ucfirst($table)).".php";
break;
}
if (!file_exists($file)) {
$cls = is_array($class) ? $class : array($class);
if (is_array($file) || !file_exists($file)) {
$found = false;
foreach(explode(PATH_SEPARATOR, ini_get('include_path')) as $p) {
if (file_exists("$p/$file")) {
$file = "$p/$file";
$found = true;
$file = is_array($file) ? $file : array($file);
$search = implode(PATH_SEPARATOR, $file);
foreach($file as $f) {
foreach(explode(PATH_SEPARATOR, '' . PATH_SEPARATOR . ini_get('include_path')) as $p) {
$ff = empty($p) ? $f : "$p/$f";
if (file_exists($ff)) {
$file = $ff;
$found = true;
break;
}
}
if ($found) {
break;
}
}
if (!$found) {
DB_DataObject::raiseError(
"autoload:Could not find class {$class} using class_location value",
"autoload:Could not find class " . implode(',', $cls) .
" using class_location value :" . $search .
" using include_path value :" . ini_get('include_path'),
DB_DATAOBJECT_ERROR_INVALIDCONFIG);
return false;
}
@ -2715,12 +2783,18 @@ class DB_DataObject extends DB_DataObject_Overload
include_once $file;
$ce = substr(phpversion(),0,1) > 4 ? class_exists($class,false) : class_exists($class);
$ce = false;
foreach($cls as $c) {
$ce = substr(phpversion(),0,1) > 4 ? class_exists($c,false) : class_exists($c);
if ($ce) {
$class = $c;
break;
}
}
if (!$ce) {
DB_DataObject::raiseError(
"autoload:Could not autoload {$class}",
"autoload:Could not autoload " . implode(',', $cls) ,
DB_DATAOBJECT_ERROR_INVALIDCONFIG);
return false;
}
@ -2786,7 +2860,7 @@ class DB_DataObject extends DB_DataObject_Overload
}
$_DB_DATAOBJECT['LINKS'][$this->_database] = array();
foreach ($schemas as $ini) {
$links =
@ -2794,9 +2868,13 @@ class DB_DataObject extends DB_DataObject_Overload
$_DB_DATAOBJECT['CONFIG']["links_{$this->_database}"] :
str_replace('.ini','.links.ini',$ini);
if (empty($_DB_DATAOBJECT['LINKS'][$this->_database]) && file_exists($links) && is_file($links)) {
if (file_exists($links) && is_file($links)) {
/* not sure why $links = ... here - TODO check if that works */
$_DB_DATAOBJECT['LINKS'][$this->_database] = parse_ini_file($links, true);
$_DB_DATAOBJECT['LINKS'][$this->_database] = array_merge(
$_DB_DATAOBJECT['LINKS'][$this->_database],
parse_ini_file($links, true)
);
if (!empty($_DB_DATAOBJECT['CONFIG']['debug'])) {
$this->debug("Loaded links.ini file: $links","links",1);
}
@ -2977,14 +3055,12 @@ class DB_DataObject extends DB_DataObject_Overload
}
if ($link) {
if ($obj->get($link, $this->$row)) {
$obj->free();
return $obj;
}
return false;
}
if ($obj->get($this->$row)) {
$obj->free();
return $obj;
}
return false;
@ -3315,14 +3391,23 @@ class DB_DataObject extends DB_DataObject_Overload
DB_DATAOBJECT_ERROR_INVALIDCONFIG);
return false;
}
$ignore_null = !isset($options['disable_null_strings'])
|| !is_string($options['disable_null_strings'])
|| strtolower($options['disable_null_strings']) !== 'full' ;
foreach($items as $k => $v) {
if (!isset($obj->$k)) {
if (!isset($obj->$k) && $ignore_null) {
continue;
}
$kSql = ($quoteIdentifiers ? $DB->quoteIdentifier($k) : $k);
if (DB_DataObject::_is_null($obj,$k)) {
$obj->whereAdd("{$joinAs}.{$kSql} IS NULL");
continue;
}
if ($v & DB_DATAOBJECT_STR) {
$obj->whereAdd("{$joinAs}.{$kSql} = " . $this->_quote((string) (
@ -3344,14 +3429,9 @@ class DB_DataObject extends DB_DataObject_Overload
if (PEAR::isError($value)) {
$this->raiseError($value->getMessage() ,DB_DATAOBJECT_ERROR_INVALIDARG);
return false;
}
if (!isset($options['disable_null_strings']) && strtolower($value) === 'null') {
$obj->whereAdd("{$joinAs}.{$kSql} IS NULL");
continue;
} else {
$obj->whereAdd("{$joinAs}.{$kSql} = $value");
continue;
}
}
$obj->whereAdd("{$joinAs}.{$kSql} = $value");
continue;
}
@ -3514,7 +3594,7 @@ class DB_DataObject extends DB_DataObject_Overload
continue;
}
if (!isset($from[sprintf($format,$k)])) {
if (!isset($from[sprintf($format,$k)]) && !DB_DataObject::_is_null($from, sprintf($format,$k))) {
continue;
}
@ -3643,7 +3723,7 @@ class DB_DataObject extends DB_DataObject_Overload
// if not null - and it's not set.......
if (!isset($this->$key) && ($val & DB_DATAOBJECT_NOTNULL)) {
if ($val & DB_DATAOBJECT_NOTNULL && DB_DataObject::_is_null($this, $key)) {
// dont check empty sequence key values..
if (($key == $seq[0]) && ($seq[1] == true)) {
continue;
@ -3653,7 +3733,7 @@ class DB_DataObject extends DB_DataObject_Overload
}
if (!isset($options['disable_null_strings']) && is_string($this->$key) && (strtolower($this->$key) == 'null')) {
if (DB_DataObject::_is_null($this, $key)) {
if ($val & DB_DATAOBJECT_NOTNULL) {
$this->debug("'null' field used for '$key', but it is defined as NOT NULL", 'VALIDATION', 4);
$ret[$key] = false;
@ -3868,13 +3948,14 @@ class DB_DataObject extends DB_DataObject_Overload
//echo "FROM VALUE $col, {$cols[$col]}, $value\n";
switch (true) {
// set to null and column is can be null...
case (!isset($options['disable_null_strings']) && (strtolower($value) == 'null') && (!($cols[$col] & DB_DATAOBJECT_NOTNULL))):
case ((!($cols[$col] & DB_DATAOBJECT_NOTNULL)) && DB_DataObject::_is_null($value, false)):
case (is_object($value) && is_a($value,'DB_DataObject_Cast')):
$this->$col = $value;
return true;
// fail on setting null on a not null field..
case (!isset($options['disable_null_strings']) && (strtolower($value) == 'null') && ($cols[$col] & DB_DATAOBJECT_NOTNULL)):
case (($cols[$col] & DB_DATAOBJECT_NOTNULL) && DB_DataObject::_is_null($value,false)):
return false;
case (($cols[$col] & DB_DATAOBJECT_DATE) && ($cols[$col] & DB_DATAOBJECT_TIME)):
@ -4189,9 +4270,65 @@ class DB_DataObject extends DB_DataObject_Overload
if (isset($_DB_DATAOBJECT['CONNECTIONS'][$this->_database_dsn_md5])) {
$_DB_DATAOBJECT['CONNECTIONS'][$this->_database_dsn_md5]->num_rows = array();
}
if (is_array($this->_link_loaded)) {
foreach ($this->_link_loaded as $do) {
$do->free();
}
}
}
/**
* Evaluate whether or not a value is set to null, taking the 'disable_null_strings' option into account.
* If the value is a string set to "null" and the "disable_null_strings" option is not set to
* true, then the value is considered to be null.
* If the value is actually a PHP NULL value, and "disable_null_strings" has been set to
* the value "full", then it will also be considered null. - this can not differenticate between not set
*
*
* @param object|array $obj_or_ar
* @param string|false $prop prperty
* @access private
* @return bool object
*/
function _is_null($obj_or_ar , $prop)
{
global $_DB_DATAOBJECT;
$isset = $prop === false ? isset($obj_or_ar) :
(is_array($obj_or_ar) ? isset($obj_or_ar[$prop]) : isset($obj_or_ar->$prop));
$value = $isset ?
($prop === false ? $obj_or_ar :
(is_array($obj_or_ar) ? $obj_or_ar[$prop] : $obj_or_ar->$prop))
: null;
$options = $_DB_DATAOBJECT['CONFIG'];
$null_strings = !isset($options['disable_null_strings'])
|| $options['disable_null_strings'] === false;
$crazy_null = isset($options['disable_null_strings'])
&& is_string($options['disable_null_strings'])
&& strtolower($options['disable_null_strings'] === 'full');
if ( $null_strings && $isset && is_string($value) && (strtolower($value) === 'null') ) {
return true;
}
if ( $crazy_null && !$isset ) {
return true;
}
return false;
}
/* ---- LEGACY BC METHODS - NOT DOCUMENTED - See Documentation on New Methods. ---*/
@ -4214,3 +4351,4 @@ if (!defined('DB_DATAOBJECT_NO_OVERLOAD')) {
}
}

View File

@ -15,7 +15,7 @@
* @author Alan Knowles <alan@akbkhome.com>
* @copyright 1997-2006 The PHP Group
* @license http://www.php.net/license/3_01.txt PHP License 3.01
* @version CVS: $Id: Generator.php 284150 2009-07-15 23:27:59Z alan_k $
* @version CVS: $Id: Generator.php 289384 2009-10-09 00:17:26Z alan_k $
* @link http://pear.php.net/package/DB_DataObject
*/
@ -33,7 +33,7 @@
/**
*
* Config _$ptions
* [DB_DataObject_Generator]
* [DB_DataObject]
* ; optional default = DB/DataObject.php
* extends_location =
* ; optional default = DB_DataObject
@ -775,11 +775,9 @@ class DB_DataObject_Generator extends DB_DataObject
//echo "Generating Class files: \n";
$options = &PEAR::getStaticProperty('DB_DataObject','options');
if ($extends = @$options['extends']) {
$this->_extends = $extends;
$this->_extendsFile = $options['extends_location'];
}
$this->_extends = empty($options['extends']) ? $this->_extends : $options['extends'];
$this->_extendsFile = empty($options['extends_location']) ? $this->_extendsFile : $options['extends_location'];
foreach($this->tables as $this->table) {
$this->table = trim($this->table);
@ -814,7 +812,7 @@ class DB_DataObject_Generator extends DB_DataObject
}
/**
* class being extended (can be overridden by [DB_DataObject_Generator] extends=xxxx
* class being extended (can be overridden by [DB_DataObject] extends=xxxx
*
* @var string
* @access private
@ -1142,10 +1140,9 @@ class DB_DataObject_Generator extends DB_DataObject
$options = &PEAR::getStaticProperty('DB_DataObject','options');
$class_prefix = empty($options['class_prefix']) ? '' : $options['class_prefix'];
if ($extends = @$options['extends']) {
$this->_extends = $extends;
$this->_extendsFile = $options['extends_location'];
}
$this->_extends = empty($options['extends']) ? $this->_extends : $options['extends'];
$this->_extendsFile = empty($options['extends_location']) ? $this->_extendsFile : $options['extends_location'];
$classname = $this->classname = $this->getClassNameFromTableName($this->table);
$out = $this->_generateClassTable();

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 = 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));
}
@ -305,8 +306,12 @@ var SN = { // StatusNet
$('.form_disfavor').each(function() { SN.U.FormXHR($(this)); });
},
NoticeForward: function() {
$('.form_forward').each(function() { SN.U.FormXHR($(this)); });
},
NoticeAttachments: function() {
$('.notice a.attachment').each(function() {
$('.notice a.attachment').each(function() {
SN.U.NoticeWithAttachment($(this).closest('.notice'));
});
},
@ -438,7 +443,7 @@ var SN = { // StatusNet
Notices: function() {
if ($('body.user_in').length > 0) {
SN.U.NoticeFavor();
SN.U.NoticeForward();
SN.U.NoticeReply();
}

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,20 +134,17 @@ class ApiAction extends Action
$twitter_user['protected'] = false; # not supported by StatusNet yet
$twitter_user['followers_count'] = $profile->subscriberCount();
$defaultDesign = Design::siteDesign();
$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 = $defaultDesign;
}
$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);
@ -166,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

@ -333,49 +333,6 @@ class DesignSettingsAction extends AccountSettingsAction
$this->autofocus('design_background-image_file');
}
/**
* Get a default design
*
* @return Design design
*/
function defaultDesign()
{
$defaults = common_config('site', 'design');
$design = new Design();
try {
$color = new WebColor();
$color->parseColor($defaults['backgroundcolor']);
$design->backgroundcolor = $color->intValue();
$color->parseColor($defaults['contentcolor']);
$design->contentcolor = $color->intValue();
$color->parseColor($defaults['sidebarcolor']);
$design->sidebarcolor = $color->intValue();
$color->parseColor($defaults['textcolor']);
$design->textcolor = $color->intValue();
$color->parseColor($defaults['linkcolor']);
$design->linkcolor = $color->intValue();
$design->backgroundimage = $defaults['backgroundimage'];
$design->disposition = $defaults['disposition'];
} catch (WebColorException $e) {
common_log(LOG_ERR, _('Bad default color settings: ' .
$e->getMessage()));
}
return $design;
}
/**
* Save the background image, if any, and set its disposition
*
@ -445,24 +402,17 @@ class DesignSettingsAction extends AccountSettingsAction
function restoreDefaults()
{
$design = $this->getWorkingDesign();
$default = $this->defaultDesign();
$original = clone($design);
$design = $this->getWorkingDesign();
$design->backgroundcolor = $default->backgroundcolor;
$design->contentcolor = $default->contentcolor;
$design->sidebarcolor = $default->sidebarcolor;
$design->textcolor = $default->textcolor;
$design->linkcolor = $default->linkcolor;
if (!empty($design)) {
$design->setDisposition(false, true, false);
$result = $design->delete();
$result = $design->update($original);
if ($result === false) {
common_log_db_error($design, 'UPDATE', __FILE__);
$this->showForm(_('Couldn\'t update your design.'));
return;
if ($result === false) {
common_log_db_error($design, 'DELETE', __FILE__);
$this->showForm(_('Couldn\'t update your design.'));
return;
}
}
$this->showForm(_('Design defaults restored.'), true);

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);

147
lib/forwardform.php Normal file
View File

@ -0,0 +1,147 @@
<?php
/**
* StatusNet, the distributed open-source microblogging tool
*
* Form for forwarding a notice
*
* 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 Form
* @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') && !defined('LACONICA')) {
exit(1);
}
require_once INSTALLDIR.'/lib/form.php';
/**
* Form for forwarding a notice
*
* @category Form
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
* @link http://status.net/
*/
class ForwardForm extends Form
{
/**
* Notice to forward
*/
var $notice = null;
/**
* Constructor
*
* @param HTMLOutputter $out output channel
* @param Notice $notice notice to forward
*/
function __construct($out=null, $notice=null)
{
parent::__construct($out);
$this->notice = $notice;
}
/**
* ID of the form
*
* @return int ID of the form
*/
function id()
{
return 'forward-' . $this->notice->id;
}
/**
* Action of the form
*
* @return string URL of the action
*/
function action()
{
return common_local_url('forward');
}
/**
* Include a session token for CSRF protection
*
* @return void
*/
function sessionToken()
{
$this->out->hidden('token-' . $this->notice->id,
common_session_token());
}
/**
* Legend of the Form
*
* @return void
*/
function formLegend()
{
$this->out->element('legend', null, _('Forward this notice'));
}
/**
* Data elements
*
* @return void
*/
function formData()
{
$this->out->hidden('notice-n'.$this->notice->id,
$this->notice->id,
'notice');
}
/**
* Action elements
*
* @return void
*/
function formActions()
{
$this->out->submit('forward-submit-' . $this->notice->id,
_('Forward'), 'submit', null, _('Forward this notice'));
}
/**
* Class of the form.
*
* @return string the form's class
*/
function formClass()
{
return 'form_forward';
}
}

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

@ -36,6 +36,33 @@ if (!function_exists('gettext')) {
require_once("php-gettext/gettext.inc");
}
if (!function_exists('dpgettext')) {
/**
* Context-aware dgettext wrapper; use when messages in different contexts
* won't be distinguished from the English source but need different translations.
* The context string will appear as msgctxt in the .po files.
*
* Not currently exposed in PHP's gettext module; implemented to be compat
* with gettext.h's macros.
*
* @param string $domain domain identifier, or null for default domain
* @param string $context context identifier, should be some key like "menu|file"
* @param string $msgid English source text
* @return string original or translated message
*/
function dpgettext($domain, $context, $msg)
{
$msgid = $context . "\004" . $msg;
$out = dcgettext($domain, $msgid, LC_MESSAGES);
if ($out == $msgid) {
return $msg;
} else {
return $out;
}
}
}
if (!function_exists('pgettext')) {
/**
* Context-aware gettext wrapper; use when messages in different contexts
@ -50,9 +77,31 @@ if (!function_exists('pgettext')) {
* @return string original or translated message
*/
function pgettext($context, $msg)
{
return dpgettext(textdomain(NULL), $context, $msg);
}
}
if (!function_exists('dnpgettext')) {
/**
* Context-aware dngettext wrapper; use when messages in different contexts
* won't be distinguished from the English source but need different translations.
* The context string will appear as msgctxt in the .po files.
*
* Not currently exposed in PHP's gettext module; implemented to be compat
* with gettext.h's macros.
*
* @param string $domain domain identifier, or null for default domain
* @param string $context context identifier, should be some key like "menu|file"
* @param string $msg singular English source text
* @param string $plural plural English source text
* @param int $n number of items to control plural selection
* @return string original or translated message
*/
function dnpgettext($domain, $context, $msg, $plural, $n)
{
$msgid = $context . "\004" . $msg;
$out = dcgettext(textdomain(NULL), $msgid, LC_MESSAGES);
$out = dcngettext($domain, $msgid, $plural, $n, LC_MESSAGES);
if ($out == $msgid) {
return $msg;
} else {
@ -78,14 +127,78 @@ if (!function_exists('npgettext')) {
*/
function npgettext($context, $msg, $plural, $n)
{
$msgid = $context . "\004" . $msg;
$out = dcngettext(textdomain(NULL), $msgid, $plural, $n, LC_MESSAGES);
if ($out == $msgid) {
return $msg;
return dnpgettext(textdomain(NULL), $msgid, $plural, $n, LC_MESSAGES);
}
}
/**
* Shortcut for *gettext functions with smart domain detection.
*
* If calling from a plugin, this function checks which plugin was
* being called from and uses that as text domain, which will have
* been set up during plugin initialization.
*
* Also handles plurals and contexts depending on what parameters
* are passed to it:
*
* gettext -> _m($msg)
* ngettext -> _m($msg1, $msg2, $n)
* pgettext -> _m($ctx, $msg)
* npgettext -> _m($ctx, $msg1, $msg2, $n)
*
* @fixme may not work properly in eval'd code
*
* @param string $msg
* @return string
*/
function _m($msg/*, ...*/)
{
$domain = _mdomain(debug_backtrace(false));
$args = func_get_args();
switch(count($args)) {
case 1: return dgettext($domain, $msg);
case 2: return dpgettext($domain, $args[0], $args[1]);
case 3: return dngettext($domain, $args[0], $args[1], $args[2]);
case 4: return dnpgettext($domain, $args[0], $args[1], $args[2], $args[3]);
default: throw new Exception("Bad parameter count to _m()");
}
}
/**
* Looks for which plugin we've been called from to set the gettext domain.
*
* @param array $backtrace debug_backtrace() output
* @return string
* @private
* @fixme could explode if SN is under a 'plugins' folder or share name.
*/
function _mdomain($backtrace)
{
/*
0 =>
array
'file' => string '/var/www/mublog/plugins/FeedSub/FeedSubPlugin.php' (length=49)
'line' => int 77
'function' => string '_m' (length=2)
'args' =>
array
0 => &string 'Feeds' (length=5)
*/
static $cached;
$path = $backtrace[0]['file'];
if (!isset($cached[$path])) {
if (DIRECTORY_SEPARATOR !== '/') {
$path = strtr($path, DIRECTORY_SEPARATOR, '/');
}
$cut = strpos($path, '/plugins/') + 9;
$cut2 = strpos($path, '/', $cut);
if ($cut && $cut2) {
$cached[$path] = substr($path, $cut, $cut2 - $cut);
} else {
return $out;
return null;
}
}
return $cached[$path];
}

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

@ -212,6 +212,7 @@ class NoticeListItem extends Widget
$this->out->elementStart('div', 'notice-options');
$this->showFaveForm();
$this->showReplyLink();
$this->showForwardForm();
$this->showDeleteLink();
$this->out->elementEnd('div');
}
@ -530,6 +531,26 @@ class NoticeListItem extends Widget
}
}
/**
* show the form to forward a notice
*
* @return void
*/
function showForwardForm()
{
$user = common_current_user();
if ($user && $user->id != $this->notice->profile_id) {
$profile = $user->getProfile();
if ($profile->hasForwarded($this->notice->id)) {
$this->out->text(_('Forwarded'));
} else {
$ff = new ForwardForm($this->out, $this->notice);
$ff->show();
}
}
}
/**
* if the user is the author, let them delete the notice
*

View File

@ -65,6 +65,8 @@ class Plugin
Event::addHandler(mb_substr($method, 2), array($this, $method));
}
}
$this->setupGettext();
}
function initialize()
@ -76,4 +78,31 @@ class Plugin
{
return true;
}
/**
* Checks if this plugin has localization that needs to be set up.
* Gettext localizations can be called via the _m() helper function.
*/
protected function setupGettext()
{
$class = get_class($this);
if (substr($class, -6) == 'Plugin') {
$name = substr($class, 0, -6);
$path = INSTALLDIR . "/plugins/$name/locale";
if (file_exists($path) && is_dir($path)) {
bindtextdomain($name, $path);
}
}
}
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',
@ -97,7 +99,7 @@ class Router
'groupblock', 'groupunblock',
'sandbox', 'unsandbox',
'silence', 'unsilence',
'deleteuser');
'deleteuser', 'forward');
foreach ($main as $a) {
$m->connect('main/'.$a, array('action' => $a));

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

@ -48,8 +48,8 @@ class FBConnectauthAction extends Action
common_log(LOG_WARNING, 'Facebook Connect Plugin - ' .
"Failed auth attempt, proxy = $proxy, ip = $ip.");
$this->clientError(_('You must be logged into Facebook to ' .
'use Facebook Connect.'));
$this->clientError(_m('You must be logged into Facebook to ' .
'use Facebook Connect.'));
}
return true;
@ -74,7 +74,7 @@ class FBConnectauthAction extends Action
// We don't want these cookies
getFacebook()->clear_cookie_state();
$this->clientError(_('There is already a local user linked with this Facebook.'));
$this->clientError(_m('There is already a local user linked with this Facebook.'));
} else {
@ -87,12 +87,12 @@ class FBConnectauthAction extends Action
$token = $this->trimmed('token');
if (!$token || $token != common_session_token()) {
$this->showForm(_('There was a problem with your session token. Try again, please.'));
$this->showForm(_m('There was a problem with your session token. Try again, please.'));
return;
}
if ($this->arg('create')) {
if (!$this->boolean('license')) {
$this->showForm(_('You can\'t register if you don\'t agree to the license.'),
$this->showForm(_m('You can\'t register if you don\'t agree to the license.'),
$this->trimmed('newname'));
return;
}
@ -102,7 +102,7 @@ class FBConnectauthAction extends Action
} else {
common_debug('Facebook Connect Plugin - ' .
print_r($this->args, true));
$this->showForm(_('Something weird happened.'),
$this->showForm(_m('Something weird happened.'),
$this->trimmed('newname'));
}
} else {
@ -116,13 +116,13 @@ class FBConnectauthAction extends Action
$this->element('div', array('class' => 'error'), $this->error);
} else {
$this->element('div', 'instructions',
sprintf(_('This is the first time you\'ve logged into %s so we must connect your Facebook to a local account. You can either create a new account, or connect with your existing account, if you have one.'), common_config('site', 'name')));
sprintf(_m('This is the first time you\'ve logged into %s so we must connect your Facebook to a local account. You can either create a new account, or connect with your existing account, if you have one.'), common_config('site', 'name')));
}
}
function title()
{
return _('Facebook Account Setup');
return _m('Facebook Account Setup');
}
function showForm($error=null, $username=null)
@ -150,7 +150,7 @@ class FBConnectauthAction extends Action
'class' => 'form_settings',
'action' => common_local_url('FBConnectAuth')));
$this->elementStart('fieldset', array('id' => 'settings_facebook_connect_options'));
$this->element('legend', null, _('Connection options'));
$this->element('legend', null, _m('Connection options'));
$this->elementStart('ul', 'form_data');
$this->elementStart('li');
$this->element('input', array('type' => 'checkbox',
@ -159,10 +159,10 @@ class FBConnectauthAction extends Action
'name' => 'license',
'value' => 'true'));
$this->elementStart('label', array('class' => 'checkbox', 'for' => 'license'));
$this->text(_('My text and files are available under '));
$this->text(_m('My text and files are available under '));
$this->element('a', array('href' => common_config('license', 'url')),
common_config('license', 'title'));
$this->text(_(' except this private data: password, email address, IM address, phone number.'));
$this->text(_m(' except this private data: password, email address, IM address, phone number.'));
$this->elementEnd('label');
$this->elementEnd('li');
$this->elementEnd('ul');
@ -170,33 +170,33 @@ class FBConnectauthAction extends Action
$this->elementStart('fieldset');
$this->hidden('token', common_session_token());
$this->element('legend', null,
_('Create new account'));
_m('Create new account'));
$this->element('p', null,
_('Create a new user with this nickname.'));
_m('Create a new user with this nickname.'));
$this->elementStart('ul', 'form_data');
$this->elementStart('li');
$this->input('newname', _('New nickname'),
$this->input('newname', _m('New nickname'),
($this->username) ? $this->username : '',
_('1-64 lowercase letters or numbers, no punctuation or spaces'));
_m('1-64 lowercase letters or numbers, no punctuation or spaces'));
$this->elementEnd('li');
$this->elementEnd('ul');
$this->submit('create', _('Create'));
$this->submit('create', _m('Create'));
$this->elementEnd('fieldset');
$this->elementStart('fieldset');
$this->element('legend', null,
_('Connect existing account'));
_m('Connect existing account'));
$this->element('p', null,
_('If you already have an account, login with your username and password to connect it to your Facebook.'));
_m('If you already have an account, login with your username and password to connect it to your Facebook.'));
$this->elementStart('ul', 'form_data');
$this->elementStart('li');
$this->input('nickname', _('Existing nickname'));
$this->input('nickname', _m('Existing nickname'));
$this->elementEnd('li');
$this->elementStart('li');
$this->password('password', _('Password'));
$this->password('password', _m('Password'));
$this->elementEnd('li');
$this->elementEnd('ul');
$this->submit('connect', _('Connect'));
$this->submit('connect', _m('Connect'));
$this->elementEnd('fieldset');
$this->elementEnd('fieldset');
@ -212,7 +212,7 @@ class FBConnectauthAction extends Action
function createNewUser()
{
if (common_config('site', 'closed')) {
$this->clientError(_('Registration not allowed.'));
$this->clientError(_m('Registration not allowed.'));
return;
}
@ -221,14 +221,14 @@ class FBConnectauthAction extends Action
if (common_config('site', 'inviteonly')) {
$code = $_SESSION['invitecode'];
if (empty($code)) {
$this->clientError(_('Registration not allowed.'));
$this->clientError(_m('Registration not allowed.'));
return;
}
$invite = Invitation::staticGet($code);
if (empty($invite)) {
$this->clientError(_('Not a valid invitation code.'));
$this->clientError(_m('Not a valid invitation code.'));
return;
}
}
@ -238,17 +238,17 @@ class FBConnectauthAction extends Action
if (!Validate::string($nickname, array('min_length' => 1,
'max_length' => 64,
'format' => NICKNAME_FMT))) {
$this->showForm(_('Nickname must have only lowercase letters and numbers and no spaces.'));
$this->showForm(_m('Nickname must have only lowercase letters and numbers and no spaces.'));
return;
}
if (!User::allowed_nickname($nickname)) {
$this->showForm(_('Nickname not allowed.'));
$this->showForm(_m('Nickname not allowed.'));
return;
}
if (User::staticGet('nickname', $nickname)) {
$this->showForm(_('Nickname already in use. Try another one.'));
$this->showForm(_m('Nickname already in use. Try another one.'));
return;
}
@ -266,7 +266,7 @@ class FBConnectauthAction extends Action
$result = $this->flinkUser($user->id, $this->fbuid);
if (!$result) {
$this->serverError(_('Error connecting user to Facebook.'));
$this->serverError(_m('Error connecting user to Facebook.'));
return;
}
@ -286,7 +286,7 @@ class FBConnectauthAction extends Action
$password = $this->trimmed('password');
if (!common_check_user($nickname, $password)) {
$this->showForm(_('Invalid username or password.'));
$this->showForm(_m('Invalid username or password.'));
return;
}
@ -300,7 +300,7 @@ class FBConnectauthAction extends Action
$result = $this->flinkUser($user->id, $this->fbuid);
if (!$result) {
$this->serverError(_('Error connecting user to Facebook.'));
$this->serverError(_m('Error connecting user to Facebook.'));
return;
}
@ -320,7 +320,7 @@ class FBConnectauthAction extends Action
$result = $this->flinkUser($user->id, $this->fbuid);
if (empty($result)) {
$this->serverError(_('Error connecting user to Facebook.'));
$this->serverError(_m('Error connecting user to Facebook.'));
return;
}

View File

@ -30,7 +30,7 @@ class FBConnectLoginAction extends Action
parent::handle($args);
if (common_is_real_login()) {
$this->clientError(_('Already logged in.'));
$this->clientError(_m('Already logged in.'));
}
$this->showPage();
@ -38,7 +38,7 @@ class FBConnectLoginAction extends Action
function getInstructions()
{
return _('Login with your Facebook Account');
return _m('Login with your Facebook Account');
}
function showPageNotice()
@ -52,7 +52,7 @@ class FBConnectLoginAction extends Action
function title()
{
return _('Facebook Login');
return _m('Facebook Login');
}
function showContent() {

View File

@ -53,7 +53,7 @@ class FBConnectSettingsAction extends ConnectSettingsAction
function title()
{
return _('Facebook Connect Settings');
return _m('Facebook Connect Settings');
}
/**
@ -64,7 +64,7 @@ class FBConnectSettingsAction extends ConnectSettingsAction
function getInstructions()
{
return _('Manage how your account connects to Facebook');
return _m('Manage how your account connects to Facebook');
}
/**
@ -89,7 +89,7 @@ class FBConnectSettingsAction extends ConnectSettingsAction
if (!$flink) {
$this->element('p', 'instructions',
_('There is no Facebook user connected to this account.'));
_m('There is no Facebook user connected to this account.'));
$this->element('fb:login-button', array('onlogin' => 'goto_login()',
'length' => 'long'));
@ -97,7 +97,7 @@ class FBConnectSettingsAction extends ConnectSettingsAction
} else {
$this->element('p', 'form_note',
_('Connected Facebook user'));
_m('Connected Facebook user'));
$this->elementStart('p', array('class' => 'facebook-user-display'));
$this->elementStart('fb:profile-pic',
@ -116,18 +116,18 @@ class FBConnectSettingsAction extends ConnectSettingsAction
$this->elementStart('fieldset');
$this->element('legend', null, _('Disconnect my account from Facebook'));
$this->element('legend', null, _m('Disconnect my account from Facebook'));
if (!$user->password) {
$this->elementStart('p', array('class' => 'form_guide'));
$this->text(_('Disconnecting your Faceboook ' .
'would make it impossible to log in! Please '));
$this->text(_m('Disconnecting your Faceboook ' .
'would make it impossible to log in! Please '));
$this->element('a',
array('href' => common_local_url('passwordsettings')),
_('set a password'));
_m('set a password'));
$this->text(_(' first.'));
$this->text(_m(' first.'));
$this->elementEnd('p');
} else {
@ -139,7 +139,7 @@ class FBConnectSettingsAction extends ConnectSettingsAction
$this->element('p', 'instructions',
sprintf($note, $site, $site));
$this->submit('disconnect', _('Disconnect'));
$this->submit('disconnect', _m('Disconnect'));
}
$this->elementEnd('fieldset');
@ -161,8 +161,8 @@ class FBConnectSettingsAction extends ConnectSettingsAction
// CSRF protection
$token = $this->trimmed('token');
if (!$token || $token != common_session_token()) {
$this->showForm(_('There was a problem with your session token. '.
'Try again, please.'));
$this->showForm(_m('There was a problem with your session token. '.
'Try again, please.'));
return;
}
@ -175,7 +175,7 @@ class FBConnectSettingsAction extends ConnectSettingsAction
if ($result === false) {
common_log_db_error($user, 'DELETE', __FILE__);
$this->serverError(_('Couldn\'t delete link to Facebook.'));
$this->serverError(_m('Couldn\'t delete link to Facebook.'));
return;
}
@ -191,10 +191,10 @@ class FBConnectSettingsAction extends ConnectSettingsAction
$e->getMessage());
}
$this->showForm(_('You have disconnected from Facebook.'), true);
$this->showForm(_m('You have disconnected from Facebook.'), true);
} else {
$this->showForm(_('Not sure what you\'re trying to do.'));
$this->showForm(_m('Not sure what you\'re trying to do.'));
return;
}

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);
}
}
@ -408,9 +406,9 @@ class FacebookPlugin extends Plugin
$action_name = $action->trimmed('action');
$action->menuItem(common_local_url('FBConnectLogin'),
_('Facebook'),
_('Login or register using Facebook'),
'FBConnectLogin' === $action_name);
_m('Facebook'),
_m('Login or register using Facebook'),
'FBConnectLogin' === $action_name);
return true;
}
@ -428,8 +426,8 @@ class FacebookPlugin extends Plugin
$action_name = $action->trimmed('action');
$action->menuItem(common_local_url('FBConnectSettings'),
_('Facebook'),
_('Facebook Connect Settings'),
_m('Facebook'),
_m('Facebook Connect Settings'),
$action_name === 'FBConnectSettings');
return true;

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);
@ -168,7 +168,7 @@ class FacebookAction extends Action
$this->elementStart('li', array('class' =>
($this->action == 'facebookhome') ? 'current' : 'facebook_home'));
$this->element('a',
array('href' => 'index.php', 'title' => _('Home')), _('Home'));
array('href' => 'index.php', 'title' => _m('Home')), _m('Home'));
$this->elementEnd('li');
if (common_config('invite', 'enabled')) {
@ -176,7 +176,7 @@ class FacebookAction extends Action
array('class' =>
($this->action == 'facebookinvite') ? 'current' : 'facebook_invite'));
$this->element('a',
array('href' => 'invite.php', 'title' => _('Invite')), _('Invite'));
array('href' => 'invite.php', 'title' => _m('Invite')), _m('Invite'));
$this->elementEnd('li');
}
@ -185,7 +185,7 @@ class FacebookAction extends Action
($this->action == 'facebooksettings') ? 'current' : 'facebook_settings'));
$this->element('a',
array('href' => 'settings.php',
'title' => _('Settings')), _('Settings'));
'title' => _m('Settings')), _m('Settings'));
$this->elementEnd('li');
$this->elementEnd('ul');
@ -225,15 +225,15 @@ class FacebookAction extends Action
$this->elementStart('dl', array('class' => 'system_notice'));
$this->element('dt', null, 'Page Notice');
$loginmsg_part1 = _('To use the %s Facebook Application you need to login ' .
$loginmsg_part1 = _m('To use the %s Facebook Application you need to login ' .
'with your username and password. Don\'t have a username yet? ');
$loginmsg_part2 = _(' a new account.');
$loginmsg_part2 = _m(' a new account.');
$this->elementStart('dd');
$this->elementStart('p');
$this->text(sprintf($loginmsg_part1, common_config('site', 'name')));
$this->element('a',
array('href' => common_local_url('register')), _('Register'));
array('href' => common_local_url('register')), _m('Register'));
$this->text($loginmsg_part2);
$this->elementEnd('p');
$this->elementEnd('dd');
@ -246,7 +246,7 @@ class FacebookAction extends Action
{
$this->elementStart('div', array('id' => 'content'));
$this->element('h1', null, _('Login'));
$this->element('h1', null, _m('Login'));
if ($msg) {
$this->element('fb:error', array('message' => $msg));
@ -265,20 +265,20 @@ class FacebookAction extends Action
$this->elementStart('ul', array('class' => 'form_datas'));
$this->elementStart('li');
$this->input('nickname', _('Nickname'));
$this->input('nickname', _m('Nickname'));
$this->elementEnd('li');
$this->elementStart('li');
$this->password('password', _('Password'));
$this->password('password', _m('Password'));
$this->elementEnd('li');
$this->elementEnd('ul');
$this->submit('submit', _('Login'));
$this->submit('submit', _m('Login'));
$this->elementEnd('fieldset');
$this->elementEnd('form');
$this->elementStart('p');
$this->element('a', array('href' => common_local_url('recoverpassword')),
_('Lost or forgotten password?'));
_m('Lost or forgotten password?'));
$this->elementEnd('p');
$this->elementEnd('div');
@ -383,7 +383,7 @@ class FacebookAction extends Action
// Does a little before-after block for next/prev page
if ($have_before || $have_after) {
$this->elementStart('dl', 'pagination');
$this->element('dt', null, _('Pagination'));
$this->element('dt', null, _m('Pagination'));
$this->elementStart('dd', null);
$this->elementStart('ul', array('class' => 'nav'));
}
@ -392,7 +392,7 @@ class FacebookAction extends Action
$newargs = $args ? array_merge($args, $pargs) : $pargs;
$this->elementStart('li', array('class' => 'nav_prev'));
$this->element('a', array('href' => "$this->app_uri/$action?page=$newargs[page]", 'rel' => 'prev'),
_('After'));
_m('After'));
$this->elementEnd('li');
}
if ($have_after) {
@ -400,7 +400,7 @@ class FacebookAction extends Action
$newargs = $args ? array_merge($args, $pargs) : $pargs;
$this->elementStart('li', array('class' => 'nav_next'));
$this->element('a', array('href' => "$this->app_uri/$action?page=$newargs[page]", 'rel' => 'next'),
_('Before'));
_m('Before'));
$this->elementEnd('li');
}
if ($have_before || $have_after) {
@ -418,13 +418,13 @@ class FacebookAction extends Action
$content = $this->trimmed('status_textarea');
if (!$content) {
$this->showPage(_('No notice content!'));
$this->showPage(_m('No notice content!'));
return;
} else {
$content_shortened = common_shorten_links($content);
if (Notice::contentTooLong($content_shortened)) {
$this->showPage(sprintf(_('That\'s too long. Max notice size is %d chars.'),
$this->showPage(sprintf(_m('That\'s too long. Max notice size is %d chars.'),
Notice::maxContent()));
return;
}
@ -520,7 +520,7 @@ class FacebookNoticeList extends NoticeList
function show()
{
$this->out->elementStart('div', array('id' =>'notices_primary'));
$this->out->element('h2', null, _('Notices'));
$this->out->element('h2', null, _m('Notices'));
$this->out->elementStart('ul', array('class' => 'notices'));
$cnt = 0;

View File

@ -108,7 +108,7 @@ class FacebookhomeAction extends FacebookAction
$user = User::staticGet('nickname', $nickname);
if (!$user) {
$this->showLoginForm(_("Server error - couldn't get user!"));
$this->showLoginForm(_m("Server error - couldn't get user!"));
}
$flink = DB_DataObject::factory('foreign_link');
@ -128,7 +128,7 @@ class FacebookhomeAction extends FacebookAction
return;
} else {
$msg = _('Incorrect username or password.');
$msg = _m('Incorrect username or password.');
}
}
@ -155,9 +155,9 @@ class FacebookhomeAction extends FacebookAction
function title()
{
if ($this->page > 1) {
return sprintf(_("%s and friends, page %d"), $this->user->nickname, $this->page);
return sprintf(_m("%s and friends, page %d"), $this->user->nickname, $this->page);
} else {
return sprintf(_("%s and friends"), $this->user->nickname);
return sprintf(_m("%s and friends"), $this->user->nickname);
}
}
@ -186,7 +186,7 @@ class FacebookhomeAction extends FacebookAction
$this->elementStart('div', array('class' => 'facebook_guide'));
$instructions = sprintf(_('If you would like the %s app to automatically update ' .
$instructions = sprintf(_m('If you would like the %s app to automatically update ' .
'your Facebook status with your latest notice, you need ' .
'to give it permission.'), $this->app_name);
@ -210,13 +210,13 @@ class FacebookhomeAction extends FacebookAction
$this->elementStart('span', array('class' => 'facebook-button'));
$this->element('a', array('href' => $auth_url),
sprintf(_('Okay, do it!'), $this->app_name));
sprintf(_m('Okay, do it!'), $this->app_name));
$this->elementEnd('span');
$this->elementEnd('li');
$this->elementStart('li', array('id' => 'fb-permissions-item'));
$this->submit('skip', _('Skip'));
$this->submit('skip', _m('Skip'));
$this->elementEnd('li');
$this->elementEnd('ul');
@ -245,7 +245,7 @@ class FacebookhomeAction extends FacebookAction
if ($have_before || $have_after) {
$this->elementStart('dl', 'pagination');
$this->element('dt', null, _('Pagination'));
$this->element('dt', null, _m('Pagination'));
$this->elementStart('dd', null);
$this->elementStart('ul', array('class' => 'nav'));
}
@ -254,7 +254,7 @@ class FacebookhomeAction extends FacebookAction
$newargs = $args ? array_merge($args, $pargs) : $pargs;
$this->elementStart('li', array('class' => 'nav_prev'));
$this->element('a', array('href' => "$action?page=$newargs[page]", 'rel' => 'prev'),
_('After'));
_m('After'));
$this->elementEnd('li');
}
if ($have_after) {
@ -262,7 +262,7 @@ class FacebookhomeAction extends FacebookAction
$newargs = $args ? array_merge($args, $pargs) : $pargs;
$this->elementStart('li', array('class' => 'nav_next'));
$this->element('a', array('href' => "$action?page=$newargs[page]", 'rel' => 'next'),
_('Before'));
_m('Before'));
$this->elementEnd('li');
}
if ($have_before || $have_after) {

View File

@ -69,9 +69,9 @@ class FacebookinviteAction extends FacebookAction
function showSuccessContent()
{
$this->element('h2', null, sprintf(_('Thanks for inviting your friends to use %s'),
$this->element('h2', null, sprintf(_m('Thanks for inviting your friends to use %s'),
common_config('site', 'name')));
$this->element('p', null, _('Invitations have been sent to the following users:'));
$this->element('p', null, _m('Invitations have been sent to the following users:'));
$friend_ids = $_POST['ids']; // XXX: Hmm... is this the best way to access the list?
@ -91,7 +91,7 @@ class FacebookinviteAction extends FacebookAction
function showFormContent()
{
$content = sprintf(_('You have been invited to %s'), common_config('site', 'name')) .
$content = sprintf(_m('You have been invited to %s'), common_config('site', 'name')) .
htmlentities('<fb:req-choice url="' . $this->app_uri . '" label="Add"/>');
$this->elementStart('fb:request-form', array('action' => 'invite.php',
@ -100,7 +100,7 @@ class FacebookinviteAction extends FacebookAction
'type' => common_config('site', 'name'),
'content' => $content));
$this->hidden('invite', 'true');
$actiontext = sprintf(_('Invite your friends to use %s'), common_config('site', 'name'));
$actiontext = sprintf(_m('Invite your friends to use %s'), common_config('site', 'name'));
$multi_params = array('showborder' => 'false');
$multi_params['actiontext'] = $actiontext;
@ -122,7 +122,7 @@ class FacebookinviteAction extends FacebookAction
if ($exclude_ids) {
$this->element('h2', null, sprintf(_('Friends already using %s:'),
$this->element('h2', null, sprintf(_m('Friends already using %s:'),
common_config('site', 'name')));
$this->elementStart('ul', array('id' => 'facebook-friends'));
@ -140,7 +140,7 @@ class FacebookinviteAction extends FacebookAction
function title()
{
return sprintf(_('Send invitations'));
return sprintf(_m('Send invitations'));
}
}

View File

@ -88,7 +88,7 @@ class FacebookinviteAction extends FacebookAction
function title()
{
return sprintf(_('Login'));
return sprintf(_m('Login'));
}
function redirectHome()

View File

@ -55,7 +55,7 @@ class FacebookremoveAction extends FacebookAction
if (!$result) {
common_log_db_error($flink, 'DELETE', __FILE__);
$this->serverError(_('Couldn\'t remove Facebook user.'));
$this->serverError(_m('Couldn\'t remove Facebook user.'));
return;
}

View File

@ -71,9 +71,9 @@ class FacebooksettingsAction extends FacebookAction
$trimmed);
if ($result === false) {
$this->showForm(_('There was a problem saving your sync preferences!'));
$this->showForm(_m('There was a problem saving your sync preferences!'));
} else {
$this->showForm(_('Sync preferences saved.'), true);
$this->showForm(_m('Sync preferences saved.'), true);
}
}
@ -96,14 +96,14 @@ class FacebooksettingsAction extends FacebookAction
$this->elementStart('li');
$this->checkbox('noticesync', _('Automatically update my Facebook status with my notices.'),
$this->checkbox('noticesync', _m('Automatically update my Facebook status with my notices.'),
($this->flink) ? ($this->flink->noticesync & FOREIGN_NOTICE_SEND) : true);
$this->elementEnd('li');
$this->elementStart('li');
$this->checkbox('replysync', _('Send "@" replies to Facebook.'),
$this->checkbox('replysync', _m('Send "@" replies to Facebook.'),
($this->flink) ? ($this->flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) : true);
$this->elementEnd('li');
@ -112,15 +112,15 @@ class FacebooksettingsAction extends FacebookAction
$prefix = trim($this->facebook->api_client->data_getUserPreference(FACEBOOK_NOTICE_PREFIX));
$this->input('prefix', _('Prefix'),
$this->input('prefix', _m('Prefix'),
($prefix) ? $prefix : null,
_('A string to prefix notices with.'));
_m('A string to prefix notices with.'));
$this->elementEnd('li');
$this->elementStart('li');
$this->submit('save', _('Save'));
$this->submit('save', _m('Save'));
$this->elementEnd('li');
@ -130,7 +130,7 @@ class FacebooksettingsAction extends FacebookAction
} else {
$instructions = sprintf(_('If you would like %s to automatically update ' .
$instructions = sprintf(_m('If you would like %s to automatically update ' .
'your Facebook status with your latest notice, you need ' .
'to give it permission.'), $this->app_name);
@ -143,7 +143,7 @@ class FacebooksettingsAction extends FacebookAction
$this->elementStart('fb:prompt-permission', array('perms' => 'publish_stream',
'next_fbjs' => 'document.setLocation(\'' . "$this->app_uri/settings.php" . '\')'));
$this->element('span', array('class' => 'facebook-button'),
sprintf(_('Allow %s to update my Facebook status'), common_config('site', 'name')));
sprintf(_m('Allow %s to update my Facebook status'), common_config('site', 'name')));
$this->elementEnd('fb:prompt-permission');
$this->elementEnd('li');
$this->elementEnd('ul');
@ -153,7 +153,7 @@ class FacebooksettingsAction extends FacebookAction
function title()
{
return _('Sync preferences');
return _m('Sync preferences');
}
}

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);
}
@ -277,10 +277,10 @@ function mail_facebook_app_removed($user)
$site_name = common_config('site', 'name');
$subject = sprintf(
_('Your %1$s Facebook application access has been disabled.',
_m('Your %1$s Facebook application access has been disabled.',
$site_name));
$body = sprintf(_("Hi, %1\$s. We're sorry to inform you that we are " .
$body = sprintf(_m("Hi, %1\$s. We're sorry to inform you that we are " .
'unable to update your Facebook status from %2$s, and have disabled ' .
'the Facebook application for your account. This may be because ' .
'you have removed the Facebook application\'s authorization, or ' .

View File

@ -0,0 +1,394 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-07 20:38-0800\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: facebookaction.php:171
msgid "Home"
msgstr ""
#: facebookaction.php:179
msgid "Invite"
msgstr ""
#: facebookaction.php:188
msgid "Settings"
msgstr ""
#: facebookaction.php:228
#, php-format
msgid ""
"To use the %s Facebook Application you need to login with your username and "
"password. Don't have a username yet? "
msgstr ""
#: facebookaction.php:230
msgid " a new account."
msgstr ""
#: facebookaction.php:236
msgid "Register"
msgstr ""
#: facebookaction.php:249 facebookaction.php:275 facebooklogin.php:91
msgid "Login"
msgstr ""
#: facebookaction.php:268
msgid "Nickname"
msgstr ""
#: facebookaction.php:271 FBConnectAuth.php:196
msgid "Password"
msgstr ""
#: facebookaction.php:281
msgid "Lost or forgotten password?"
msgstr ""
#: facebookaction.php:386 facebookhome.php:248
msgid "Pagination"
msgstr ""
#: facebookaction.php:395 facebookhome.php:257
msgid "After"
msgstr ""
#: facebookaction.php:403 facebookhome.php:265
msgid "Before"
msgstr ""
#: facebookaction.php:421
msgid "No notice content!"
msgstr ""
#: facebookaction.php:427
#, php-format
msgid "That's too long. Max notice size is %d chars."
msgstr ""
#: facebookaction.php:523
msgid "Notices"
msgstr ""
#: facebookutil.php:280
#, php-format
msgid "Your %1$s Facebook application access has been disabled."
msgstr ""
#: facebookutil.php:283
#, php-format
msgid ""
"Hi, %1$s. We're sorry to inform you that we are unable to update your "
"Facebook status from %2$s, and have disabled the Facebook application for "
"your account. This may be because you have removed the Facebook "
"application's authorization, or have deleted your Facebook account. You can "
"re-enable the Facebook application and automatic status updating by re-"
"installing the %2$s Facebook application.\n"
"\n"
"Regards,\n"
"\n"
"%2$s"
msgstr ""
#: FBConnectLogin.php:33
msgid "Already logged in."
msgstr ""
#: FBConnectLogin.php:41
msgid "Login with your Facebook Account"
msgstr ""
#: FBConnectLogin.php:55
msgid "Facebook Login"
msgstr ""
#: facebookhome.php:111
msgid "Server error - couldn't get user!"
msgstr ""
#: facebookhome.php:131
msgid "Incorrect username or password."
msgstr ""
#: facebookhome.php:158
#, php-format
msgid "%s and friends, page %d"
msgstr ""
#: facebookhome.php:160
#, php-format
msgid "%s and friends"
msgstr ""
#: facebookhome.php:189
#, php-format
msgid ""
"If you would like the %s app to automatically update your Facebook status "
"with your latest notice, you need to give it permission."
msgstr ""
#: facebookhome.php:213
msgid "Okay, do it!"
msgstr ""
#: facebookhome.php:219
msgid "Skip"
msgstr ""
#: facebooksettings.php:74
msgid "There was a problem saving your sync preferences!"
msgstr ""
#: facebooksettings.php:76
msgid "Sync preferences saved."
msgstr ""
#: facebooksettings.php:99
msgid "Automatically update my Facebook status with my notices."
msgstr ""
#: facebooksettings.php:106
msgid "Send \"@\" replies to Facebook."
msgstr ""
#: facebooksettings.php:115
msgid "Prefix"
msgstr ""
#: facebooksettings.php:117
msgid "A string to prefix notices with."
msgstr ""
#: facebooksettings.php:123
msgid "Save"
msgstr ""
#: facebooksettings.php:133
#, php-format
msgid ""
"If you would like %s to automatically update your Facebook status with your "
"latest notice, you need to give it permission."
msgstr ""
#: facebooksettings.php:146
#, php-format
msgid "Allow %s to update my Facebook status"
msgstr ""
#: facebooksettings.php:156
msgid "Sync preferences"
msgstr ""
#: facebookinvite.php:72
#, php-format
msgid "Thanks for inviting your friends to use %s"
msgstr ""
#: facebookinvite.php:74
msgid "Invitations have been sent to the following users:"
msgstr ""
#: facebookinvite.php:94
#, php-format
msgid "You have been invited to %s"
msgstr ""
#: facebookinvite.php:103
#, php-format
msgid "Invite your friends to use %s"
msgstr ""
#: facebookinvite.php:125
#, php-format
msgid "Friends already using %s:"
msgstr ""
#: facebookinvite.php:143
msgid "Send invitations"
msgstr ""
#: facebookremove.php:58
msgid "Couldn't remove Facebook user."
msgstr ""
#: FBConnectSettings.php:56 FacebookPlugin.php:430
msgid "Facebook Connect Settings"
msgstr ""
#: FBConnectSettings.php:67
msgid "Manage how your account connects to Facebook"
msgstr ""
#: FBConnectSettings.php:92
msgid "There is no Facebook user connected to this account."
msgstr ""
#: FBConnectSettings.php:100
msgid "Connected Facebook user"
msgstr ""
#: FBConnectSettings.php:119
msgid "Disconnect my account from Facebook"
msgstr ""
#: FBConnectSettings.php:124
msgid ""
"Disconnecting your Faceboook would make it impossible to log in! Please "
msgstr ""
#: FBConnectSettings.php:128
msgid "set a password"
msgstr ""
#: FBConnectSettings.php:130
msgid " first."
msgstr ""
#: FBConnectSettings.php:142
msgid "Disconnect"
msgstr ""
#: FBConnectSettings.php:164 FBConnectAuth.php:90
msgid "There was a problem with your session token. Try again, please."
msgstr ""
#: FBConnectSettings.php:178
msgid "Couldn't delete link to Facebook."
msgstr ""
#: FBConnectSettings.php:194
msgid "You have disconnected from Facebook."
msgstr ""
#: FBConnectSettings.php:197
msgid "Not sure what you're trying to do."
msgstr ""
#: FBConnectAuth.php:51
msgid "You must be logged into Facebook to use Facebook Connect."
msgstr ""
#: FBConnectAuth.php:77
msgid "There is already a local user linked with this Facebook."
msgstr ""
#: FBConnectAuth.php:95
msgid "You can't register if you don't agree to the license."
msgstr ""
#: FBConnectAuth.php:105
msgid "Something weird happened."
msgstr ""
#: FBConnectAuth.php:119
#, php-format
msgid ""
"This is the first time you've logged into %s so we must connect your "
"Facebook to a local account. You can either create a new account, or connect "
"with your existing account, if you have one."
msgstr ""
#: FBConnectAuth.php:125
msgid "Facebook Account Setup"
msgstr ""
#: FBConnectAuth.php:153
msgid "Connection options"
msgstr ""
#: FBConnectAuth.php:162
msgid "My text and files are available under "
msgstr ""
#: FBConnectAuth.php:165
msgid ""
" except this private data: password, email address, IM address, phone number."
msgstr ""
#: FBConnectAuth.php:173
msgid "Create new account"
msgstr ""
#: FBConnectAuth.php:175
msgid "Create a new user with this nickname."
msgstr ""
#: FBConnectAuth.php:178
msgid "New nickname"
msgstr ""
#: FBConnectAuth.php:180
msgid "1-64 lowercase letters or numbers, no punctuation or spaces"
msgstr ""
#: FBConnectAuth.php:183
msgid "Create"
msgstr ""
#: FBConnectAuth.php:188
msgid "Connect existing account"
msgstr ""
#: FBConnectAuth.php:190
msgid ""
"If you already have an account, login with your username and password to "
"connect it to your Facebook."
msgstr ""
#: FBConnectAuth.php:193
msgid "Existing nickname"
msgstr ""
#: FBConnectAuth.php:199
msgid "Connect"
msgstr ""
#: FBConnectAuth.php:215 FBConnectAuth.php:224
msgid "Registration not allowed."
msgstr ""
#: FBConnectAuth.php:231
msgid "Not a valid invitation code."
msgstr ""
#: FBConnectAuth.php:241
msgid "Nickname must have only lowercase letters and numbers and no spaces."
msgstr ""
#: FBConnectAuth.php:246
msgid "Nickname not allowed."
msgstr ""
#: FBConnectAuth.php:251
msgid "Nickname already in use. Try another one."
msgstr ""
#: FBConnectAuth.php:269 FBConnectAuth.php:303 FBConnectAuth.php:323
msgid "Error connecting user to Facebook."
msgstr ""
#: FBConnectAuth.php:289
msgid "Invalid username or password."
msgstr ""
#: FacebookPlugin.php:409 FacebookPlugin.php:429
msgid "Facebook"
msgstr ""
#: FacebookPlugin.php:410
msgid "Login or register using Facebook"
msgstr ""

View File

@ -51,7 +51,6 @@ class FeedSubPlugin extends Plugin
* @param Net_URL_Mapper $m path-to-action mapper
* @return boolean hook return
*/
function onRouterInitialized($m)
{
$m->connect('feedsub/callback/:feed',
@ -74,8 +73,8 @@ class FeedSubPlugin extends Plugin
$action_name = $action->trimmed('action');
$action->menuItem(common_local_url('feedsubsettings'),
dgettext('FeebSubPlugin', 'Feeds'),
dgettext('FeedSubPlugin', 'Feed subscription options'),
_m('Feeds'),
_m('Feed subscription options'),
$action_name === 'feedsubsettings');
return true;

View File

@ -38,7 +38,7 @@ class FeedSubSettingsAction extends ConnectSettingsAction
function title()
{
return dgettext('FeedSubPlugin', 'Feed subscriptions');
return _m('Feed subscriptions');
}
/**
@ -49,9 +49,8 @@ class FeedSubSettingsAction extends ConnectSettingsAction
function getInstructions()
{
return dgettext('FeedSubPlugin',
'You can subscribe to feeds from other sites; ' .
'updates will appear in your personal timeline.');
return _m('You can subscribe to feeds from other sites; ' .
'updates will appear in your personal timeline.');
}
/**
@ -94,9 +93,9 @@ class FeedSubSettingsAction extends ConnectSettingsAction
$this->elementEnd('ul');
if ($this->preview) {
$this->submit('subscribe', dgettext('FeedSubPlugin', 'Subscribe'));
$this->submit('subscribe', _m('Subscribe'));
} else {
$this->submit('validate', dgettext('FeedSubPlugin', 'Continue'));
$this->submit('validate', _m('Continue'));
}
$this->elementEnd('fieldset');
@ -149,8 +148,7 @@ class FeedSubSettingsAction extends ConnectSettingsAction
$feedurl = trim($this->arg('feedurl'));
if ($feedurl == '') {
$this->showForm(dgettext('FeedSubPlugin',
'Empty feed URL!'));
$this->showForm(_m('Empty feed URL!'));
return;
}
$this->feedurl = $feedurl;
@ -160,26 +158,26 @@ class FeedSubSettingsAction extends ConnectSettingsAction
$discover = new FeedDiscovery();
$uri = $discover->discoverFromURL($feedurl);
} catch (FeedSubBadURLException $e) {
$this->showForm(dgettext('FeedSubPlugin', 'Invalid URL or could not reach server.'));
$this->showForm(_m('Invalid URL or could not reach server.'));
return false;
} catch (FeedSubBadResponseException $e) {
$this->showForm(dgettext('FeedSubPlugin', 'Cannot read feed; server returned error.'));
$this->showForm(_m('Cannot read feed; server returned error.'));
return false;
} catch (FeedSubEmptyException $e) {
$this->showForm(dgettext('FeedSubPlugin', 'Cannot read feed; server returned an empty page.'));
$this->showForm(_m('Cannot read feed; server returned an empty page.'));
return false;
} catch (FeedSubBadHTMLException $e) {
$this->showForm(dgettext('FeedSubPlugin', 'Bad HTML, could not find feed link.'));
$this->showForm(_m('Bad HTML, could not find feed link.'));
return false;
} catch (FeedSubNoFeedException $e) {
$this->showForm(dgettext('FeedSubPlugin', 'Could not find a feed linked from this URL.'));
$this->showForm(_m('Could not find a feed linked from this URL.'));
return false;
} catch (FeedSubUnrecognizedTypeException $e) {
$this->showForm(dgettext('FeedSubPlugin', 'Not a recognized feed type.'));
$this->showForm(_m('Not a recognized feed type.'));
return false;
} catch (FeedSubException $e) {
// Any new ones we forgot about
$this->showForm(dgettext('FeedSubPlugin', 'Bad feed URL.'));
$this->showForm(_m('Bad feed URL.'));
return false;
}
@ -187,7 +185,7 @@ class FeedSubSettingsAction extends ConnectSettingsAction
$this->feedinfo = $this->munger->feedInfo();
if ($this->feedinfo->huburi == '') {
$this->showForm(dgettext('FeedSubPlugin', 'Feed is not PuSH-enabled; cannot subscribe.'));
$this->showForm(_m('Feed is not PuSH-enabled; cannot subscribe.'));
return false;
}
@ -207,7 +205,7 @@ class FeedSubSettingsAction extends ConnectSettingsAction
$ok = $this->feedinfo->subscribe();
common_log(LOG_INFO, __METHOD__ . ": sub was $ok");
if (!$ok) {
$this->showForm(dgettext('FeedSubPlugin', 'Feed subscription failed! Bad response from hub.'));
$this->showForm(_m('Feed subscription failed! Bad response from hub.'));
return;
}
}
@ -217,11 +215,11 @@ class FeedSubSettingsAction extends ConnectSettingsAction
$profile = $this->feedinfo->getProfile();
if ($user->isSubscribed($profile)) {
$this->showForm(dgettext('FeedSubPlugin', 'Already subscribed!'));
$this->showForm(_m('Already subscribed!'));
} elseif ($user->subscribeTo($profile)) {
$this->showForm(dgettext('FeedSubPlugin', 'Feed subscribed!'));
$this->showForm(_m('Feed subscribed!'));
} else {
$this->showForm(dgettext('FeedSubPlugin', 'Feed subscription failed!'));
$this->showForm(_m('Feed subscription failed!'));
}
}
}
@ -230,7 +228,7 @@ class FeedSubSettingsAction extends ConnectSettingsAction
{
if ($this->validateFeed()) {
$this->preview = true;
$this->showForm(dgettext('FeedSubPlugin', 'Previewing feed:'));
$this->showForm(_m('Previewing feed:'));
}
}

View File

@ -212,7 +212,7 @@ class FeedMunger
// try adding #hashtags from the categories/tags on a post.
// @todo Should we force a language here?
$format = dgettext("FeedSubPlugin", 'New post: "%1$s" %2$s');
$format = _m('New post: "%1$s" %2$s');
$title = $entry->title;
$link = $this->getAltLink($entry);
$out = sprintf($format, $title, $link);

View File

@ -0,0 +1,104 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-07 20:38-0800\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
#: tests/gettext-speedtest.php:57 FeedSubPlugin.php:76
msgid "Feeds"
msgstr ""
#: FeedSubPlugin.php:77
msgid "Feed subscription options"
msgstr ""
#: feedmunger.php:215
#, php-format
msgid "New post: \"%1$s\" %2$s"
msgstr ""
#: actions/feedsubsettings.php:41
msgid "Feed subscriptions"
msgstr ""
#: actions/feedsubsettings.php:52
msgid ""
"You can subscribe to feeds from other sites; updates will appear in your "
"personal timeline."
msgstr ""
#: actions/feedsubsettings.php:96
msgid "Subscribe"
msgstr ""
#: actions/feedsubsettings.php:98
msgid "Continue"
msgstr ""
#: actions/feedsubsettings.php:151
msgid "Empty feed URL!"
msgstr ""
#: actions/feedsubsettings.php:161
msgid "Invalid URL or could not reach server."
msgstr ""
#: actions/feedsubsettings.php:164
msgid "Cannot read feed; server returned error."
msgstr ""
#: actions/feedsubsettings.php:167
msgid "Cannot read feed; server returned an empty page."
msgstr ""
#: actions/feedsubsettings.php:170
msgid "Bad HTML, could not find feed link."
msgstr ""
#: actions/feedsubsettings.php:173
msgid "Could not find a feed linked from this URL."
msgstr ""
#: actions/feedsubsettings.php:176
msgid "Not a recognized feed type."
msgstr ""
#: actions/feedsubsettings.php:180
msgid "Bad feed URL."
msgstr ""
#: actions/feedsubsettings.php:188
msgid "Feed is not PuSH-enabled; cannot subscribe."
msgstr ""
#: actions/feedsubsettings.php:208
msgid "Feed subscription failed! Bad response from hub."
msgstr ""
#: actions/feedsubsettings.php:218
msgid "Already subscribed!"
msgstr ""
#: actions/feedsubsettings.php:220
msgid "Feed subscribed!"
msgstr ""
#: actions/feedsubsettings.php:222
msgid "Feed subscription failed!"
msgstr ""
#: actions/feedsubsettings.php:231
msgid "Previewing feed:"
msgstr ""

View File

@ -0,0 +1,106 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-07 14:14-0800\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"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: FeedSubPlugin.php:77
msgid "Feeds"
msgstr "Flux"
#: FeedSubPlugin.php:78
msgid "Feed subscription options"
msgstr "Préférences pour abonnement flux"
#: feedmunger.php:215
#, php-format
msgid "New post: \"%1$s\" %2$s"
msgstr "Nouveau: \"%1$s\" %2$s"
#: actions/feedsubsettings.php:41
msgid "Feed subscriptions"
msgstr "Abonnements aux fluxes"
#: actions/feedsubsettings.php:52
msgid ""
"You can subscribe to feeds from other sites; updates will appear in your "
"personal timeline."
msgstr ""
"Abonner aux fluxes RSS ou Atom des autres sites web; les temps se trouverair"
"en votre flux personnel."
#: actions/feedsubsettings.php:96
msgid "Subscribe"
msgstr "Abonner"
#: actions/feedsubsettings.php:98
msgid "Continue"
msgstr "Prochaine"
#: actions/feedsubsettings.php:151
msgid "Empty feed URL!"
msgstr ""
#: actions/feedsubsettings.php:161
msgid "Invalid URL or could not reach server."
msgstr ""
#: actions/feedsubsettings.php:164
msgid "Cannot read feed; server returned error."
msgstr ""
#: actions/feedsubsettings.php:167
msgid "Cannot read feed; server returned an empty page."
msgstr ""
#: actions/feedsubsettings.php:170
msgid "Bad HTML, could not find feed link."
msgstr ""
#: actions/feedsubsettings.php:173
msgid "Could not find a feed linked from this URL."
msgstr ""
#: actions/feedsubsettings.php:176
msgid "Not a recognized feed type."
msgstr ""
#: actions/feedsubsettings.php:180
msgid "Bad feed URL."
msgstr ""
#: actions/feedsubsettings.php:188
msgid "Feed is not PuSH-enabled; cannot subscribe."
msgstr ""
#: actions/feedsubsettings.php:208
msgid "Feed subscription failed! Bad response from hub."
msgstr ""
#: actions/feedsubsettings.php:218
msgid "Already subscribed!"
msgstr ""
#: actions/feedsubsettings.php:220
msgid "Feed subscribed!"
msgstr ""
#: actions/feedsubsettings.php:222
msgid "Feed subscription failed!"
msgstr ""
#: actions/feedsubsettings.php:231
msgid "Previewing feed:"
msgstr ""

View File

@ -0,0 +1,78 @@
<?php
if (isset($_SERVER) && array_key_exists('REQUEST_METHOD', $_SERVER)) {
print "This script must be run from the command line\n";
exit();
}
define('INSTALLDIR', realpath(dirname(__FILE__) . '/../../..'));
define('STATUSNET', true);
define('LACONICA', true);
require_once INSTALLDIR . '/scripts/commandline.inc';
require_once INSTALLDIR . '/extlib/php-gettext/gettext.inc';
common_init_locale("en_US");
common_init_locale('fr');
putenv("LANG=fr");
putenv("LANGUAGE=fr");
setlocale('fr.utf8');
_setlocale('fr.utf8');
_bindtextdomain("statusnet", INSTALLDIR . '/locale');
_bindtextdomain("FeedSub", INSTALLDIR . '/plugins/FeedSub/locale');
$times = 10000;
$delta = array();
$start = microtime(true);
for($i = 0; $i < $times; $i++) {
$result = _("Send");
}
$delta["_"] = array((microtime(true) - $start) / $times, $result);
$start = microtime(true);
for($i = 0; $i < $times; $i++) {
$result = __("Send");
}
$delta["__"] = array((microtime(true) - $start) / $times, $result);
$start = microtime(true);
for($i = 0; $i < $times; $i++) {
$result = dgettext("FeedSub", "Feeds");
}
$delta["dgettext"] = array((microtime(true) - $start) / $times, $result);
$start = microtime(true);
for($i = 0; $i < $times; $i++) {
$result = _dgettext("FeedSub", "Feeds");
}
$delta["_dgettext"] = array((microtime(true) - $start) / $times, $result);
$start = microtime(true);
for($i = 0; $i < $times; $i++) {
$result = _m("Feeds");
}
$delta["_m"] = array((microtime(true) - $start) / $times, $result);
$start = microtime(true);
for($i = 0; $i < $times; $i++) {
$result = fake("Feeds");
}
$delta["fake"] = array((microtime(true) - $start) / $times, $result);
foreach ($delta as $func => $bits) {
list($time, $result) = $bits;
$ms = $time * 1000.0;
printf("%10s %2.4fms %s\n", $func, $ms, $result);
}
function fake($str) {
return $str;
}

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