forked from GNUsocial/gnu-social
Merge commit 'origin/0.9.x' into 0.9.x
This commit is contained in:
commit
a5c11cc92a
54
EVENTS.txt
54
EVENTS.txt
@ -574,3 +574,57 @@ EndShortenUrl: After a URL has been shortened
|
|||||||
- $shortenerName: name of the requested shortener
|
- $shortenerName: name of the requested shortener
|
||||||
- $shortenedUrl: short version of the url
|
- $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
18
Makefile
Normal 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 $@ $<
|
||||||
|
|
@ -144,7 +144,7 @@ class AllAction extends ProfileAction
|
|||||||
|
|
||||||
function showContent()
|
function showContent()
|
||||||
{
|
{
|
||||||
$nl = new NoticeList($this->notice, $this);
|
$nl = new InboxNoticeList($this->notice, $this->user, $this);
|
||||||
|
|
||||||
$cnt = $nl->show();
|
$cnt = $nl->show();
|
||||||
|
|
||||||
@ -160,12 +160,95 @@ class AllAction extends ProfileAction
|
|||||||
|
|
||||||
function showPageTitle()
|
function showPageTitle()
|
||||||
{
|
{
|
||||||
$user =& common_current_user();
|
$user = common_current_user();
|
||||||
if ($user && ($user->id == $this->user->id)) {
|
if ($user && ($user->id == $this->user->id)) {
|
||||||
$this->element('h1', null, _("You and friends"));
|
$this->element('h1', null, _("You and friends"));
|
||||||
} else {
|
} else {
|
||||||
$this->element('h1', null, sprintf(_('%s and friends'), $this->user->nickname));
|
$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();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -98,6 +98,17 @@ class ApiBlockCreateAction extends ApiAuthAction
|
|||||||
return;
|
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)
|
if ($this->user->hasBlocked($this->other)
|
||||||
|| $this->user->block($this->other)
|
|| $this->user->block($this->other)
|
||||||
) {
|
) {
|
||||||
|
@ -129,8 +129,6 @@ class DesignadminpanelAction extends AdminPanelAction
|
|||||||
|
|
||||||
$bgimage = $this->saveBackgroundImage();
|
$bgimage = $this->saveBackgroundImage();
|
||||||
|
|
||||||
common_debug("background image: $bgimage");
|
|
||||||
|
|
||||||
static $settings = array('theme', 'logo');
|
static $settings = array('theme', 'logo');
|
||||||
|
|
||||||
$values = array();
|
$values = array();
|
||||||
@ -141,13 +139,28 @@ class DesignadminpanelAction extends AdminPanelAction
|
|||||||
|
|
||||||
$this->validate($values);
|
$this->validate($values);
|
||||||
|
|
||||||
// assert(all values are valid);
|
$oldtheme = common_config('site', 'theme');
|
||||||
|
|
||||||
$bgcolor = new WebColor($this->trimmed('design_background'));
|
$config = new Config();
|
||||||
$ccolor = new WebColor($this->trimmed('design_content'));
|
|
||||||
$sbcolor = new WebColor($this->trimmed('design_sidebar'));
|
$config->query('BEGIN');
|
||||||
$tcolor = new WebColor($this->trimmed('design_text'));
|
|
||||||
$lcolor = new WebColor($this->trimmed('design_links'));
|
// 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');
|
$onoff = $this->arg('design_background-image_onoff');
|
||||||
|
|
||||||
@ -162,9 +175,11 @@ class DesignadminpanelAction extends AdminPanelAction
|
|||||||
|
|
||||||
$tile = $this->boolean('design_background-image_repeat');
|
$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) {
|
foreach ($settings as $setting) {
|
||||||
Config::save('site', $setting, $values[$setting]);
|
Config::save('site', $setting, $values[$setting]);
|
||||||
@ -174,21 +189,7 @@ class DesignadminpanelAction extends AdminPanelAction
|
|||||||
Config::save('design', 'backgroundimage', $bgimage);
|
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');
|
$config->query('COMMIT');
|
||||||
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -212,6 +213,10 @@ class DesignadminpanelAction extends AdminPanelAction
|
|||||||
}
|
}
|
||||||
|
|
||||||
// XXX: Should we restore the default dir settings, etc.? --Z
|
// 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
122
actions/forward.php
Normal 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!
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -173,17 +173,12 @@ class GroupDesignSettingsAction extends DesignSettingsAction
|
|||||||
|
|
||||||
function getWorkingDesign()
|
function getWorkingDesign()
|
||||||
{
|
{
|
||||||
|
|
||||||
$design = null;
|
$design = null;
|
||||||
|
|
||||||
if (isset($this->group)) {
|
if (isset($this->group)) {
|
||||||
$design = $this->group->getDesign();
|
$design = $this->group->getDesign();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($design)) {
|
|
||||||
$design = $this->defaultDesign();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $design;
|
return $design;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -197,7 +192,13 @@ class GroupDesignSettingsAction extends DesignSettingsAction
|
|||||||
|
|
||||||
function showContent()
|
function showContent()
|
||||||
{
|
{
|
||||||
$this->showDesignForm($this->getWorkingDesign());
|
$design = $this->getWorkingDesign();
|
||||||
|
|
||||||
|
if (empty($design)) {
|
||||||
|
$design = Design::siteDesign();
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->showDesignForm($design);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -75,10 +75,15 @@ class LoginAction extends Action
|
|||||||
function handle($args)
|
function handle($args)
|
||||||
{
|
{
|
||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
|
|
||||||
|
$disabled = common_config('logincommand','disabled');
|
||||||
|
|
||||||
if (common_is_real_login()) {
|
if (common_is_real_login()) {
|
||||||
$this->clientError(_('Already logged in.'));
|
$this->clientError(_('Already logged in.'));
|
||||||
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
} else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
|
||||||
$this->checkLogin();
|
$this->checkLogin();
|
||||||
|
} else if (!isset($disabled) && isset($args['user_id']) && isset($args['token'])){
|
||||||
|
$this->checkLogin($args['user_id'],$args['token']);
|
||||||
} else {
|
} else {
|
||||||
common_ensure_session();
|
common_ensure_session();
|
||||||
$this->showForm();
|
$this->showForm();
|
||||||
@ -95,7 +100,7 @@ class LoginAction extends Action
|
|||||||
* @return void
|
* @return void
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function checkLogin()
|
function checkLogin($user_id=null, $token=null)
|
||||||
{
|
{
|
||||||
if(isset($token) && isset($user_id)){
|
if(isset($token) && isset($user_id)){
|
||||||
//Token based login (from the LoginCommand)
|
//Token based login (from the LoginCommand)
|
||||||
@ -137,11 +142,6 @@ class LoginAction extends Action
|
|||||||
$user = common_check_user($nickname, $password);
|
$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) {
|
if (!$user) {
|
||||||
$this->showForm(_('Incorrect username or password.'));
|
$this->showForm(_('Incorrect username or password.'));
|
||||||
return;
|
return;
|
||||||
|
@ -57,7 +57,7 @@ class SubscribersAction extends GalleryAction
|
|||||||
|
|
||||||
function showPageNotice()
|
function showPageNotice()
|
||||||
{
|
{
|
||||||
$user =& common_current_user();
|
$user = common_current_user();
|
||||||
if ($user && ($user->id == $this->profile->id)) {
|
if ($user && ($user->id == $this->profile->id)) {
|
||||||
$this->element('p', null,
|
$this->element('p', null,
|
||||||
_('These are the people who listen to '.
|
_('These are the people who listen to '.
|
||||||
|
@ -59,7 +59,7 @@ class SubscriptionsAction extends GalleryAction
|
|||||||
|
|
||||||
function showPageNotice()
|
function showPageNotice()
|
||||||
{
|
{
|
||||||
$user =& common_current_user();
|
$user = common_current_user();
|
||||||
if ($user && ($user->id == $this->profile->id)) {
|
if ($user && ($user->id == $this->profile->id)) {
|
||||||
$this->element('p', null,
|
$this->element('p', null,
|
||||||
_('These are the people whose notices '.
|
_('These are the people whose notices '.
|
||||||
|
@ -71,7 +71,7 @@ class TwitapisearchatomAction extends ApiAction
|
|||||||
* @see Action::__construct
|
* @see Action::__construct
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function __construct($output='php://output', $indent=true)
|
function __construct($output='php://output', $indent=null)
|
||||||
{
|
{
|
||||||
parent::__construct($output, $indent);
|
parent::__construct($output, $indent);
|
||||||
}
|
}
|
||||||
|
@ -69,7 +69,7 @@ class UserbyidAction extends Action
|
|||||||
if (!$id) {
|
if (!$id) {
|
||||||
$this->clientError(_('No id.'));
|
$this->clientError(_('No id.'));
|
||||||
}
|
}
|
||||||
$user =& User::staticGet($id);
|
$user = User::staticGet($id);
|
||||||
if (!$user) {
|
if (!$user) {
|
||||||
$this->clientError(_('No such user.'));
|
$this->clientError(_('No such user.'));
|
||||||
}
|
}
|
||||||
|
@ -96,14 +96,8 @@ class UserDesignSettingsAction extends DesignSettingsAction
|
|||||||
|
|
||||||
function getWorkingDesign()
|
function getWorkingDesign()
|
||||||
{
|
{
|
||||||
|
|
||||||
$user = common_current_user();
|
$user = common_current_user();
|
||||||
$design = $user->getDesign();
|
$design = $user->getDesign();
|
||||||
|
|
||||||
if (empty($design)) {
|
|
||||||
$design = $this->defaultDesign();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $design;
|
return $design;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -117,7 +111,13 @@ class UserDesignSettingsAction extends DesignSettingsAction
|
|||||||
|
|
||||||
function showContent()
|
function showContent()
|
||||||
{
|
{
|
||||||
$this->showDesignForm($this->getWorkingDesign());
|
$design = $this->getWorkingDesign();
|
||||||
|
|
||||||
|
if (empty($design)) {
|
||||||
|
$design = Design::siteDesign();
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->showDesignForm($design);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -101,7 +101,7 @@ class Design extends Memcached_DataObject
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (0 != mb_strlen($css)) {
|
if (0 != mb_strlen($css)) {
|
||||||
$out->element('style', array('type' => 'text/css'), $css);
|
$out->style($css);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
126
classes/Forward.php
Normal file
126
classes/Forward.php
Normal 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
42
classes/Login_token.php
Normal 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
|
||||||
|
}
|
@ -948,39 +948,7 @@ class Notice extends Memcached_DataObject
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$cnt = 0;
|
Notice_inbox::bulkInsert($this->id, $this->created, $ni);
|
||||||
|
|
||||||
$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);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
@ -32,6 +32,7 @@ define('NOTICE_INBOX_SOFT_LIMIT', 1000);
|
|||||||
define('NOTICE_INBOX_SOURCE_SUB', 1);
|
define('NOTICE_INBOX_SOURCE_SUB', 1);
|
||||||
define('NOTICE_INBOX_SOURCE_GROUP', 2);
|
define('NOTICE_INBOX_SOURCE_GROUP', 2);
|
||||||
define('NOTICE_INBOX_SOURCE_REPLY', 3);
|
define('NOTICE_INBOX_SOURCE_REPLY', 3);
|
||||||
|
define('NOTICE_INBOX_SOURCE_FORWARD', 4);
|
||||||
define('NOTICE_INBOX_SOURCE_GATEWAY', -1);
|
define('NOTICE_INBOX_SOURCE_GATEWAY', -1);
|
||||||
|
|
||||||
class Notice_inbox extends Memcached_DataObject
|
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->whereAdd('created > \'' . date('Y-m-d H:i:s', $since) . '\'');
|
||||||
}
|
}
|
||||||
|
|
||||||
$inbox->orderBy('notice_id DESC');
|
$inbox->orderBy('created DESC');
|
||||||
|
|
||||||
if (!is_null($offset)) {
|
if (!is_null($offset)) {
|
||||||
$inbox->limit($offset, $limit);
|
$inbox->limit($offset, $limit);
|
||||||
@ -141,4 +142,43 @@ class Notice_inbox extends Memcached_DataObject
|
|||||||
'WHERE user_id = ' . $user_id . ' ' .
|
'WHERE user_id = ' . $user_id . ' ' .
|
||||||
'AND notice_id in ('.implode(',', $notices).')');
|
'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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -716,4 +716,12 @@ class Profile extends Memcached_DataObject
|
|||||||
}
|
}
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function hasForwarded($notice_id)
|
||||||
|
{
|
||||||
|
$forward = Forward::pkeyGet(array('profile_id' => $this->id,
|
||||||
|
'notice_id' => $notice_id));
|
||||||
|
|
||||||
|
return (!empty($forward));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -502,6 +502,19 @@ class User extends Memcached_DataObject
|
|||||||
{
|
{
|
||||||
// Add a new block record
|
// 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();
|
$block = new Profile_block();
|
||||||
|
|
||||||
// Begin a transaction
|
// Begin a transaction
|
||||||
@ -520,16 +533,7 @@ class User extends Memcached_DataObject
|
|||||||
|
|
||||||
// Cancel their subscription, if it exists
|
// Cancel their subscription, if it exists
|
||||||
|
|
||||||
$sub = Subscription::pkeyGet(array('subscriber' => $other->id,
|
subs_unsubscribe_to($other->getUser(),$this->getProfile());
|
||||||
'subscribed' => $this->id));
|
|
||||||
|
|
||||||
if ($sub) {
|
|
||||||
$result = $sub->delete();
|
|
||||||
if (!$result) {
|
|
||||||
common_log_db_error($sub, 'DELETE', __FILE__);
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
$block->query('COMMIT');
|
$block->query('COMMIT');
|
||||||
|
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
|
||||||
[avatar]
|
[avatar]
|
||||||
profile_id = 129
|
profile_id = 129
|
||||||
original = 17
|
original = 17
|
||||||
@ -195,6 +196,15 @@ id = K
|
|||||||
service = K
|
service = K
|
||||||
uri = U
|
uri = U
|
||||||
|
|
||||||
|
[forward]
|
||||||
|
profile_id = 129
|
||||||
|
notice_id = 129
|
||||||
|
created = 142
|
||||||
|
|
||||||
|
[forward__keys]
|
||||||
|
profile_id = K
|
||||||
|
notice_id = K
|
||||||
|
|
||||||
[group_alias]
|
[group_alias]
|
||||||
alias = 130
|
alias = 130
|
||||||
group_id = 129
|
group_id = 129
|
||||||
|
@ -154,7 +154,7 @@ $config['sphinx']['port'] = 3312;
|
|||||||
// $config['queue']['subsystem'] = 'stomp';
|
// $config['queue']['subsystem'] = 'stomp';
|
||||||
// $config['queue']['stomp_server'] = 'tcp://localhost:61613';
|
// $config['queue']['stomp_server'] = 'tcp://localhost:61613';
|
||||||
// use different queue_basename for each statusnet instance managed by the server
|
// 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:
|
// The following customise the behaviour of the various daemons:
|
||||||
// $config['daemon']['piddir'] = '/var/run';
|
// $config['daemon']['piddir'] = '/var/run';
|
||||||
@ -236,6 +236,11 @@ $config['sphinx']['port'] = 3312;
|
|||||||
// Use a different hostname for SSL-encrypted pages
|
// Use a different hostname for SSL-encrypted pages
|
||||||
// $config['site']['sslserver'] = 'secure.example.org';
|
// $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
|
// 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
|
// store the site data in a database and switch as follows
|
||||||
// Status_network::setupDB('localhost', 'statusnet', 'statuspass', 'statusnet');
|
// Status_network::setupDB('localhost', 'statusnet', 'statuspass', 'statusnet');
|
||||||
|
@ -73,3 +73,24 @@ create table location_namespace (
|
|||||||
modified timestamp comment 'date this record was modified'
|
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;
|
||||||
|
|
||||||
|
@ -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;
|
DROP index fave_user_id_idx;
|
||||||
CREATE index fave_user_id_idx on fave (user_id,modified);
|
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 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_id integer /* comment 'location id if possible'*/;
|
||||||
ALTER TABLE profile ADD COLUMN location_ns integer /* comment 'namespace for location'*/;
|
ALTER TABLE profile ADD COLUMN location_ns integer /* comment 'namespace for location'*/;
|
||||||
|
|
@ -575,3 +575,24 @@ create table location_namespace (
|
|||||||
modified timestamp comment 'date this record was modified'
|
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;
|
||||||
|
|
||||||
|
@ -571,3 +571,13 @@ create table profile_role (
|
|||||||
primary key (profile_id, 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)
|
||||||
|
);
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @author Alan Knowles <alan@akbkhome.com>
|
* @author Alan Knowles <alan@akbkhome.com>
|
||||||
* @copyright 1997-2006 The PHP Group
|
* @copyright 1997-2006 The PHP Group
|
||||||
* @license http://www.php.net/license/3_01.txt PHP License 3.01
|
* @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
|
* @link http://pear.php.net/package/DB_DataObject
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -235,7 +235,7 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
* @access private
|
* @access private
|
||||||
* @var string
|
* @var string
|
||||||
*/
|
*/
|
||||||
var $_DB_DataObject_version = "1.8.12";
|
var $_DB_DataObject_version = "1.9.0";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The Database table (used by table extends)
|
* The Database table (used by table extends)
|
||||||
@ -309,6 +309,7 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* An autoloading, caching static get method using key, value (based on get)
|
* An autoloading, caching static get method using key, value (based on get)
|
||||||
|
* (depreciated - use ::get / and your own caching method)
|
||||||
*
|
*
|
||||||
* Usage:
|
* Usage:
|
||||||
* $object = DB_DataObject::staticGet("DbTable_mytable",12);
|
* $object = DB_DataObject::staticGet("DbTable_mytable",12);
|
||||||
@ -943,6 +944,10 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
$this->$key = $keyvalue;
|
$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) {
|
foreach($items as $k => $v) {
|
||||||
@ -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;
|
continue;
|
||||||
}
|
}
|
||||||
// dont insert data into mysql timestamps
|
// dont insert data into mysql timestamps
|
||||||
@ -980,8 +988,7 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if (!($v & DB_DATAOBJECT_NOTNULL) && DB_DataObject::_is_null($this,$k)) {
|
||||||
if (!isset($options['disable_null_strings']) && is_string($this->$k) && (strtolower($this->$k) === 'null') && !($v & DB_DATAOBJECT_NOTNULL)) {
|
|
||||||
$rightq .= " NULL ";
|
$rightq .= " NULL ";
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -1194,8 +1201,14 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
$options = $_DB_DATAOBJECT['CONFIG'];
|
$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) {
|
foreach($items as $k => $v) {
|
||||||
if (!isset($this->$k)) {
|
|
||||||
|
if (!isset($this->$k) && $ignore_null) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
// ignore stuff thats
|
// ignore stuff thats
|
||||||
@ -1234,7 +1247,7 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
}
|
}
|
||||||
|
|
||||||
// special values ... at least null is handled...
|
// 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 ";
|
$settings .= "$kSql = NULL ";
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -1796,10 +1809,15 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$_DB_DATAOBJECT['INI'][$this->_database] = array();
|
||||||
foreach ($schemas as $ini) {
|
foreach ($schemas as $ini) {
|
||||||
if (file_exists($ini) && is_file($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 (!empty($_DB_DATAOBJECT['CONFIG']['debug'])) {
|
||||||
if (!is_readable ($ini)) {
|
if (!is_readable ($ini)) {
|
||||||
$this->debug("ini file is not readable: $ini","databaseStructure",1);
|
$this->debug("ini file is not readable: $ini","databaseStructure",1);
|
||||||
@ -2479,6 +2497,7 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
$this->_query= $x->_query;
|
$this->_query= $x->_query;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
foreach($keys as $k => $v) {
|
foreach($keys as $k => $v) {
|
||||||
// index keys is an indexed array
|
// index keys is an indexed array
|
||||||
/* these filter checks are a bit suspicious..
|
/* these filter checks are a bit suspicious..
|
||||||
@ -2519,7 +2538,7 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
continue;
|
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");
|
$this->whereAdd(" $kSql IS NULL");
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -2624,15 +2643,31 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
}
|
}
|
||||||
|
|
||||||
// does this need multi db support??
|
// does this need multi db support??
|
||||||
$p = isset($_DB_DATAOBJECT['CONFIG']['class_prefix']) ?
|
$cp = isset($_DB_DATAOBJECT['CONFIG']['class_prefix']) ?
|
||||||
$_DB_DATAOBJECT['CONFIG']['class_prefix'] : '';
|
explode(PATH_SEPARATOR, $_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);
|
|
||||||
|
|
||||||
$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
|
// 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);
|
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);
|
return $x->$proxyMethod( $d->_database, $table);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!$class) {
|
if (!$rclass) {
|
||||||
return DB_DataObject::raiseError(
|
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);
|
DB_DATAOBJECT_ERROR_INVALIDCONFIG);
|
||||||
}
|
}
|
||||||
$ret = new $class;
|
$ret = new $rclass;
|
||||||
if (!empty($database)) {
|
if (!empty($database)) {
|
||||||
DB_DataObject::debug("Setting database to $database","FACTORY",1);
|
DB_DataObject::debug("Setting database to $database","FACTORY",1);
|
||||||
$ret->database($database);
|
$ret->database($database);
|
||||||
@ -2668,11 +2705,12 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
/**
|
/**
|
||||||
* autoload Class
|
* autoload Class
|
||||||
*
|
*
|
||||||
* @param string $class Class
|
* @param string|array $class Class
|
||||||
|
* @param string $table Table trying to load.
|
||||||
* @access private
|
* @access private
|
||||||
* @return string classname on Success
|
* @return string classname on Success
|
||||||
*/
|
*/
|
||||||
function _autoloadClass($class)
|
function _autoloadClass($class, $table=false)
|
||||||
{
|
{
|
||||||
global $_DB_DATAOBJECT;
|
global $_DB_DATAOBJECT;
|
||||||
|
|
||||||
@ -2682,32 +2720,62 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
$class_prefix = empty($_DB_DATAOBJECT['CONFIG']['class_prefix']) ?
|
$class_prefix = empty($_DB_DATAOBJECT['CONFIG']['class_prefix']) ?
|
||||||
'' : $_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 :)
|
// 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'])) {
|
if (!empty($_DB_DATAOBJECT['CONFIG']['proxy']) || empty($_DB_DATAOBJECT['CONFIG']['class_location'])) {
|
||||||
return false;
|
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) {
|
switch (true) {
|
||||||
$file = sprintf($_DB_DATAOBJECT['CONFIG']['class_location'], preg_replace('/[^A-Z0-9]/i','_',ucfirst($table)));
|
case (strpos($cl ,'%s') !== false):
|
||||||
} else {
|
$file = sprintf($cl , preg_replace('/[^A-Z0-9]/i','_',ucfirst($table)));
|
||||||
$file = $_DB_DATAOBJECT['CONFIG']['class_location'].'/'.preg_replace('/[^A-Z0-9]/i','_',ucfirst($table)).".php";
|
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;
|
$found = false;
|
||||||
foreach(explode(PATH_SEPARATOR, ini_get('include_path')) as $p) {
|
|
||||||
if (file_exists("$p/$file")) {
|
$file = is_array($file) ? $file : array($file);
|
||||||
$file = "$p/$file";
|
$search = implode(PATH_SEPARATOR, $file);
|
||||||
$found = true;
|
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;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!$found) {
|
if (!$found) {
|
||||||
DB_DataObject::raiseError(
|
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);
|
DB_DATAOBJECT_ERROR_INVALIDCONFIG);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -2716,11 +2784,17 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
include_once $file;
|
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) {
|
if (!$ce) {
|
||||||
DB_DataObject::raiseError(
|
DB_DataObject::raiseError(
|
||||||
"autoload:Could not autoload {$class}",
|
"autoload:Could not autoload " . implode(',', $cls) ,
|
||||||
DB_DATAOBJECT_ERROR_INVALIDCONFIG);
|
DB_DATAOBJECT_ERROR_INVALIDCONFIG);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -2786,7 +2860,7 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
$_DB_DATAOBJECT['LINKS'][$this->_database] = array();
|
||||||
foreach ($schemas as $ini) {
|
foreach ($schemas as $ini) {
|
||||||
|
|
||||||
$links =
|
$links =
|
||||||
@ -2794,9 +2868,13 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
$_DB_DATAOBJECT['CONFIG']["links_{$this->_database}"] :
|
$_DB_DATAOBJECT['CONFIG']["links_{$this->_database}"] :
|
||||||
str_replace('.ini','.links.ini',$ini);
|
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 */
|
/* 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'])) {
|
if (!empty($_DB_DATAOBJECT['CONFIG']['debug'])) {
|
||||||
$this->debug("Loaded links.ini file: $links","links",1);
|
$this->debug("Loaded links.ini file: $links","links",1);
|
||||||
}
|
}
|
||||||
@ -2977,14 +3055,12 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
}
|
}
|
||||||
if ($link) {
|
if ($link) {
|
||||||
if ($obj->get($link, $this->$row)) {
|
if ($obj->get($link, $this->$row)) {
|
||||||
$obj->free();
|
|
||||||
return $obj;
|
return $obj;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($obj->get($this->$row)) {
|
if ($obj->get($this->$row)) {
|
||||||
$obj->free();
|
|
||||||
return $obj;
|
return $obj;
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
@ -3316,13 +3392,22 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
return false;
|
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) {
|
foreach($items as $k => $v) {
|
||||||
if (!isset($obj->$k)) {
|
if (!isset($obj->$k) && $ignore_null) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
$kSql = ($quoteIdentifiers ? $DB->quoteIdentifier($k) : $k);
|
$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) {
|
if ($v & DB_DATAOBJECT_STR) {
|
||||||
$obj->whereAdd("{$joinAs}.{$kSql} = " . $this->_quote((string) (
|
$obj->whereAdd("{$joinAs}.{$kSql} = " . $this->_quote((string) (
|
||||||
@ -3345,13 +3430,8 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
$this->raiseError($value->getMessage() ,DB_DATAOBJECT_ERROR_INVALIDARG);
|
$this->raiseError($value->getMessage() ,DB_DATAOBJECT_ERROR_INVALIDARG);
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (!isset($options['disable_null_strings']) && strtolower($value) === 'null') {
|
$obj->whereAdd("{$joinAs}.{$kSql} = $value");
|
||||||
$obj->whereAdd("{$joinAs}.{$kSql} IS NULL");
|
continue;
|
||||||
continue;
|
|
||||||
} else {
|
|
||||||
$obj->whereAdd("{$joinAs}.{$kSql} = $value");
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -3514,7 +3594,7 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!isset($from[sprintf($format,$k)])) {
|
if (!isset($from[sprintf($format,$k)]) && !DB_DataObject::_is_null($from, sprintf($format,$k))) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3643,7 +3723,7 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
|
|
||||||
// if not null - and it's not set.......
|
// 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..
|
// dont check empty sequence key values..
|
||||||
if (($key == $seq[0]) && ($seq[1] == true)) {
|
if (($key == $seq[0]) && ($seq[1] == true)) {
|
||||||
continue;
|
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) {
|
if ($val & DB_DATAOBJECT_NOTNULL) {
|
||||||
$this->debug("'null' field used for '$key', but it is defined as NOT NULL", 'VALIDATION', 4);
|
$this->debug("'null' field used for '$key', but it is defined as NOT NULL", 'VALIDATION', 4);
|
||||||
$ret[$key] = false;
|
$ret[$key] = false;
|
||||||
@ -3868,13 +3948,14 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
//echo "FROM VALUE $col, {$cols[$col]}, $value\n";
|
//echo "FROM VALUE $col, {$cols[$col]}, $value\n";
|
||||||
switch (true) {
|
switch (true) {
|
||||||
// set to null and column is can be null...
|
// 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')):
|
case (is_object($value) && is_a($value,'DB_DataObject_Cast')):
|
||||||
$this->$col = $value;
|
$this->$col = $value;
|
||||||
return true;
|
return true;
|
||||||
|
|
||||||
// fail on setting null on a not null field..
|
// 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;
|
return false;
|
||||||
|
|
||||||
case (($cols[$col] & DB_DATAOBJECT_DATE) && ($cols[$col] & DB_DATAOBJECT_TIME)):
|
case (($cols[$col] & DB_DATAOBJECT_DATE) && ($cols[$col] & DB_DATAOBJECT_TIME)):
|
||||||
@ -4190,9 +4271,65 @@ class DB_DataObject extends DB_DataObject_Overload
|
|||||||
$_DB_DATAOBJECT['CONNECTIONS'][$this->_database_dsn_md5]->num_rows = array();
|
$_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. ---*/
|
/* ---- LEGACY BC METHODS - NOT DOCUMENTED - See Documentation on New Methods. ---*/
|
||||||
|
|
||||||
function _get_table() { return $this->table(); }
|
function _get_table() { return $this->table(); }
|
||||||
@ -4214,3 +4351,4 @@ if (!defined('DB_DATAOBJECT_NO_OVERLOAD')) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
* @author Alan Knowles <alan@akbkhome.com>
|
* @author Alan Knowles <alan@akbkhome.com>
|
||||||
* @copyright 1997-2006 The PHP Group
|
* @copyright 1997-2006 The PHP Group
|
||||||
* @license http://www.php.net/license/3_01.txt PHP License 3.01
|
* @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
|
* @link http://pear.php.net/package/DB_DataObject
|
||||||
*/
|
*/
|
||||||
|
|
||||||
@ -33,7 +33,7 @@
|
|||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* Config _$ptions
|
* Config _$ptions
|
||||||
* [DB_DataObject_Generator]
|
* [DB_DataObject]
|
||||||
* ; optional default = DB/DataObject.php
|
* ; optional default = DB/DataObject.php
|
||||||
* extends_location =
|
* extends_location =
|
||||||
* ; optional default = DB_DataObject
|
* ; optional default = DB_DataObject
|
||||||
@ -775,11 +775,9 @@ class DB_DataObject_Generator extends DB_DataObject
|
|||||||
//echo "Generating Class files: \n";
|
//echo "Generating Class files: \n";
|
||||||
$options = &PEAR::getStaticProperty('DB_DataObject','options');
|
$options = &PEAR::getStaticProperty('DB_DataObject','options');
|
||||||
|
|
||||||
|
$this->_extends = empty($options['extends']) ? $this->_extends : $options['extends'];
|
||||||
|
$this->_extendsFile = empty($options['extends_location']) ? $this->_extendsFile : $options['extends_location'];
|
||||||
|
|
||||||
if ($extends = @$options['extends']) {
|
|
||||||
$this->_extends = $extends;
|
|
||||||
$this->_extendsFile = $options['extends_location'];
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach($this->tables as $this->table) {
|
foreach($this->tables as $this->table) {
|
||||||
$this->table = trim($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
|
* @var string
|
||||||
* @access private
|
* @access private
|
||||||
@ -1142,10 +1140,9 @@ class DB_DataObject_Generator extends DB_DataObject
|
|||||||
$options = &PEAR::getStaticProperty('DB_DataObject','options');
|
$options = &PEAR::getStaticProperty('DB_DataObject','options');
|
||||||
$class_prefix = empty($options['class_prefix']) ? '' : $options['class_prefix'];
|
$class_prefix = empty($options['class_prefix']) ? '' : $options['class_prefix'];
|
||||||
|
|
||||||
if ($extends = @$options['extends']) {
|
$this->_extends = empty($options['extends']) ? $this->_extends : $options['extends'];
|
||||||
$this->_extends = $extends;
|
$this->_extendsFile = empty($options['extends_location']) ? $this->_extendsFile : $options['extends_location'];
|
||||||
$this->_extendsFile = $options['extends_location'];
|
|
||||||
}
|
|
||||||
$classname = $this->classname = $this->getClassNameFromTableName($this->table);
|
$classname = $this->classname = $this->getClassNameFromTableName($this->table);
|
||||||
|
|
||||||
$out = $this->_generateClassTable();
|
$out = $this->_generateClassTable();
|
||||||
|
29
js/util.js
29
js/util.js
@ -184,30 +184,33 @@ var SN = { // StatusNet
|
|||||||
form.removeClass(SN.C.S.Processing);
|
form.removeClass(SN.C.S.Processing);
|
||||||
$('#'+form_id+' #'+SN.C.S.NoticeActionSubmit).removeClass(SN.C.S.Disabled);
|
$('#'+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+' #'+SN.C.S.NoticeActionSubmit).removeAttr(SN.C.S.Disabled, SN.C.S.Disabled);
|
||||||
|
$('#'+form_id+' .form_response').remove();
|
||||||
if (textStatus == 'timeout') {
|
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 {
|
else {
|
||||||
if ($('.'+SN.C.S.Error, xhr.responseXML).length > 0) {
|
if ($('.'+SN.C.S.Error, xhr.responseXML).length > 0) {
|
||||||
form.append(document._importNode($('.'+SN.C.S.Error, xhr.responseXML)[0], true));
|
form.append(document._importNode($('.'+SN.C.S.Error, xhr.responseXML)[0], true));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if(jQuery.inArray(parseInt(xhr.status), SN.C.I.HTTP20x30x) < 0) {
|
if (parseInt(xhr.status) === 0 || 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>');
|
$('#'+form_id).resetForm();
|
||||||
|
$('#'+form_id+' #'+SN.C.S.NoticeDataAttachSelected).remove();
|
||||||
|
SN.U.FormNoticeEnhancements($('#'+form_id));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$('#'+form_id+' #'+SN.C.S.NoticeDataText).val('');
|
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>');
|
||||||
SN.U.FormNoticeEnhancements($('#'+form_id));
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
success: function(data, textStatus) {
|
success: function(data, textStatus) {
|
||||||
|
$('#'+form_id+' .form_response').remove();
|
||||||
var result;
|
var result;
|
||||||
if ($('#'+SN.C.S.Error, data).length > 0) {
|
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;
|
result = result.textContent || result.innerHTML;
|
||||||
form.append('<p class="error">'+result+'</p>');
|
form.append('<p class="form_response error">'+result+'</p>');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if($('body')[0].id == 'bookmarklet') {
|
if($('body')[0].id == 'bookmarklet') {
|
||||||
@ -217,7 +220,7 @@ var SN = { // StatusNet
|
|||||||
if ($('#'+SN.C.S.CommandResult, data).length > 0) {
|
if ($('#'+SN.C.S.CommandResult, data).length > 0) {
|
||||||
result = document._importNode($('p', data)[0], true);
|
result = document._importNode($('p', data)[0], true);
|
||||||
result = result.textContent || result.innerHTML;
|
result = result.textContent || result.innerHTML;
|
||||||
form.append('<p class="success">'+result+'</p>');
|
form.append('<p class="form_response success">'+result+'</p>');
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
var notices = $('#notices_primary .notices');
|
var notices = $('#notices_primary .notices');
|
||||||
@ -245,12 +248,10 @@ var SN = { // StatusNet
|
|||||||
else {
|
else {
|
||||||
result = document._importNode($('title', data)[0], true);
|
result = document._importNode($('title', data)[0], true);
|
||||||
result_title = result.textContent || result.innerHTML;
|
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).resetForm();
|
||||||
$('#'+form_id+' #'+SN.C.S.NoticeDataAttach).val('');
|
|
||||||
$('#'+form_id+' #'+SN.C.S.NoticeInReplyTo).val('');
|
|
||||||
$('#'+form_id+' #'+SN.C.S.NoticeDataAttachSelected).remove();
|
$('#'+form_id+' #'+SN.C.S.NoticeDataAttachSelected).remove();
|
||||||
SN.U.FormNoticeEnhancements($('#'+form_id));
|
SN.U.FormNoticeEnhancements($('#'+form_id));
|
||||||
}
|
}
|
||||||
@ -305,6 +306,10 @@ var SN = { // StatusNet
|
|||||||
$('.form_disfavor').each(function() { SN.U.FormXHR($(this)); });
|
$('.form_disfavor').each(function() { SN.U.FormXHR($(this)); });
|
||||||
},
|
},
|
||||||
|
|
||||||
|
NoticeForward: function() {
|
||||||
|
$('.form_forward').each(function() { SN.U.FormXHR($(this)); });
|
||||||
|
},
|
||||||
|
|
||||||
NoticeAttachments: function() {
|
NoticeAttachments: function() {
|
||||||
$('.notice a.attachment').each(function() {
|
$('.notice a.attachment').each(function() {
|
||||||
SN.U.NoticeWithAttachment($(this).closest('.notice'));
|
SN.U.NoticeWithAttachment($(this).closest('.notice'));
|
||||||
@ -438,7 +443,7 @@ var SN = { // StatusNet
|
|||||||
Notices: function() {
|
Notices: function() {
|
||||||
if ($('body.user_in').length > 0) {
|
if ($('body.user_in').length > 0) {
|
||||||
SN.U.NoticeFavor();
|
SN.U.NoticeFavor();
|
||||||
|
SN.U.NoticeForward();
|
||||||
SN.U.NoticeReply();
|
SN.U.NoticeReply();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -68,7 +68,7 @@ class Action extends HTMLOutputter // lawsuit
|
|||||||
* @see XMLOutputter::__construct
|
* @see XMLOutputter::__construct
|
||||||
* @see HTMLOutputter::__construct
|
* @see HTMLOutputter::__construct
|
||||||
*/
|
*/
|
||||||
function __construct($output='php://output', $indent=true)
|
function __construct($output='php://output', $indent=null)
|
||||||
{
|
{
|
||||||
parent::__construct($output, $indent);
|
parent::__construct($output, $indent);
|
||||||
}
|
}
|
||||||
|
11
lib/api.php
11
lib/api.php
@ -134,20 +134,17 @@ class ApiAction extends Action
|
|||||||
$twitter_user['protected'] = false; # not supported by StatusNet yet
|
$twitter_user['protected'] = false; # not supported by StatusNet yet
|
||||||
$twitter_user['followers_count'] = $profile->subscriberCount();
|
$twitter_user['followers_count'] = $profile->subscriberCount();
|
||||||
|
|
||||||
$defaultDesign = Design::siteDesign();
|
|
||||||
$design = null;
|
|
||||||
$user = $profile->getUser();
|
$user = $profile->getUser();
|
||||||
|
$design = null;
|
||||||
|
|
||||||
// Note: some profiles don't have an associated user
|
// Note: some profiles don't have an associated user
|
||||||
|
|
||||||
|
$defaultDesign = Design::siteDesign();
|
||||||
|
|
||||||
if (!empty($user)) {
|
if (!empty($user)) {
|
||||||
$design = $user->getDesign();
|
$design = $user->getDesign();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($design)) {
|
|
||||||
$design = $defaultDesign;
|
|
||||||
}
|
|
||||||
|
|
||||||
$color = Design::toWebColor(empty($design->backgroundcolor) ? $defaultDesign->backgroundcolor : $design->backgroundcolor);
|
$color = Design::toWebColor(empty($design->backgroundcolor) ? $defaultDesign->backgroundcolor : $design->backgroundcolor);
|
||||||
$twitter_user['profile_background_color'] = ($color == null) ? '' : '#'.$color->hexValue();
|
$twitter_user['profile_background_color'] = ($color == null) ? '' : '#'.$color->hexValue();
|
||||||
$color = Design::toWebColor(empty($design->textcolor) ? $defaultDesign->textcolor : $design->textcolor);
|
$color = Design::toWebColor(empty($design->textcolor) ? $defaultDesign->textcolor : $design->textcolor);
|
||||||
@ -166,7 +163,7 @@ class ApiAction extends Action
|
|||||||
|
|
||||||
$timezone = 'UTC';
|
$timezone = 'UTC';
|
||||||
|
|
||||||
if ($user->timezone) {
|
if (!empty($user) && !empty($user->timezone)) {
|
||||||
$timezone = $user->timezone;
|
$timezone = $user->timezone;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -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
|
class SubscriptionsCommand extends Command
|
||||||
{
|
{
|
||||||
function execute($channel)
|
function execute($channel)
|
||||||
@ -666,6 +697,7 @@ class HelpCommand extends Command
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n".
|
"reply #<notice_id> - reply to notice with a given id\n".
|
||||||
"reply <nickname> - reply to the last notice from user\n".
|
"reply <nickname> - reply to the last notice from user\n".
|
||||||
"join <group> - join group\n".
|
"join <group> - join group\n".
|
||||||
|
"login - Get a link to login to the web interface\n".
|
||||||
"drop <group> - leave group\n".
|
"drop <group> - leave group\n".
|
||||||
"stats - get your stats\n".
|
"stats - get your stats\n".
|
||||||
"stop - same as 'off'\n".
|
"stop - same as 'off'\n".
|
||||||
|
@ -41,6 +41,12 @@ class CommandInterpreter
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return new HelpCommand($user);
|
return new HelpCommand($user);
|
||||||
|
case 'login':
|
||||||
|
if ($arg) {
|
||||||
|
return null;
|
||||||
|
} else {
|
||||||
|
return new LoginCommand($user);
|
||||||
|
}
|
||||||
case 'subscribers':
|
case 'subscribers':
|
||||||
if ($arg) {
|
if ($arg) {
|
||||||
return null;
|
return null;
|
||||||
|
@ -53,6 +53,7 @@ $default =
|
|||||||
'shorturllength' => 30,
|
'shorturllength' => 30,
|
||||||
'dupelimit' => 60, # default for same person saying the same thing
|
'dupelimit' => 60, # default for same person saying the same thing
|
||||||
'textlimit' => 140,
|
'textlimit' => 140,
|
||||||
|
'indent' => true,
|
||||||
),
|
),
|
||||||
'db' =>
|
'db' =>
|
||||||
array('database' => 'YOU HAVE TO SET THIS IN config.php',
|
array('database' => 'YOU HAVE TO SET THIS IN config.php',
|
||||||
@ -74,7 +75,7 @@ $default =
|
|||||||
array('enabled' => false,
|
array('enabled' => false,
|
||||||
'subsystem' => 'db', # default to database, or 'stomp'
|
'subsystem' => 'db', # default to database, or 'stomp'
|
||||||
'stomp_server' => null,
|
'stomp_server' => null,
|
||||||
'queue_basename' => 'statusnet',
|
'queue_basename' => '/queue/statusnet/',
|
||||||
'stomp_username' => null,
|
'stomp_username' => null,
|
||||||
'stomp_password' => null,
|
'stomp_password' => null,
|
||||||
),
|
),
|
||||||
|
@ -333,49 +333,6 @@ class DesignSettingsAction extends AccountSettingsAction
|
|||||||
$this->autofocus('design_background-image_file');
|
$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
|
* Save the background image, if any, and set its disposition
|
||||||
*
|
*
|
||||||
@ -445,24 +402,17 @@ class DesignSettingsAction extends AccountSettingsAction
|
|||||||
|
|
||||||
function restoreDefaults()
|
function restoreDefaults()
|
||||||
{
|
{
|
||||||
$design = $this->getWorkingDesign();
|
$design = $this->getWorkingDesign();
|
||||||
$default = $this->defaultDesign();
|
|
||||||
$original = clone($design);
|
|
||||||
|
|
||||||
$design->backgroundcolor = $default->backgroundcolor;
|
if (!empty($design)) {
|
||||||
$design->contentcolor = $default->contentcolor;
|
|
||||||
$design->sidebarcolor = $default->sidebarcolor;
|
|
||||||
$design->textcolor = $default->textcolor;
|
|
||||||
$design->linkcolor = $default->linkcolor;
|
|
||||||
|
|
||||||
$design->setDisposition(false, true, false);
|
$result = $design->delete();
|
||||||
|
|
||||||
$result = $design->update($original);
|
if ($result === false) {
|
||||||
|
common_log_db_error($design, 'DELETE', __FILE__);
|
||||||
if ($result === false) {
|
$this->showForm(_('Couldn\'t update your design.'));
|
||||||
common_log_db_error($design, 'UPDATE', __FILE__);
|
return;
|
||||||
$this->showForm(_('Couldn\'t update your design.'));
|
}
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->showForm(_('Design defaults restored.'), true);
|
$this->showForm(_('Design defaults restored.'), true);
|
||||||
|
@ -50,7 +50,7 @@ class ErrorAction extends Action
|
|||||||
var $message = null;
|
var $message = null;
|
||||||
var $default = 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);
|
parent::__construct($output, $indent);
|
||||||
|
|
||||||
|
147
lib/forwardform.php
Normal file
147
lib/forwardform.php
Normal 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';
|
||||||
|
}
|
||||||
|
}
|
@ -67,7 +67,7 @@ class HTMLOutputter extends XMLOutputter
|
|||||||
* @param boolean $indent Whether to indent output, default true
|
* @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);
|
parent::__construct($output, $indent);
|
||||||
}
|
}
|
||||||
@ -350,14 +350,43 @@ class HTMLOutputter extends XMLOutputter
|
|||||||
*/
|
*/
|
||||||
function script($src, $type='text/javascript')
|
function script($src, $type='text/javascript')
|
||||||
{
|
{
|
||||||
$url = parse_url($src);
|
if(Event::handle('StartScriptElement', array($this,&$src,&$type))) {
|
||||||
if( empty($url->scheme) && empty($url->host) && empty($url->query) && empty($url->fragment))
|
$url = parse_url($src);
|
||||||
{
|
if( empty($url->scheme) && empty($url->host) && empty($url->query) && empty($url->fragment))
|
||||||
$src = common_path($src) . '?version=' . STATUSNET_VERSION;
|
{
|
||||||
|
$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)
|
function cssLink($src,$theme=null,$media=null)
|
||||||
{
|
{
|
||||||
$url = parse_url($src);
|
if(Event::handle('StartCssLinkElement', array($this,&$src,&$theme,&$media))) {
|
||||||
if( empty($url->scheme) && empty($url->host) && empty($url->query) && empty($url->fragment))
|
$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;
|
if(file_exists(Theme::file($src,$theme))){
|
||||||
}else{
|
$src = Theme::path($src, $theme);
|
||||||
$src = common_path($src);
|
}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.
|
* Internal script to autofocus the given element on page onload.
|
||||||
*
|
*
|
||||||
@ -425,13 +478,10 @@ class HTMLOutputter extends XMLOutputter
|
|||||||
*/
|
*/
|
||||||
function autofocus($id)
|
function autofocus($id)
|
||||||
{
|
{
|
||||||
$this->elementStart('script', array('type' => 'text/javascript'));
|
$this->inlineScript(
|
||||||
$this->raw('/*<![CDATA[*/'.
|
|
||||||
' $(document).ready(function() {'.
|
' $(document).ready(function() {'.
|
||||||
' var el = $("#' . $id . '");'.
|
' var el = $("#' . $id . '");'.
|
||||||
' if (el.length) { el.focus(); }'.
|
' if (el.length) { el.focus(); }'.
|
||||||
' });'.
|
' });');
|
||||||
' /*]]>*/');
|
|
||||||
$this->elementEnd('script');
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
125
lib/language.php
125
lib/language.php
@ -36,6 +36,33 @@ if (!function_exists('gettext')) {
|
|||||||
require_once("php-gettext/gettext.inc");
|
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')) {
|
if (!function_exists('pgettext')) {
|
||||||
/**
|
/**
|
||||||
* Context-aware gettext wrapper; use when messages in different contexts
|
* Context-aware gettext wrapper; use when messages in different contexts
|
||||||
@ -50,9 +77,31 @@ if (!function_exists('pgettext')) {
|
|||||||
* @return string original or translated message
|
* @return string original or translated message
|
||||||
*/
|
*/
|
||||||
function pgettext($context, $msg)
|
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;
|
$msgid = $context . "\004" . $msg;
|
||||||
$out = dcgettext(textdomain(NULL), $msgid, LC_MESSAGES);
|
$out = dcngettext($domain, $msgid, $plural, $n, LC_MESSAGES);
|
||||||
if ($out == $msgid) {
|
if ($out == $msgid) {
|
||||||
return $msg;
|
return $msg;
|
||||||
} else {
|
} else {
|
||||||
@ -78,14 +127,78 @@ if (!function_exists('npgettext')) {
|
|||||||
*/
|
*/
|
||||||
function npgettext($context, $msg, $plural, $n)
|
function npgettext($context, $msg, $plural, $n)
|
||||||
{
|
{
|
||||||
$msgid = $context . "\004" . $msg;
|
return dnpgettext(textdomain(NULL), $msgid, $plural, $n, LC_MESSAGES);
|
||||||
$out = dcngettext(textdomain(NULL), $msgid, $plural, $n, LC_MESSAGES);
|
}
|
||||||
if ($out == $msgid) {
|
}
|
||||||
return $msg;
|
|
||||||
|
/**
|
||||||
|
* 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 {
|
} else {
|
||||||
return $out;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return $cached[$path];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -154,8 +154,7 @@ class MessageForm extends Form
|
|||||||
|
|
||||||
$contentLimit = Message::maxContent();
|
$contentLimit = Message::maxContent();
|
||||||
|
|
||||||
$this->out->element('script', array('type' => 'text/javascript'),
|
$this->out->inlineScript('maxLength = ' . $contentLimit . ';');
|
||||||
'maxLength = ' . $contentLimit . ';');
|
|
||||||
|
|
||||||
if ($contentLimit > 0) {
|
if ($contentLimit > 0) {
|
||||||
$this->out->elementStart('dl', 'form_note');
|
$this->out->elementStart('dl', 'form_note');
|
||||||
|
@ -178,8 +178,7 @@ class NoticeForm extends Form
|
|||||||
|
|
||||||
$contentLimit = Notice::maxContent();
|
$contentLimit = Notice::maxContent();
|
||||||
|
|
||||||
$this->out->element('script', array('type' => 'text/javascript'),
|
$this->out->inlineScript('maxLength = ' . $contentLimit . ';');
|
||||||
'maxLength = ' . $contentLimit . ';');
|
|
||||||
|
|
||||||
if ($contentLimit > 0) {
|
if ($contentLimit > 0) {
|
||||||
$this->out->elementStart('dl', 'form_note');
|
$this->out->elementStart('dl', 'form_note');
|
||||||
|
@ -212,6 +212,7 @@ class NoticeListItem extends Widget
|
|||||||
$this->out->elementStart('div', 'notice-options');
|
$this->out->elementStart('div', 'notice-options');
|
||||||
$this->showFaveForm();
|
$this->showFaveForm();
|
||||||
$this->showReplyLink();
|
$this->showReplyLink();
|
||||||
|
$this->showForwardForm();
|
||||||
$this->showDeleteLink();
|
$this->showDeleteLink();
|
||||||
$this->out->elementEnd('div');
|
$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
|
* if the user is the author, let them delete the notice
|
||||||
*
|
*
|
||||||
|
@ -65,6 +65,8 @@ class Plugin
|
|||||||
Event::addHandler(mb_substr($method, 2), array($this, $method));
|
Event::addHandler(mb_substr($method, 2), array($this, $method));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$this->setupGettext();
|
||||||
}
|
}
|
||||||
|
|
||||||
function initialize()
|
function initialize()
|
||||||
@ -76,4 +78,31 @@ class Plugin
|
|||||||
{
|
{
|
||||||
return true;
|
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);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -88,6 +88,8 @@ class Router
|
|||||||
|
|
||||||
$m->connect('doc/:title', array('action' => 'doc'));
|
$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 stuff is repetitive
|
||||||
|
|
||||||
$main = array('login', 'logout', 'register', 'subscribe',
|
$main = array('login', 'logout', 'register', 'subscribe',
|
||||||
@ -97,7 +99,7 @@ class Router
|
|||||||
'groupblock', 'groupunblock',
|
'groupblock', 'groupunblock',
|
||||||
'sandbox', 'unsandbox',
|
'sandbox', 'unsandbox',
|
||||||
'silence', 'unsilence',
|
'silence', 'unsilence',
|
||||||
'deleteuser');
|
'deleteuser', 'forward');
|
||||||
|
|
||||||
foreach ($main as $a) {
|
foreach ($main as $a) {
|
||||||
$m->connect('main/'.$a, array('action' => $a));
|
$m->connect('main/'.$a, array('action' => $a));
|
||||||
|
@ -52,7 +52,7 @@ class Rss10Action extends Action
|
|||||||
* @see Action::__construct
|
* @see Action::__construct
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function __construct($output='php://output', $indent=true)
|
function __construct($output='php://output', $indent=null)
|
||||||
{
|
{
|
||||||
parent::__construct($output, $indent);
|
parent::__construct($output, $indent);
|
||||||
}
|
}
|
||||||
|
@ -94,7 +94,7 @@ class Schema
|
|||||||
|
|
||||||
public function getTableDef($name)
|
public function getTableDef($name)
|
||||||
{
|
{
|
||||||
$res =& $this->conn->query('DESCRIBE ' . $name);
|
$res = $this->conn->query('DESCRIBE ' . $name);
|
||||||
|
|
||||||
if (PEAR::isError($res)) {
|
if (PEAR::isError($res)) {
|
||||||
throw new Exception($res->getMessage());
|
throw new Exception($res->getMessage());
|
||||||
@ -213,7 +213,7 @@ class Schema
|
|||||||
|
|
||||||
$sql .= "); ";
|
$sql .= "); ";
|
||||||
|
|
||||||
$res =& $this->conn->query($sql);
|
$res = $this->conn->query($sql);
|
||||||
|
|
||||||
if (PEAR::isError($res)) {
|
if (PEAR::isError($res)) {
|
||||||
throw new Exception($res->getMessage());
|
throw new Exception($res->getMessage());
|
||||||
@ -234,7 +234,7 @@ class Schema
|
|||||||
|
|
||||||
public function dropTable($name)
|
public function dropTable($name)
|
||||||
{
|
{
|
||||||
$res =& $this->conn->query("DROP TABLE $name");
|
$res = $this->conn->query("DROP TABLE $name");
|
||||||
|
|
||||||
if (PEAR::isError($res)) {
|
if (PEAR::isError($res)) {
|
||||||
throw new Exception($res->getMessage());
|
throw new Exception($res->getMessage());
|
||||||
@ -269,7 +269,7 @@ class Schema
|
|||||||
$name = "$table_".implode("_", $columnNames)."_idx";
|
$name = "$table_".implode("_", $columnNames)."_idx";
|
||||||
}
|
}
|
||||||
|
|
||||||
$res =& $this->conn->query("ALTER TABLE $table ".
|
$res = $this->conn->query("ALTER TABLE $table ".
|
||||||
"ADD INDEX $name (".
|
"ADD INDEX $name (".
|
||||||
implode(",", $columnNames).")");
|
implode(",", $columnNames).")");
|
||||||
|
|
||||||
@ -291,7 +291,7 @@ class Schema
|
|||||||
|
|
||||||
public function dropIndex($table, $name)
|
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)) {
|
if (PEAR::isError($res)) {
|
||||||
throw new Exception($res->getMessage());
|
throw new Exception($res->getMessage());
|
||||||
@ -314,7 +314,7 @@ class Schema
|
|||||||
{
|
{
|
||||||
$sql = "ALTER TABLE $table ADD COLUMN " . $this->_columnSql($columndef);
|
$sql = "ALTER TABLE $table ADD COLUMN " . $this->_columnSql($columndef);
|
||||||
|
|
||||||
$res =& $this->conn->query($sql);
|
$res = $this->conn->query($sql);
|
||||||
|
|
||||||
if (PEAR::isError($res)) {
|
if (PEAR::isError($res)) {
|
||||||
throw new Exception($res->getMessage());
|
throw new Exception($res->getMessage());
|
||||||
@ -339,7 +339,7 @@ class Schema
|
|||||||
$sql = "ALTER TABLE $table MODIFY COLUMN " .
|
$sql = "ALTER TABLE $table MODIFY COLUMN " .
|
||||||
$this->_columnSql($columndef);
|
$this->_columnSql($columndef);
|
||||||
|
|
||||||
$res =& $this->conn->query($sql);
|
$res = $this->conn->query($sql);
|
||||||
|
|
||||||
if (PEAR::isError($res)) {
|
if (PEAR::isError($res)) {
|
||||||
throw new Exception($res->getMessage());
|
throw new Exception($res->getMessage());
|
||||||
@ -363,7 +363,7 @@ class Schema
|
|||||||
{
|
{
|
||||||
$sql = "ALTER TABLE $table DROP COLUMN $columnName";
|
$sql = "ALTER TABLE $table DROP COLUMN $columnName";
|
||||||
|
|
||||||
$res =& $this->conn->query($sql);
|
$res = $this->conn->query($sql);
|
||||||
|
|
||||||
if (PEAR::isError($res)) {
|
if (PEAR::isError($res)) {
|
||||||
throw new Exception($res->getMessage());
|
throw new Exception($res->getMessage());
|
||||||
@ -446,7 +446,7 @@ class Schema
|
|||||||
|
|
||||||
$sql = 'ALTER TABLE ' . $tableName . ' ' . implode(', ', $phrase);
|
$sql = 'ALTER TABLE ' . $tableName . ' ' . implode(', ', $phrase);
|
||||||
|
|
||||||
$res =& $this->conn->query($sql);
|
$res = $this->conn->query($sql);
|
||||||
|
|
||||||
if (PEAR::isError($res)) {
|
if (PEAR::isError($res)) {
|
||||||
throw new Exception($res->getMessage());
|
throw new Exception($res->getMessage());
|
||||||
|
@ -127,6 +127,12 @@ function subs_unsubscribe_to($user, $other)
|
|||||||
if (!$user->isSubscribed($other))
|
if (!$user->isSubscribed($other))
|
||||||
return _('Not subscribed!');
|
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 = DB_DataObject::factory('subscription');
|
||||||
|
|
||||||
$sub->subscriber = $user->id;
|
$sub->subscriber = $user->id;
|
||||||
|
27
lib/util.php
27
lib/util.php
@ -127,7 +127,7 @@ function common_check_user($nickname, $password)
|
|||||||
if (0 == strcmp(common_munge_password($password, $user->id),
|
if (0 == strcmp(common_munge_password($password, $user->id),
|
||||||
$user->password)) {
|
$user->password)) {
|
||||||
//internal checking passed
|
//internal checking passed
|
||||||
$authenticatedUser =& $user;
|
$authenticatedUser = $user;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1070,18 +1070,21 @@ function common_request_id()
|
|||||||
|
|
||||||
function common_log($priority, $msg, $filename=null)
|
function common_log($priority, $msg, $filename=null)
|
||||||
{
|
{
|
||||||
$msg = '[' . common_request_id() . '] ' . $msg;
|
if(Event::handle('StartLog', array(&$priority, &$msg, &$filename))){
|
||||||
$logfile = common_config('site', 'logfile');
|
$msg = '[' . common_request_id() . '] ' . $msg;
|
||||||
if ($logfile) {
|
$logfile = common_config('site', 'logfile');
|
||||||
$log = fopen($logfile, "a");
|
if ($logfile) {
|
||||||
if ($log) {
|
$log = fopen($logfile, "a");
|
||||||
$output = common_log_line($priority, $msg);
|
if ($log) {
|
||||||
fwrite($log, $output);
|
$output = common_log_line($priority, $msg);
|
||||||
fclose($log);
|
fwrite($log, $output);
|
||||||
|
fclose($log);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
common_ensure_syslog();
|
||||||
|
syslog($priority, $msg);
|
||||||
}
|
}
|
||||||
} else {
|
Event::handle('EndLog', array($priority, $msg, $filename));
|
||||||
common_ensure_syslog();
|
|
||||||
syslog($priority, $msg);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -67,10 +67,13 @@ class XMLOutputter
|
|||||||
* @param boolean $indent Whether to indent output, default true
|
* @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 = new XMLWriter();
|
||||||
$this->xw->openURI($output);
|
$this->xw->openURI($output);
|
||||||
|
if(is_null($indent)) {
|
||||||
|
$indent = common_config('site', 'indent');
|
||||||
|
}
|
||||||
$this->xw->setIndent($indent);
|
$this->xw->setIndent($indent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -8,12 +8,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:19:01+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:25:58+0000\n"
|
||||||
"Language-Team: Arabic\n"
|
"Language-Team: Arabic\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: ar\n"
|
"X-Language-Code: ar\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -181,7 +181,12 @@ msgstr "ليس للمستخدم ملف شخصي."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "تعذّر حفظ الملف الشخصي."
|
msgstr "تعذّر حفظ الملف الشخصي."
|
||||||
|
|
||||||
#: actions/apiblockcreate.php:108
|
#: actions/apiblockcreate.php:105
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot block yourself!"
|
||||||
|
msgstr "لا يمكنك حذف المستخدمين."
|
||||||
|
|
||||||
|
#: actions/apiblockcreate.php:119
|
||||||
msgid "Block user failed."
|
msgid "Block user failed."
|
||||||
msgstr "فشل منع المستخدم."
|
msgstr "فشل منع المستخدم."
|
||||||
|
|
||||||
@ -560,7 +565,7 @@ msgstr ""
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -805,100 +810,100 @@ msgstr "التصميم"
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "مسار شعار غير صالح."
|
msgstr "مسار شعار غير صالح."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "السمة غير متوفرة: %s"
|
msgstr "السمة غير متوفرة: %s"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "غيّر الشعار"
|
msgstr "غيّر الشعار"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "شعار الموقع"
|
msgstr "شعار الموقع"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "غيّر السمة"
|
msgstr "غيّر السمة"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "سمة الموقع"
|
msgstr "سمة الموقع"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr "سمة الموقع."
|
msgstr "سمة الموقع."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr "تغيير صورة الخلفية"
|
msgstr "تغيير صورة الخلفية"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr "الخلفية"
|
msgstr "الخلفية"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:452 lib/designsettings.php:139
|
#: actions/designadminpanel.php:457 lib/designsettings.php:139
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "مكّن"
|
msgstr "مكّن"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "عطّل"
|
msgstr "عطّل"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr "مكّن صورة الخلفية أو عطّلها."
|
msgstr "مكّن صورة الخلفية أو عطّلها."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "تغيير الألوان"
|
msgstr "تغيير الألوان"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "المحتوى"
|
msgstr "المحتوى"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "الشريط الجانبي"
|
msgstr "الشريط الجانبي"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "النص"
|
msgstr "النص"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "وصلات"
|
msgstr "وصلات"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr "استخدم المبدئيات"
|
msgstr "استخدم المبدئيات"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr "استعد التصميمات المبدئية"
|
msgstr "استعد التصميمات المبدئية"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr "ارجع إلى المبدئي"
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -908,7 +913,7 @@ msgstr "ارجع إلى المبدئي"
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "أرسل"
|
msgstr "أرسل"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr "احفظ التصميم"
|
msgstr "احفظ التصميم"
|
||||||
|
|
||||||
@ -1135,16 +1140,16 @@ msgstr ""
|
|||||||
#: actions/favorited.php:65 lib/popularnoticesection.php:88
|
#: actions/favorited.php:65 lib/popularnoticesection.php:88
|
||||||
#: lib/publicgroupnav.php:93
|
#: lib/publicgroupnav.php:93
|
||||||
msgid "Popular notices"
|
msgid "Popular notices"
|
||||||
msgstr ""
|
msgstr "إشعارات مشهورة"
|
||||||
|
|
||||||
#: actions/favorited.php:67
|
#: actions/favorited.php:67
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Popular notices, page %d"
|
msgid "Popular notices, page %d"
|
||||||
msgstr ""
|
msgstr "إشعارات مشهورة، الصفحة %d"
|
||||||
|
|
||||||
#: actions/favorited.php:79
|
#: actions/favorited.php:79
|
||||||
msgid "The most popular notices on the site right now."
|
msgid "The most popular notices on the site right now."
|
||||||
msgstr ""
|
msgstr "أشهر الإشعارات على الموقع حاليًا."
|
||||||
|
|
||||||
#: actions/favorited.php:150
|
#: actions/favorited.php:150
|
||||||
msgid "Favorite notices appear on this page but no one has favorited one yet."
|
msgid "Favorite notices appear on this page but no one has favorited one yet."
|
||||||
@ -1306,11 +1311,11 @@ msgstr "لا تمنع هذا المستخدم من هذه المجموعة"
|
|||||||
|
|
||||||
#: actions/groupblock.php:179
|
#: actions/groupblock.php:179
|
||||||
msgid "Block this user from this group"
|
msgid "Block this user from this group"
|
||||||
msgstr ""
|
msgstr "امنع هذا المستخدم من هذه المجموعة"
|
||||||
|
|
||||||
#: actions/groupblock.php:196
|
#: actions/groupblock.php:196
|
||||||
msgid "Database error blocking user from group."
|
msgid "Database error blocking user from group."
|
||||||
msgstr ""
|
msgstr "خطأ في قاعدة البيانات أثناء منع المستخدم من المجموعة."
|
||||||
|
|
||||||
#: actions/groupbyid.php:74
|
#: actions/groupbyid.php:74
|
||||||
msgid "No ID"
|
msgid "No ID"
|
||||||
@ -1330,18 +1335,18 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "تعذّر تحديث تصميمك."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
|
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1637,7 +1642,7 @@ msgstr "رسالة شخصية"
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr ""
|
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"
|
msgid "Send"
|
||||||
msgstr "أرسل"
|
msgstr "أرسل"
|
||||||
|
|
||||||
@ -1717,11 +1722,11 @@ msgstr ""
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/login.php:79 actions/register.php:137
|
#: actions/login.php:82 actions/register.php:137
|
||||||
msgid "Already logged in."
|
msgid "Already logged in."
|
||||||
msgstr "والج بالفعل."
|
msgstr "والج بالفعل."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1922,8 +1927,8 @@ msgstr "نوع المحتوى "
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr "ليس نسق بيانات مدعوم."
|
msgstr "ليس نسق بيانات مدعوم."
|
||||||
|
|
||||||
@ -2500,7 +2505,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: actions/recoverpassword.php:352
|
#: actions/recoverpassword.php:352
|
||||||
msgid "Password must be 6 chars or more."
|
msgid "Password must be 6 chars or more."
|
||||||
msgstr ""
|
msgstr "يجب أن تكون كلمة السر 6 محارف أو أكثر."
|
||||||
|
|
||||||
#: actions/recoverpassword.php:356
|
#: actions/recoverpassword.php:356
|
||||||
msgid "Password and confirmation do not match."
|
msgid "Password and confirmation do not match."
|
||||||
@ -2516,7 +2521,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: actions/register.php:85 actions/register.php:189 actions/register.php:404
|
#: actions/register.php:85 actions/register.php:189 actions/register.php:404
|
||||||
msgid "Sorry, only invited people can register."
|
msgid "Sorry, only invited people can register."
|
||||||
msgstr ""
|
msgstr "عذرًا، الأشخاص المدعوون وحدهم يستطيعون التسجيل."
|
||||||
|
|
||||||
#: actions/register.php:92
|
#: actions/register.php:92
|
||||||
msgid "Sorry, invalid invitation code."
|
msgid "Sorry, invalid invitation code."
|
||||||
@ -3062,9 +3067,8 @@ msgid "Contact email address for your site"
|
|||||||
msgstr "عنوان البريد الإلكتروني للاتصال بموقعك"
|
msgstr "عنوان البريد الإلكتروني للاتصال بموقعك"
|
||||||
|
|
||||||
#: actions/siteadminpanel.php:290
|
#: actions/siteadminpanel.php:290
|
||||||
#, fuzzy
|
|
||||||
msgid "Local"
|
msgid "Local"
|
||||||
msgstr "الموقع"
|
msgstr "محلي"
|
||||||
|
|
||||||
#: actions/siteadminpanel.php:301
|
#: actions/siteadminpanel.php:301
|
||||||
msgid "Default timezone"
|
msgid "Default timezone"
|
||||||
@ -3103,13 +3107,12 @@ msgid "Access"
|
|||||||
msgstr "نفاذ"
|
msgstr "نفاذ"
|
||||||
|
|
||||||
#: actions/siteadminpanel.php:334
|
#: actions/siteadminpanel.php:334
|
||||||
#, fuzzy
|
|
||||||
msgid "Private"
|
msgid "Private"
|
||||||
msgstr "خصوصية"
|
msgstr "خاص"
|
||||||
|
|
||||||
#: actions/siteadminpanel.php:336
|
#: actions/siteadminpanel.php:336
|
||||||
msgid "Prohibit anonymous users (not logged in) from viewing site?"
|
msgid "Prohibit anonymous users (not logged in) from viewing site?"
|
||||||
msgstr ""
|
msgstr "أأمنع المستخدمين المجهولين (غير الوالجين) من عرض الموقع؟"
|
||||||
|
|
||||||
#: actions/siteadminpanel.php:340
|
#: actions/siteadminpanel.php:340
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
@ -4203,11 +4206,25 @@ msgstr ""
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr ""
|
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."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "لست مُشتركًا بأي أحد."
|
msgstr "لست مُشتركًا بأي أحد."
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "لست مشتركًا بأحد."
|
msgstr[0] "لست مشتركًا بأحد."
|
||||||
@ -4217,11 +4234,11 @@ msgstr[3] "أنت مشترك بهؤلاء الأشخاص:"
|
|||||||
msgstr[4] ""
|
msgstr[4] ""
|
||||||
msgstr[5] ""
|
msgstr[5] ""
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "لا أحد مشترك بك."
|
msgstr "لا أحد مشترك بك."
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "لا أحد مشترك بك."
|
msgstr[0] "لا أحد مشترك بك."
|
||||||
@ -4231,11 +4248,11 @@ msgstr[3] "هؤلاء الأشخاص مشتركون بك:"
|
|||||||
msgstr[4] ""
|
msgstr[4] ""
|
||||||
msgstr[5] ""
|
msgstr[5] ""
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "لست عضوًا في أي مجموعة."
|
msgstr "لست عضوًا في أي مجموعة."
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "لست عضوًا في أي مجموعة."
|
msgstr[0] "لست عضوًا في أي مجموعة."
|
||||||
@ -4245,7 +4262,7 @@ msgstr[3] "أنت عضو في هذه المجموعات:"
|
|||||||
msgstr[4] ""
|
msgstr[4] ""
|
||||||
msgstr[5] ""
|
msgstr[5] ""
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4264,6 +4281,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4320,16 +4338,11 @@ msgid "Upload file"
|
|||||||
msgstr "ارفع ملفًا"
|
msgstr "ارفع ملفًا"
|
||||||
|
|
||||||
#: lib/designsettings.php:109
|
#: lib/designsettings.php:109
|
||||||
#, fuzzy
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"You can upload your personal background image. The maximum file size is 2MB."
|
||||||
msgstr "هذا الملف كبير جدًا. إن أقصى حجم للملفات هو %s."
|
msgstr "تستطيع رفع صورتك الشخصية. أقصى حجم للملف هو 2 م.ب."
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr "استعيدت مبدئيات التصميم."
|
msgstr "استعيدت مبدئيات التصميم."
|
||||||
|
|
||||||
@ -4773,7 +4786,7 @@ msgstr "أرسل إشعارًا مباشرًا"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "إلى"
|
msgstr "إلى"
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "المحارف المتوفرة"
|
msgstr "المحارف المتوفرة"
|
||||||
|
|
||||||
@ -4786,11 +4799,11 @@ msgstr "أرسل إشعارًا"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "ما الأخبار يا %s؟"
|
msgstr "ما الأخبار يا %s؟"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr "أرفق"
|
msgstr "أرفق"
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr "أرفق ملفًا"
|
msgstr "أرفق ملفًا"
|
||||||
|
|
||||||
@ -4955,7 +4968,7 @@ msgstr "مُختارون"
|
|||||||
|
|
||||||
#: lib/publicgroupnav.php:92
|
#: lib/publicgroupnav.php:92
|
||||||
msgid "Popular"
|
msgid "Popular"
|
||||||
msgstr ""
|
msgstr "مشهورة"
|
||||||
|
|
||||||
#: lib/sandboxform.php:67
|
#: lib/sandboxform.php:67
|
||||||
msgid "Sandbox"
|
msgid "Sandbox"
|
||||||
@ -5060,7 +5073,12 @@ msgstr ""
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "لست مُشتركًا!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "تعذّر حذف الاشتراك."
|
msgstr "تعذّر حذف الاشتراك."
|
||||||
|
|
||||||
|
@ -8,12 +8,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:19:07+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:26:01+0000\n"
|
||||||
"Language-Team: Bulgarian\n"
|
"Language-Team: Bulgarian\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: bg\n"
|
"X-Language-Code: bg\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -180,7 +180,12 @@ msgstr "Потребителят няма профил."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "Грешка при запазване на профила."
|
msgstr "Грешка при запазване на профила."
|
||||||
|
|
||||||
#: actions/apiblockcreate.php:108
|
#: actions/apiblockcreate.php:105
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot block yourself!"
|
||||||
|
msgstr "Не можете да спрете да следите себе си!"
|
||||||
|
|
||||||
|
#: actions/apiblockcreate.php:119
|
||||||
msgid "Block user failed."
|
msgid "Block user failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -566,7 +571,7 @@ msgstr "Изрязване"
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -818,106 +823,106 @@ msgstr ""
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "Неправилен размер."
|
msgstr "Неправилен размер."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "Страницата не е достъпна във вида медия, който приемате"
|
msgstr "Страницата не е достъпна във вида медия, който приемате"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Смяна на логото"
|
msgstr "Смяна на логото"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "Покани"
|
msgstr "Покани"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Промяна"
|
msgstr "Промяна"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Нова бележка"
|
msgstr "Нова бележка"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr "Излизане от сайта"
|
msgstr "Излизане от сайта"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr "Смяна на изображението за фон"
|
msgstr "Смяна на изображението за фон"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr "Фон"
|
msgstr "Фон"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr "Може да качите лого за групата ви."
|
msgstr "Може да качите лого за групата ви."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:452 lib/designsettings.php:139
|
#: actions/designadminpanel.php:457 lib/designsettings.php:139
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "Вкл."
|
msgstr "Вкл."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "Изкл."
|
msgstr "Изкл."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "Смяна на цветовете"
|
msgstr "Смяна на цветовете"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Съдържание"
|
msgstr "Съдържание"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Страничен панел"
|
msgstr "Страничен панел"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Текст"
|
msgstr "Текст"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "Списък"
|
msgstr "Списък"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -927,7 +932,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Запазване"
|
msgstr "Запазване"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1370,20 +1375,20 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "Грешка при обновяване на потребителя."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr "Грешка при записване настройките за Twitter"
|
msgstr "Грешка при записване настройките за Twitter"
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
|
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "Настройките са запазени."
|
msgstr "Настройките са запазени."
|
||||||
@ -1699,7 +1704,7 @@ msgstr "Лично съобщение"
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr "Може да добавите и лично съобщение към поканата."
|
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"
|
msgid "Send"
|
||||||
msgstr "Прати"
|
msgstr "Прати"
|
||||||
|
|
||||||
@ -1806,11 +1811,11 @@ msgstr "Грешка при проследяване — потребителя
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr "%s напусна групата %s"
|
msgstr "%s напусна групата %s"
|
||||||
|
|
||||||
#: actions/login.php:79 actions/register.php:137
|
#: actions/login.php:82 actions/register.php:137
|
||||||
msgid "Already logged in."
|
msgid "Already logged in."
|
||||||
msgstr "Вече сте влезли."
|
msgstr "Вече сте влезли."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "Невалидно съдържание на бележка"
|
msgstr "Невалидно съдържание на бележка"
|
||||||
@ -2022,8 +2027,8 @@ msgstr "Свързване"
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr "Неподдържан формат на данните"
|
msgstr "Неподдържан формат на данните"
|
||||||
|
|
||||||
@ -4403,39 +4408,53 @@ msgstr "Уведомлението е включено."
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr "Грешка при включване на уведомлението."
|
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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "Не сте абонирани за този профил"
|
msgstr "Не сте абонирани за този профил"
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "Вече сте абонирани за следните потребители:"
|
msgstr[0] "Вече сте абонирани за следните потребители:"
|
||||||
msgstr[1] "Вече сте абонирани за следните потребители:"
|
msgstr[1] "Вече сте абонирани за следните потребители:"
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "Грешка при абониране на друг потребител за вас."
|
msgstr "Грешка при абониране на друг потребител за вас."
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "Грешка при абониране на друг потребител за вас."
|
msgstr[0] "Грешка при абониране на друг потребител за вас."
|
||||||
msgstr[1] "Грешка при абониране на друг потребител за вас."
|
msgstr[1] "Грешка при абониране на друг потребител за вас."
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "Не членувате в нито една група."
|
msgstr "Не членувате в нито една група."
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "Не членувате в тази група."
|
msgstr[0] "Не членувате в тази група."
|
||||||
msgstr[1] "Не членувате в тази група."
|
msgstr[1] "Не членувате в тази група."
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4454,6 +4473,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4516,11 +4536,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"You can upload your personal background image. The maximum file size is 2MB."
|
||||||
msgstr "Можете да качите личен аватар тук."
|
msgstr "Можете да качите личен аватар тук."
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4978,7 +4994,7 @@ msgstr "Изпращане на пряко съобщеие"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "До"
|
msgstr "До"
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "Налични знаци"
|
msgstr "Налични знаци"
|
||||||
|
|
||||||
@ -4991,11 +5007,11 @@ msgstr "Изпращане на бележка"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "Какво става, %s?"
|
msgstr "Какво става, %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5272,7 +5288,12 @@ msgstr "Грешка при абониране на друг потребите
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "Не сте абонирани!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "Грешка при изтриване на абонамента."
|
msgstr "Грешка при изтриване на абонамента."
|
||||||
|
|
||||||
|
@ -8,12 +8,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:19:11+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:26:04+0000\n"
|
||||||
"Language-Team: Catalan\n"
|
"Language-Team: Catalan\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: ca\n"
|
"X-Language-Code: ca\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -80,6 +80,8 @@ msgstr "Canal dels amics de %s (Atom)"
|
|||||||
msgid ""
|
msgid ""
|
||||||
"This is the timeline for %s and friends but no one has posted anything yet."
|
"This is the timeline for %s and friends but no one has posted anything yet."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
"Aquesta és la línia temporal de %s i amics, però ningú hi ha enviat res "
|
||||||
|
"encara."
|
||||||
|
|
||||||
#: actions/all.php:132
|
#: actions/all.php:132
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -183,7 +185,12 @@ msgstr "L'usuari no té perfil."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "No s'ha pogut guardar el perfil."
|
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."
|
msgid "Block user failed."
|
||||||
msgstr "Ha fallat el bloqueig d'usuari."
|
msgstr "Ha fallat el bloqueig d'usuari."
|
||||||
|
|
||||||
@ -196,9 +203,9 @@ msgid "No message text!"
|
|||||||
msgstr "No hi ha text al missatge!"
|
msgstr "No hi ha text al missatge!"
|
||||||
|
|
||||||
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150
|
#: actions/apidirectmessagenew.php:135 actions/newmessage.php:150
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "That's too long. Max message size is %d chars."
|
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
|
#: actions/apidirectmessagenew.php:146
|
||||||
msgid "Recipient user not found."
|
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."
|
msgstr "No s'ha trobat cap estatus amb aquesta ID."
|
||||||
|
|
||||||
#: actions/apifavoritecreate.php:119
|
#: actions/apifavoritecreate.php:119
|
||||||
#, fuzzy
|
|
||||||
msgid "This status is already a favorite!"
|
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
|
#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176
|
||||||
msgid "Could not create favorite."
|
msgid "Could not create favorite."
|
||||||
@ -266,7 +272,7 @@ msgstr "Aquesta notificació no és un favorit!"
|
|||||||
|
|
||||||
#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87
|
#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87
|
||||||
msgid "Could not delete favorite."
|
msgid "Could not delete favorite."
|
||||||
msgstr "No pots eliminar favorits."
|
msgstr "No s'ha pogut suprimir el preferit."
|
||||||
|
|
||||||
#: actions/apifriendshipscreate.php:109
|
#: actions/apifriendshipscreate.php:109
|
||||||
msgid "Could not follow user: User not found."
|
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."
|
msgstr "Dos ids d'usuari o screen_names has de ser substituïts."
|
||||||
|
|
||||||
#: actions/apifriendshipsshow.php:135
|
#: actions/apifriendshipsshow.php:135
|
||||||
#, fuzzy
|
|
||||||
msgid "Could not determine source user."
|
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
|
#: actions/apifriendshipsshow.php:143
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
@ -352,9 +357,9 @@ msgstr "Hi ha massa àlies! Màxim %d."
|
|||||||
|
|
||||||
#: actions/apigroupcreate.php:264 actions/editgroup.php:224
|
#: actions/apigroupcreate.php:264 actions/editgroup.php:224
|
||||||
#: actions/newgroup.php:168
|
#: actions/newgroup.php:168
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "Invalid alias: \"%s\""
|
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/apigroupcreate.php:273 actions/editgroup.php:228
|
||||||
#: actions/newgroup.php:172
|
#: actions/newgroup.php:172
|
||||||
@ -448,9 +453,8 @@ msgid "Max notice size is %d chars, including attachment URL."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261
|
#: actions/apisubscriptions.php:231 actions/apisubscriptions.php:261
|
||||||
#, fuzzy
|
|
||||||
msgid "Unsupported format."
|
msgid "Unsupported format."
|
||||||
msgstr "Format d'imatge no suportat."
|
msgstr "El format no està implementat."
|
||||||
|
|
||||||
#: actions/apitimelinefavorites.php:107
|
#: actions/apitimelinefavorites.php:107
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -573,7 +577,7 @@ msgstr "Crop"
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -658,9 +662,8 @@ msgid "Unblock this user"
|
|||||||
msgstr "Desbloquejar aquest usuari"
|
msgstr "Desbloquejar aquest usuari"
|
||||||
|
|
||||||
#: actions/block.php:69
|
#: actions/block.php:69
|
||||||
#, fuzzy
|
|
||||||
msgid "You already blocked that user."
|
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
|
#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160
|
||||||
msgid "Block user"
|
msgid "Block user"
|
||||||
@ -696,9 +699,8 @@ msgid "Failed to save block information."
|
|||||||
msgstr "Error al guardar la informació del block."
|
msgstr "Error al guardar la informació del block."
|
||||||
|
|
||||||
#: actions/bookmarklet.php:50
|
#: actions/bookmarklet.php:50
|
||||||
#, fuzzy
|
|
||||||
msgid "Post to "
|
msgid "Post to "
|
||||||
msgstr "Foto"
|
msgstr "Envia a "
|
||||||
|
|
||||||
#: actions/confirmaddress.php:75
|
#: actions/confirmaddress.php:75
|
||||||
msgid "No confirmation code."
|
msgid "No confirmation code."
|
||||||
@ -834,102 +836,100 @@ msgstr "Disseny"
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr "Paràmetres de disseny d'aquest lloc StatusNet."
|
msgstr "Paràmetres de disseny d'aquest lloc StatusNet."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "Mida invàlida."
|
msgstr "L'URL del logotip no és vàlid."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "Theme not available: %s"
|
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"
|
msgid "Change logo"
|
||||||
msgstr "Canvia el logotip"
|
msgstr "Canvia el logotip"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "Logotip del lloc"
|
msgstr "Logotip del lloc"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Canvia el tema"
|
msgstr "Canvia el tema"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
|
||||||
msgid "Site theme"
|
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."
|
msgid "Theme for the site."
|
||||||
msgstr "Tema del lloc."
|
msgstr "Tema del lloc."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr "Canvia la imatge de fons"
|
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
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr "Fons"
|
msgstr "Fons"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr "Pots pujar una imatge de logo per al grup."
|
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"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr "Activada"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
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."
|
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"
|
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"
|
msgid "Change colours"
|
||||||
msgstr "Canvia els colors"
|
msgstr "Canvia els colors"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contingut"
|
msgstr "Contingut"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Barra lateral"
|
msgstr "Barra lateral"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Text"
|
msgstr "Text"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "Enllaços"
|
msgstr "Enllaços"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -939,7 +939,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Guardar"
|
msgstr "Guardar"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr "Desa el disseny"
|
msgstr "Desa el disseny"
|
||||||
|
|
||||||
@ -949,7 +949,7 @@ msgstr "Aquesta notificació no és un favorit!"
|
|||||||
|
|
||||||
#: actions/disfavor.php:94
|
#: actions/disfavor.php:94
|
||||||
msgid "Add to favorites"
|
msgid "Add to favorites"
|
||||||
msgstr "Afegir a favorits"
|
msgstr "Afegeix als preferits"
|
||||||
|
|
||||||
#: actions/doc.php:69
|
#: actions/doc.php:69
|
||||||
msgid "No such document."
|
msgid "No such document."
|
||||||
@ -974,18 +974,17 @@ msgid "Use this form to edit the group."
|
|||||||
msgstr "Utilitza aquest formulari per editar el grup."
|
msgstr "Utilitza aquest formulari per editar el grup."
|
||||||
|
|
||||||
#: actions/editgroup.php:201 actions/newgroup.php:145
|
#: actions/editgroup.php:201 actions/newgroup.php:145
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "description is too long (max %d chars)."
|
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
|
#: actions/editgroup.php:253
|
||||||
msgid "Could not update group."
|
msgid "Could not update group."
|
||||||
msgstr "No s'ha pogut actualitzar el grup."
|
msgstr "No s'ha pogut actualitzar el grup."
|
||||||
|
|
||||||
#: actions/editgroup.php:259 classes/User_group.php:390
|
#: actions/editgroup.php:259 classes/User_group.php:390
|
||||||
#, fuzzy
|
|
||||||
msgid "Could not create aliases."
|
msgid "Could not create aliases."
|
||||||
msgstr "No es pot crear favorit."
|
msgstr "No s'han pogut crear els àlies."
|
||||||
|
|
||||||
#: actions/editgroup.php:269
|
#: actions/editgroup.php:269
|
||||||
msgid "Options saved."
|
msgid "Options saved."
|
||||||
@ -1007,13 +1006,13 @@ msgstr "Adreça"
|
|||||||
|
|
||||||
#: actions/emailsettings.php:105
|
#: actions/emailsettings.php:105
|
||||||
msgid "Current confirmed email address."
|
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/emailsettings.php:107 actions/emailsettings.php:140
|
||||||
#: actions/imsettings.php:108 actions/smssettings.php:115
|
#: actions/imsettings.php:108 actions/smssettings.php:115
|
||||||
#: actions/smssettings.php:158
|
#: actions/smssettings.php:158
|
||||||
msgid "Remove"
|
msgid "Remove"
|
||||||
msgstr "Eliminar"
|
msgstr "Suprimeix"
|
||||||
|
|
||||||
#: actions/emailsettings.php:113
|
#: actions/emailsettings.php:113
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -1026,7 +1025,7 @@ msgstr ""
|
|||||||
#: actions/emailsettings.php:117 actions/imsettings.php:120
|
#: actions/emailsettings.php:117 actions/imsettings.php:120
|
||||||
#: actions/smssettings.php:126
|
#: actions/smssettings.php:126
|
||||||
msgid "Cancel"
|
msgid "Cancel"
|
||||||
msgstr "Cancel·lar"
|
msgstr "Cancel·la"
|
||||||
|
|
||||||
#: actions/emailsettings.php:121
|
#: actions/emailsettings.php:121
|
||||||
msgid "Email Address"
|
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/emailsettings.php:126 actions/imsettings.php:133
|
||||||
#: actions/smssettings.php:145
|
#: actions/smssettings.php:145
|
||||||
msgid "Add"
|
msgid "Add"
|
||||||
msgstr "Afegir"
|
msgstr "Afegeix"
|
||||||
|
|
||||||
#: actions/emailsettings.php:133 actions/smssettings.php:152
|
#: actions/emailsettings.php:133 actions/smssettings.php:152
|
||||||
msgid "Incoming email"
|
msgid "Incoming email"
|
||||||
@ -1048,7 +1047,7 @@ msgstr "Correu electrònic entrant"
|
|||||||
#: actions/emailsettings.php:138 actions/smssettings.php:157
|
#: actions/emailsettings.php:138 actions/smssettings.php:157
|
||||||
msgid "Send email to this address to post new notices."
|
msgid "Send email to this address to post new notices."
|
||||||
msgstr ""
|
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
|
#: actions/emailsettings.php:145 actions/smssettings.php:162
|
||||||
msgid "Make a new email address for posting to; cancels the old one."
|
msgid "Make a new email address for posting to; cancels the old one."
|
||||||
@ -1255,7 +1254,7 @@ msgstr "Sense adjuncions"
|
|||||||
|
|
||||||
#: actions/file.php:51
|
#: actions/file.php:51
|
||||||
msgid "No uploaded attachments"
|
msgid "No uploaded attachments"
|
||||||
msgstr ""
|
msgstr "No s'ha pujat cap adjunció"
|
||||||
|
|
||||||
#: actions/finishremotesubscribe.php:69
|
#: actions/finishremotesubscribe.php:69
|
||||||
msgid "Not expecting this response!"
|
msgid "Not expecting this response!"
|
||||||
@ -1299,9 +1298,8 @@ msgid "No such group."
|
|||||||
msgstr "No s'ha trobat el grup."
|
msgstr "No s'ha trobat el grup."
|
||||||
|
|
||||||
#: actions/getfile.php:75
|
#: actions/getfile.php:75
|
||||||
#, fuzzy
|
|
||||||
msgid "No such file."
|
msgid "No such file."
|
||||||
msgstr "No existeix aquest avís."
|
msgstr "No existeix el fitxer."
|
||||||
|
|
||||||
#: actions/getfile.php:79
|
#: actions/getfile.php:79
|
||||||
msgid "Cannot read file."
|
msgid "Cannot read file."
|
||||||
@ -1384,20 +1382,20 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "No s'ha pogut actualitzar l'usuari."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr "No s'ha pogut guardar la teva configuració de Twitter!"
|
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
|
#, fuzzy
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "Preferències de sincronització guardades."
|
msgstr "Preferències de sincronització guardades."
|
||||||
@ -1447,7 +1445,7 @@ msgstr "Admin"
|
|||||||
|
|
||||||
#: actions/groupmembers.php:346 lib/blockform.php:69
|
#: actions/groupmembers.php:346 lib/blockform.php:69
|
||||||
msgid "Block"
|
msgid "Block"
|
||||||
msgstr "Bloquejar"
|
msgstr "Bloca"
|
||||||
|
|
||||||
#: actions/groupmembers.php:441
|
#: actions/groupmembers.php:441
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
@ -1724,9 +1722,9 @@ msgstr "Missatge personal"
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr "Opcionalment pots afegir un missatge a la invitació."
|
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"
|
msgid "Send"
|
||||||
msgstr "Enviar"
|
msgstr "Envia"
|
||||||
|
|
||||||
#: actions/invite.php:226
|
#: actions/invite.php:226
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -1830,11 +1828,11 @@ msgstr "No s'ha pogut eliminar l'usuari %s del grup %s"
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr "%s ha abandonat el grup %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."
|
msgid "Already logged in."
|
||||||
msgstr "Ja estàs connectat."
|
msgstr "Ja estàs connectat."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "El contingut de l'avís és invàlid"
|
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
|
#: actions/newmessage.php:121 actions/newmessage.php:161 lib/command.php:367
|
||||||
msgid "You can't send a message to this user."
|
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
|
#: actions/newmessage.php:144 actions/newnotice.php:136 lib/command.php:351
|
||||||
#: lib/command.php:424
|
#: lib/command.php:424
|
||||||
@ -2046,10 +2044,10 @@ msgstr "tipus de contingut "
|
|||||||
|
|
||||||
#: actions/oembed.php:160
|
#: actions/oembed.php:160
|
||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr "Només "
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr "Format de data no suportat."
|
msgstr "Format de data no suportat."
|
||||||
|
|
||||||
@ -2071,7 +2069,7 @@ msgstr "Gestionar altres vàries opcions."
|
|||||||
|
|
||||||
#: actions/othersettings.php:108
|
#: actions/othersettings.php:108
|
||||||
msgid " (free service)"
|
msgid " (free service)"
|
||||||
msgstr ""
|
msgstr " (servei gratuït)"
|
||||||
|
|
||||||
#: actions/othersettings.php:116
|
#: actions/othersettings.php:116
|
||||||
msgid "Shorten URLs with"
|
msgid "Shorten URLs with"
|
||||||
@ -2088,7 +2086,7 @@ msgstr "Configuració del perfil"
|
|||||||
|
|
||||||
#: actions/othersettings.php:123
|
#: actions/othersettings.php:123
|
||||||
msgid "Show or hide profile designs."
|
msgid "Show or hide profile designs."
|
||||||
msgstr ""
|
msgstr "Mostra o amaga els dissenys de perfil."
|
||||||
|
|
||||||
#: actions/othersettings.php:153
|
#: actions/othersettings.php:153
|
||||||
msgid "URL shortening service is too long (max 50 chars)."
|
msgid "URL shortening service is too long (max 50 chars)."
|
||||||
@ -2210,9 +2208,8 @@ msgid "Path"
|
|||||||
msgstr "Camí"
|
msgstr "Camí"
|
||||||
|
|
||||||
#: actions/pathsadminpanel.php:216
|
#: actions/pathsadminpanel.php:216
|
||||||
#, fuzzy
|
|
||||||
msgid "Site path"
|
msgid "Site path"
|
||||||
msgstr "Avís del lloc"
|
msgstr "Camí del lloc"
|
||||||
|
|
||||||
#: actions/pathsadminpanel.php:220
|
#: actions/pathsadminpanel.php:220
|
||||||
msgid "Path to locales"
|
msgid "Path to locales"
|
||||||
@ -2228,11 +2225,11 @@ msgstr "Tema"
|
|||||||
|
|
||||||
#: actions/pathsadminpanel.php:232
|
#: actions/pathsadminpanel.php:232
|
||||||
msgid "Theme server"
|
msgid "Theme server"
|
||||||
msgstr ""
|
msgstr "Servidor dels temes"
|
||||||
|
|
||||||
#: actions/pathsadminpanel.php:236
|
#: actions/pathsadminpanel.php:236
|
||||||
msgid "Theme path"
|
msgid "Theme path"
|
||||||
msgstr ""
|
msgstr "Camí dels temes"
|
||||||
|
|
||||||
#: actions/pathsadminpanel.php:240
|
#: actions/pathsadminpanel.php:240
|
||||||
msgid "Theme directory"
|
msgid "Theme directory"
|
||||||
@ -3789,11 +3786,11 @@ msgstr ""
|
|||||||
|
|
||||||
#: actions/useradminpanel.php:265
|
#: actions/useradminpanel.php:265
|
||||||
msgid "Sessions"
|
msgid "Sessions"
|
||||||
msgstr ""
|
msgstr "Sessions"
|
||||||
|
|
||||||
#: actions/useradminpanel.php:270
|
#: actions/useradminpanel.php:270
|
||||||
msgid "Handle sessions"
|
msgid "Handle sessions"
|
||||||
msgstr ""
|
msgstr "Gestiona les sessions"
|
||||||
|
|
||||||
#: actions/useradminpanel.php:272
|
#: actions/useradminpanel.php:272
|
||||||
msgid "Whether to handle sessions ourselves."
|
msgid "Whether to handle sessions ourselves."
|
||||||
@ -3823,9 +3820,8 @@ msgstr ""
|
|||||||
"avisos de ningú, clica \"Cancel·lar\"."
|
"avisos de ningú, clica \"Cancel·lar\"."
|
||||||
|
|
||||||
#: actions/userauthorization.php:188
|
#: actions/userauthorization.php:188
|
||||||
#, fuzzy
|
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr "llicència."
|
msgstr "Llicència"
|
||||||
|
|
||||||
#: actions/userauthorization.php:209
|
#: actions/userauthorization.php:209
|
||||||
msgid "Accept"
|
msgid "Accept"
|
||||||
@ -4033,9 +4029,9 @@ msgid "Could not set group membership."
|
|||||||
msgstr "No s'ha pogut establir la pertinença d'aquest grup."
|
msgstr "No s'ha pogut establir la pertinença d'aquest grup."
|
||||||
|
|
||||||
#: classes/User.php:347
|
#: classes/User.php:347
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "Welcome to %1$s, @%2$s!"
|
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
|
#: lib/accountsettingsaction.php:108
|
||||||
msgid "Change your profile settings"
|
msgid "Change your profile settings"
|
||||||
@ -4105,9 +4101,8 @@ msgid "Connect to services"
|
|||||||
msgstr "No s'ha pogut redirigir al servidor: %s"
|
msgstr "No s'ha pogut redirigir al servidor: %s"
|
||||||
|
|
||||||
#: lib/action.php:440
|
#: lib/action.php:440
|
||||||
#, fuzzy
|
|
||||||
msgid "Change site configuration"
|
msgid "Change site configuration"
|
||||||
msgstr "Navegació primària del lloc"
|
msgstr "Canvia la configuració del lloc"
|
||||||
|
|
||||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||||
msgid "Invite"
|
msgid "Invite"
|
||||||
@ -4253,9 +4248,8 @@ msgid "There was a problem with your session token."
|
|||||||
msgstr "Ha ocorregut algun problema amb la teva sessió."
|
msgstr "Ha ocorregut algun problema amb la teva sessió."
|
||||||
|
|
||||||
#: lib/adminpanelaction.php:96
|
#: lib/adminpanelaction.php:96
|
||||||
#, fuzzy
|
|
||||||
msgid "You cannot make changes to this site."
|
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
|
#: lib/adminpanelaction.php:195
|
||||||
#, fuzzy
|
#, 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"
|
msgstr "Missatge massa llarg - màxim és 140 caràcters, tu has enviat %d"
|
||||||
|
|
||||||
#: lib/command.php:439
|
#: lib/command.php:439
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "Reply to %s sent"
|
msgid "Reply to %s sent"
|
||||||
msgstr "respondre a aquesta nota"
|
msgstr "S'ha enviat la resposta a %s"
|
||||||
|
|
||||||
#: lib/command.php:441
|
#: lib/command.php:441
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
@ -4442,40 +4436,53 @@ msgstr "Notificacions on."
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr "No es poden posar en on les notificacions."
|
msgstr "No es poden posar en on les notificacions."
|
||||||
|
|
||||||
#: lib/command.php: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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "No estàs subscrit a aquest perfil."
|
msgstr "No estàs subscrit a aquest perfil."
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "Ja estàs subscrit a aquests usuaris:"
|
msgstr[0] "Ja estàs subscrit a aquests usuaris:"
|
||||||
msgstr[1] "Ja estàs subscrit a aquests usuaris:"
|
msgstr[1] "Ja estàs subscrit a aquests usuaris:"
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "No pots subscriure a un altre a tu mateix."
|
msgstr "No pots subscriure a un altre a tu mateix."
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "No pots subscriure a un altre a tu mateix."
|
msgstr[0] "No pots subscriure a un altre a tu mateix."
|
||||||
msgstr[1] "No pots subscriure a un altre a tu mateix."
|
msgstr[1] "No pots subscriure a un altre a tu mateix."
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
|
||||||
msgid "You are not a member of any groups."
|
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 "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "No sou un membre del grup."
|
msgstr[0] "No sou un membre del grup."
|
||||||
msgstr[1] "No sou un membre del grup."
|
msgstr[1] "No sou un membre del grup."
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4494,6 +4501,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4514,9 +4522,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/common.php:199
|
#: lib/common.php:199
|
||||||
#, fuzzy
|
|
||||||
msgid "No configuration file found. "
|
msgid "No configuration file found. "
|
||||||
msgstr "Cap codi de confirmació."
|
msgstr "No s'ha trobat cap fitxer de configuració. "
|
||||||
|
|
||||||
#: lib/common.php:200
|
#: lib/common.php:200
|
||||||
msgid "I looked for configuration files in the following places: "
|
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 ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/common.php:202
|
#: lib/common.php:202
|
||||||
#, fuzzy
|
|
||||||
msgid "Go to the installer."
|
msgid "Go to the installer."
|
||||||
msgstr "Accedir a aquest lloc"
|
msgstr "Vés a l'instal·lador."
|
||||||
|
|
||||||
#: lib/connectsettingsaction.php:110
|
#: lib/connectsettingsaction.php:110
|
||||||
msgid "IM"
|
msgid "IM"
|
||||||
@ -4558,11 +4564,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"You can upload your personal background image. The maximum file size is 2MB."
|
||||||
msgstr "Pots pujar el teu avatar personal."
|
msgstr "Pots pujar el teu avatar personal."
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4657,9 +4659,8 @@ msgid "Group"
|
|||||||
msgstr "Grup"
|
msgstr "Grup"
|
||||||
|
|
||||||
#: lib/groupnav.php:101
|
#: lib/groupnav.php:101
|
||||||
#, fuzzy
|
|
||||||
msgid "Blocked"
|
msgid "Blocked"
|
||||||
msgstr "Bloquejar"
|
msgstr "Blocat"
|
||||||
|
|
||||||
#: lib/groupnav.php:102
|
#: lib/groupnav.php:102
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
@ -4771,9 +4772,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/mailbox.php:227 lib/noticelist.php:452
|
#: lib/mailbox.php:227 lib/noticelist.php:452
|
||||||
#, fuzzy
|
|
||||||
msgid "from"
|
msgid "from"
|
||||||
msgstr " de "
|
msgstr "de"
|
||||||
|
|
||||||
#: lib/mail.php:172
|
#: lib/mail.php:172
|
||||||
msgid "Email address confirmation"
|
msgid "Email address confirmation"
|
||||||
@ -5027,7 +5027,7 @@ msgstr "Enviar notificació directa"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "A"
|
msgstr "A"
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "Caràcters disponibles"
|
msgstr "Caràcters disponibles"
|
||||||
|
|
||||||
@ -5040,13 +5040,13 @@ msgstr "Enviar notificació"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "Què tal, %s?"
|
msgstr "Què tal, %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr "Adjunta"
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr "Adjunta un fitxer"
|
||||||
|
|
||||||
#: lib/noticelist.php:403
|
#: lib/noticelist.php:403
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -5135,7 +5135,7 @@ msgstr "Respostes"
|
|||||||
|
|
||||||
#: lib/personalgroupnav.php:114
|
#: lib/personalgroupnav.php:114
|
||||||
msgid "Favorites"
|
msgid "Favorites"
|
||||||
msgstr "Favorits"
|
msgstr "Preferits"
|
||||||
|
|
||||||
#: lib/personalgroupnav.php:124
|
#: lib/personalgroupnav.php:124
|
||||||
msgid "Inbox"
|
msgid "Inbox"
|
||||||
@ -5263,14 +5263,12 @@ msgid "More..."
|
|||||||
msgstr "Més…"
|
msgstr "Més…"
|
||||||
|
|
||||||
#: lib/silenceform.php:67
|
#: lib/silenceform.php:67
|
||||||
#, fuzzy
|
|
||||||
msgid "Silence"
|
msgid "Silence"
|
||||||
msgstr "Avís del lloc"
|
msgstr "Silencia"
|
||||||
|
|
||||||
#: lib/silenceform.php:78
|
#: lib/silenceform.php:78
|
||||||
#, fuzzy
|
|
||||||
msgid "Silence this user"
|
msgid "Silence this user"
|
||||||
msgstr "Bloquejar aquest usuari"
|
msgstr "Silencia l'usuari"
|
||||||
|
|
||||||
#: lib/subgroupnav.php:83
|
#: lib/subgroupnav.php:83
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -5322,7 +5320,12 @@ msgstr "No pots subscriure a un altre a tu mateix."
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "No estàs subscrit!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "No s'ha pogut eliminar la subscripció."
|
msgstr "No s'ha pogut eliminar la subscripció."
|
||||||
|
|
||||||
@ -5345,12 +5348,11 @@ msgstr "Desbloquejar aquest usuari"
|
|||||||
|
|
||||||
#: lib/unsilenceform.php:67
|
#: lib/unsilenceform.php:67
|
||||||
msgid "Unsilence"
|
msgid "Unsilence"
|
||||||
msgstr ""
|
msgstr "Dessilencia"
|
||||||
|
|
||||||
#: lib/unsilenceform.php:78
|
#: lib/unsilenceform.php:78
|
||||||
#, fuzzy
|
|
||||||
msgid "Unsilence this user"
|
msgid "Unsilence this user"
|
||||||
msgstr "Desbloquejar aquest usuari"
|
msgstr "Dessilencia l'usuari"
|
||||||
|
|
||||||
#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137
|
#: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137
|
||||||
msgid "Unsubscribe from this user"
|
msgid "Unsubscribe from this user"
|
||||||
|
@ -8,12 +8,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:19:14+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:26:08+0000\n"
|
||||||
"Language-Team: Czech\n"
|
"Language-Team: Czech\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: cs\n"
|
"X-Language-Code: cs\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -184,7 +184,12 @@ msgstr "Uživatel nemá profil."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "Nelze uložit profil"
|
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."
|
msgid "Block user failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -265,7 +270,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87
|
#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87
|
||||||
msgid "Could not delete favorite."
|
msgid "Could not delete favorite."
|
||||||
msgstr ""
|
msgstr "Nelze smazat oblíbenou položku."
|
||||||
|
|
||||||
#: actions/apifriendshipscreate.php:109
|
#: actions/apifriendshipscreate.php:109
|
||||||
msgid "Could not follow user: User not found."
|
msgid "Could not follow user: User not found."
|
||||||
@ -574,7 +579,7 @@ msgstr ""
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -609,25 +614,22 @@ msgid "Failed updating avatar."
|
|||||||
msgstr "Nahrávání obrázku selhalo."
|
msgstr "Nahrávání obrázku selhalo."
|
||||||
|
|
||||||
#: actions/avatarsettings.php:387
|
#: actions/avatarsettings.php:387
|
||||||
#, fuzzy
|
|
||||||
msgid "Avatar deleted."
|
msgid "Avatar deleted."
|
||||||
msgstr "Obrázek nahrán"
|
msgstr "Avatar smazán."
|
||||||
|
|
||||||
#: actions/blockedfromgroup.php:73 actions/editgroup.php:84
|
#: actions/blockedfromgroup.php:73 actions/editgroup.php:84
|
||||||
#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86
|
#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86
|
||||||
#: actions/groupmembers.php:76 actions/grouprss.php:91
|
#: actions/groupmembers.php:76 actions/grouprss.php:91
|
||||||
#: actions/joingroup.php:76 actions/showgroup.php:121
|
#: actions/joingroup.php:76 actions/showgroup.php:121
|
||||||
#, fuzzy
|
|
||||||
msgid "No nickname"
|
msgid "No nickname"
|
||||||
msgstr "Žádná přezdívka."
|
msgstr "Žádná přezdívka"
|
||||||
|
|
||||||
#: actions/blockedfromgroup.php:80 actions/editgroup.php:96
|
#: actions/blockedfromgroup.php:80 actions/editgroup.php:96
|
||||||
#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97
|
#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97
|
||||||
#: actions/grouplogo.php:99 actions/groupmembers.php:83
|
#: actions/grouplogo.php:99 actions/groupmembers.php:83
|
||||||
#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137
|
#: actions/grouprss.php:98 actions/joingroup.php:83 actions/showgroup.php:137
|
||||||
#, fuzzy
|
|
||||||
msgid "No such group"
|
msgid "No such group"
|
||||||
msgstr "Žádné takové oznámení."
|
msgstr "Žádná taková skupina"
|
||||||
|
|
||||||
#: actions/blockedfromgroup.php:90
|
#: actions/blockedfromgroup.php:90
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
@ -677,7 +679,7 @@ msgstr ""
|
|||||||
#: actions/block.php:143 actions/deletenotice.php:145
|
#: actions/block.php:143 actions/deletenotice.php:145
|
||||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr ""
|
msgstr "Ne"
|
||||||
|
|
||||||
#: actions/block.php:143 actions/deleteuser.php:147
|
#: actions/block.php:143 actions/deleteuser.php:147
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
@ -687,12 +689,11 @@ msgstr "Žádný takový uživatel."
|
|||||||
#: actions/block.php:144 actions/deletenotice.php:146
|
#: actions/block.php:144 actions/deletenotice.php:146
|
||||||
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
#: actions/deleteuser.php:148 actions/groupblock.php:179
|
||||||
msgid "Yes"
|
msgid "Yes"
|
||||||
msgstr ""
|
msgstr "Ano"
|
||||||
|
|
||||||
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80
|
#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80
|
||||||
#, fuzzy
|
|
||||||
msgid "Block this user"
|
msgid "Block this user"
|
||||||
msgstr "Žádný takový uživatel."
|
msgstr "Zablokovat tohoto uživatele"
|
||||||
|
|
||||||
#: actions/block.php:162
|
#: actions/block.php:162
|
||||||
msgid "Failed to save block information."
|
msgid "Failed to save block information."
|
||||||
@ -770,7 +771,7 @@ msgstr "Nepřihlášen"
|
|||||||
|
|
||||||
#: actions/deletenotice.php:71
|
#: actions/deletenotice.php:71
|
||||||
msgid "Can't delete this notice."
|
msgid "Can't delete this notice."
|
||||||
msgstr ""
|
msgstr "Toto oznámení nelze odstranit."
|
||||||
|
|
||||||
#: actions/deletenotice.php:103
|
#: actions/deletenotice.php:103
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -793,7 +794,7 @@ msgstr "Žádné takové oznámení."
|
|||||||
|
|
||||||
#: actions/deletenotice.php:146 lib/noticelist.php:550
|
#: actions/deletenotice.php:146 lib/noticelist.php:550
|
||||||
msgid "Delete this notice"
|
msgid "Delete this notice"
|
||||||
msgstr ""
|
msgstr "Odstranit toto oznámení"
|
||||||
|
|
||||||
#: actions/deletenotice.php:157
|
#: actions/deletenotice.php:157
|
||||||
msgid "There was a problem with your session token. Try again, please."
|
msgid "There was a problem with your session token. Try again, please."
|
||||||
@ -820,122 +821,118 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/deleteuser.php:148 lib/deleteuserform.php:77
|
#: actions/deleteuser.php:148 lib/deleteuserform.php:77
|
||||||
#, fuzzy
|
|
||||||
msgid "Delete this user"
|
msgid "Delete this user"
|
||||||
msgstr "Žádný takový uživatel."
|
msgstr "Odstranit tohoto uživatele"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124
|
#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124
|
||||||
#: lib/adminpanelaction.php:302 lib/groupnav.php:119
|
#: lib/adminpanelaction.php:302 lib/groupnav.php:119
|
||||||
msgid "Design"
|
msgid "Design"
|
||||||
msgstr ""
|
msgstr "Vzhled"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:73
|
#: actions/designadminpanel.php:73
|
||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "Neplatná velikost"
|
msgstr "Neplatná velikost"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "Tato stránka není k dispozici v typu média která přijímáte."
|
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
|
#, fuzzy
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Změnit heslo"
|
msgstr "Změnit heslo"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "Nové sdělení"
|
msgstr "Nové sdělení"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Změnit"
|
msgstr "Změnit"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Nové sdělení"
|
msgstr "Nové sdělení"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr ""
|
msgstr "Pozadí"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků"
|
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"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
#, fuzzy
|
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "Změnit heslo"
|
msgstr "Změnit barvy"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
#, fuzzy
|
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Připojit"
|
msgstr "Obsah"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Hledat"
|
msgstr "Hledat"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
#, fuzzy
|
|
||||||
msgid "Links"
|
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"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -945,7 +942,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Uložit"
|
msgstr "Uložit"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -955,7 +952,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: actions/disfavor.php:94
|
#: actions/disfavor.php:94
|
||||||
msgid "Add to favorites"
|
msgid "Add to favorites"
|
||||||
msgstr ""
|
msgstr "Přidat do oblíbených"
|
||||||
|
|
||||||
#: actions/doc.php:69
|
#: actions/doc.php:69
|
||||||
msgid "No such document."
|
msgid "No such document."
|
||||||
@ -964,7 +961,7 @@ msgstr "Žádný takový dokument."
|
|||||||
#: actions/editgroup.php:56
|
#: actions/editgroup.php:56
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Edit %s group"
|
msgid "Edit %s group"
|
||||||
msgstr ""
|
msgstr "Upravit %s skupinu"
|
||||||
|
|
||||||
#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
|
#: actions/editgroup.php:68 actions/grouplogo.php:70 actions/newgroup.php:65
|
||||||
msgid "You must be logged in to create a group."
|
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"
|
msgstr "Nelze uložin informace o obrázku"
|
||||||
|
|
||||||
#: actions/editgroup.php:269
|
#: actions/editgroup.php:269
|
||||||
#, fuzzy
|
|
||||||
msgid "Options saved."
|
msgid "Options saved."
|
||||||
msgstr "Nastavení uloženo"
|
msgstr "Nastavení uloženo."
|
||||||
|
|
||||||
#: actions/emailsettings.php:60
|
#: actions/emailsettings.php:60
|
||||||
msgid "Email Settings"
|
msgid "Email Settings"
|
||||||
msgstr ""
|
msgstr "Nastavení E-mailu"
|
||||||
|
|
||||||
#: actions/emailsettings.php:71
|
#: actions/emailsettings.php:71
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -1061,7 +1057,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: actions/emailsettings.php:148 actions/smssettings.php:164
|
#: actions/emailsettings.php:148 actions/smssettings.php:164
|
||||||
msgid "New"
|
msgid "New"
|
||||||
msgstr ""
|
msgstr "Nový"
|
||||||
|
|
||||||
#: actions/emailsettings.php:153 actions/imsettings.php:139
|
#: actions/emailsettings.php:153 actions/imsettings.php:139
|
||||||
#: actions/smssettings.php:169
|
#: actions/smssettings.php:169
|
||||||
@ -1244,9 +1240,8 @@ msgid "No notice id"
|
|||||||
msgstr "Nové sdělení"
|
msgstr "Nové sdělení"
|
||||||
|
|
||||||
#: actions/file.php:38
|
#: actions/file.php:38
|
||||||
#, fuzzy
|
|
||||||
msgid "No notice"
|
msgid "No notice"
|
||||||
msgstr "Nové sdělení"
|
msgstr "Žádné oznámení"
|
||||||
|
|
||||||
#: actions/file.php:42
|
#: actions/file.php:42
|
||||||
msgid "No attachments"
|
msgid "No attachments"
|
||||||
@ -1385,26 +1380,26 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "Nelze aktualizovat uživatele"
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
|
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "Nastavení uloženo"
|
msgstr "Nastavení uloženo"
|
||||||
|
|
||||||
#: actions/grouplogo.php:139 actions/grouplogo.php:192
|
#: actions/grouplogo.php:139 actions/grouplogo.php:192
|
||||||
msgid "Group logo"
|
msgid "Group logo"
|
||||||
msgstr ""
|
msgstr "Logo skupiny"
|
||||||
|
|
||||||
#: actions/grouplogo.php:150
|
#: actions/grouplogo.php:150
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -1502,7 +1497,7 @@ msgstr ""
|
|||||||
#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230
|
#: actions/groups.php:62 lib/profileaction.php:210 lib/profileaction.php:230
|
||||||
#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
|
#: lib/publicgroupnav.php:81 lib/searchgroupnav.php:84 lib/subgroupnav.php:98
|
||||||
msgid "Groups"
|
msgid "Groups"
|
||||||
msgstr ""
|
msgstr "Skupiny"
|
||||||
|
|
||||||
#: actions/groups.php:64
|
#: actions/groups.php:64
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -1712,7 +1707,7 @@ msgstr ""
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr ""
|
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"
|
msgid "Send"
|
||||||
msgstr "Odeslat"
|
msgstr "Odeslat"
|
||||||
|
|
||||||
@ -1794,11 +1789,11 @@ msgstr "Nelze vytvořit OpenID z: %s"
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/login.php:79 actions/register.php:137
|
#: actions/login.php:82 actions/register.php:137
|
||||||
msgid "Already logged in."
|
msgid "Already logged in."
|
||||||
msgstr "Již přihlášen"
|
msgstr "Již přihlášen"
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "Neplatný obsah sdělení"
|
msgstr "Neplatný obsah sdělení"
|
||||||
@ -1885,7 +1880,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: actions/newgroup.php:53
|
#: actions/newgroup.php:53
|
||||||
msgid "New group"
|
msgid "New group"
|
||||||
msgstr ""
|
msgstr "Nová skupina"
|
||||||
|
|
||||||
#: actions/newgroup.php:110
|
#: actions/newgroup.php:110
|
||||||
msgid "Use this form to create a new group."
|
msgid "Use this form to create a new group."
|
||||||
@ -2008,8 +2003,8 @@ msgstr "Připojit"
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr ""
|
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"
|
msgstr "Popiš sebe a své zájmy ve 140 znacích"
|
||||||
|
|
||||||
#: actions/profilesettings.php:125 actions/register.php:463
|
#: actions/profilesettings.php:125 actions/register.php:463
|
||||||
#, fuzzy
|
|
||||||
msgid "Describe yourself and your interests"
|
msgid "Describe yourself and your interests"
|
||||||
msgstr "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
|
#: actions/profilesettings.php:127 actions/register.php:465
|
||||||
msgid "Bio"
|
msgid "Bio"
|
||||||
@ -2345,7 +2339,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:307
|
#: actions/profilesettings.php:144 actions/siteadminpanel.php:307
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr "Jazyk"
|
||||||
|
|
||||||
#: actions/profilesettings.php:145
|
#: actions/profilesettings.php:145
|
||||||
msgid "Preferred language"
|
msgid "Preferred language"
|
||||||
@ -2629,7 +2623,7 @@ msgstr "Chyba v ověřovacím kódu"
|
|||||||
|
|
||||||
#: actions/register.php:112
|
#: actions/register.php:112
|
||||||
msgid "Registration successful"
|
msgid "Registration successful"
|
||||||
msgstr ""
|
msgstr "Registrace úspěšná"
|
||||||
|
|
||||||
#: actions/register.php:114 actions/register.php:502 lib/action.php:455
|
#: actions/register.php:114 actions/register.php:502 lib/action.php:455
|
||||||
#: lib/logingroupnav.php:85
|
#: lib/logingroupnav.php:85
|
||||||
@ -2921,9 +2915,8 @@ msgstr ""
|
|||||||
|
|
||||||
#: actions/showgroup.php:274 actions/tagother.php:128
|
#: actions/showgroup.php:274 actions/tagother.php:128
|
||||||
#: actions/userauthorization.php:179 lib/userprofile.php:194
|
#: actions/userauthorization.php:179 lib/userprofile.php:194
|
||||||
#, fuzzy
|
|
||||||
msgid "Note"
|
msgid "Note"
|
||||||
msgstr "Sdělení"
|
msgstr "Poznámka"
|
||||||
|
|
||||||
#: actions/showgroup.php:284 lib/groupeditform.php:184
|
#: actions/showgroup.php:284 lib/groupeditform.php:184
|
||||||
msgid "Aliases"
|
msgid "Aliases"
|
||||||
@ -3392,7 +3385,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: actions/smssettings.php:306
|
#: actions/smssettings.php:306
|
||||||
msgid "No phone number."
|
msgid "No phone number."
|
||||||
msgstr ""
|
msgstr "Žádné telefonní číslo."
|
||||||
|
|
||||||
#: actions/smssettings.php:311
|
#: actions/smssettings.php:311
|
||||||
msgid "No carrier selected."
|
msgid "No carrier selected."
|
||||||
@ -3759,7 +3752,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: actions/userauthorization.php:188
|
#: actions/userauthorization.php:188
|
||||||
msgid "License"
|
msgid "License"
|
||||||
msgstr ""
|
msgstr "Licence"
|
||||||
|
|
||||||
#: actions/userauthorization.php:209
|
#: actions/userauthorization.php:209
|
||||||
msgid "Accept"
|
msgid "Accept"
|
||||||
@ -4074,9 +4067,8 @@ msgid "Help"
|
|||||||
msgstr "Nápověda"
|
msgstr "Nápověda"
|
||||||
|
|
||||||
#: lib/action.php:461
|
#: lib/action.php:461
|
||||||
#, fuzzy
|
|
||||||
msgid "Help me!"
|
msgid "Help me!"
|
||||||
msgstr "Nápověda"
|
msgstr "Pomoci mi!"
|
||||||
|
|
||||||
#: lib/action.php:464 lib/searchaction.php:127
|
#: lib/action.php:464 lib/searchaction.php:127
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
@ -4233,9 +4225,8 @@ msgid "Author"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/attachmentlist.php:278
|
#: lib/attachmentlist.php:278
|
||||||
#, fuzzy
|
|
||||||
msgid "Provider"
|
msgid "Provider"
|
||||||
msgstr "Profil"
|
msgstr "Poskytovatel"
|
||||||
|
|
||||||
#: lib/attachmentnoticesection.php:67
|
#: lib/attachmentnoticesection.php:67
|
||||||
msgid "Notices where this attachment appears"
|
msgid "Notices where this attachment appears"
|
||||||
@ -4382,43 +4373,57 @@ msgstr ""
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr ""
|
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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "Neodeslal jste nám profil"
|
msgstr "Neodeslal jste nám profil"
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "Neodeslal jste nám profil"
|
msgstr[0] "Neodeslal jste nám profil"
|
||||||
msgstr[1] "Neodeslal jste nám profil"
|
msgstr[1] "Neodeslal jste nám profil"
|
||||||
msgstr[2] ""
|
msgstr[2] ""
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "Vzdálený odběr"
|
msgstr "Vzdálený odběr"
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "Vzdálený odběr"
|
msgstr[0] "Vzdálený odběr"
|
||||||
msgstr[1] "Vzdálený odběr"
|
msgstr[1] "Vzdálený odběr"
|
||||||
msgstr[2] ""
|
msgstr[2] ""
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "Neodeslal jste nám profil"
|
msgstr "Neodeslal jste nám profil"
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "Neodeslal jste nám profil"
|
msgstr[0] "Neodeslal jste nám profil"
|
||||||
msgstr[1] "Neodeslal jste nám profil"
|
msgstr[1] "Neodeslal jste nám profil"
|
||||||
msgstr[2] ""
|
msgstr[2] ""
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4437,6 +4442,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4500,11 +4506,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"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ů"
|
msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků"
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4616,9 +4618,8 @@ msgid "Edit %s group properties"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/groupnav.php:113
|
#: lib/groupnav.php:113
|
||||||
#, fuzzy
|
|
||||||
msgid "Logo"
|
msgid "Logo"
|
||||||
msgstr "Odhlásit"
|
msgstr "Logo"
|
||||||
|
|
||||||
#: lib/groupnav.php:114
|
#: lib/groupnav.php:114
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -4691,9 +4692,8 @@ msgid "[%s]"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/joinform.php:114
|
#: lib/joinform.php:114
|
||||||
#, fuzzy
|
|
||||||
msgid "Join"
|
msgid "Join"
|
||||||
msgstr "Přihlásit"
|
msgstr "Přidat se"
|
||||||
|
|
||||||
#: lib/leaveform.php:114
|
#: lib/leaveform.php:114
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
@ -4773,9 +4773,9 @@ msgstr ""
|
|||||||
"%4$s.\n"
|
"%4$s.\n"
|
||||||
|
|
||||||
#: lib/mail.php:254
|
#: lib/mail.php:254
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "Location: %s\n"
|
msgid "Location: %s\n"
|
||||||
msgstr "Umístění %s\n"
|
msgstr "Umístění: %s\n"
|
||||||
|
|
||||||
#: lib/mail.php:256
|
#: lib/mail.php:256
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
@ -4968,7 +4968,7 @@ msgstr ""
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "6 a více znaků"
|
msgstr "6 a více znaků"
|
||||||
@ -4983,11 +4983,11 @@ msgstr "Nové sdělení"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "Co se děje %s?"
|
msgstr "Co se děje %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5077,7 +5077,7 @@ msgstr "Odpovědi"
|
|||||||
|
|
||||||
#: lib/personalgroupnav.php:114
|
#: lib/personalgroupnav.php:114
|
||||||
msgid "Favorites"
|
msgid "Favorites"
|
||||||
msgstr ""
|
msgstr "Oblíbené"
|
||||||
|
|
||||||
#: lib/personalgroupnav.php:124
|
#: lib/personalgroupnav.php:124
|
||||||
msgid "Inbox"
|
msgid "Inbox"
|
||||||
@ -5113,9 +5113,8 @@ msgid "Subscribers"
|
|||||||
msgstr "Odběratelé"
|
msgstr "Odběratelé"
|
||||||
|
|
||||||
#: lib/profileaction.php:157
|
#: lib/profileaction.php:157
|
||||||
#, fuzzy
|
|
||||||
msgid "All subscribers"
|
msgid "All subscribers"
|
||||||
msgstr "Odběratelé"
|
msgstr "Všichni odběratelé"
|
||||||
|
|
||||||
#: lib/profileaction.php:178
|
#: lib/profileaction.php:178
|
||||||
msgid "User ID"
|
msgid "User ID"
|
||||||
@ -5267,7 +5266,12 @@ msgstr ""
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "Nepřihlášen!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "Nelze smazat odebírání"
|
msgstr "Nelze smazat odebírání"
|
||||||
|
|
||||||
@ -5306,13 +5310,12 @@ msgid "Unsubscribe"
|
|||||||
msgstr "Odhlásit"
|
msgstr "Odhlásit"
|
||||||
|
|
||||||
#: lib/userprofile.php:116
|
#: lib/userprofile.php:116
|
||||||
#, fuzzy
|
|
||||||
msgid "Edit Avatar"
|
msgid "Edit Avatar"
|
||||||
msgstr "Obrázek"
|
msgstr "Upravit avatar"
|
||||||
|
|
||||||
#: lib/userprofile.php:236
|
#: lib/userprofile.php:236
|
||||||
msgid "User actions"
|
msgid "User actions"
|
||||||
msgstr ""
|
msgstr "Akce uživatele"
|
||||||
|
|
||||||
#: lib/userprofile.php:248
|
#: lib/userprofile.php:248
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
@ -5329,7 +5332,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: lib/userprofile.php:273
|
#: lib/userprofile.php:273
|
||||||
msgid "Message"
|
msgid "Message"
|
||||||
msgstr ""
|
msgstr "Zpráva"
|
||||||
|
|
||||||
#: lib/userprofile.php:311
|
#: lib/userprofile.php:311
|
||||||
msgid "Moderate"
|
msgid "Moderate"
|
||||||
@ -5395,7 +5398,7 @@ msgstr ""
|
|||||||
|
|
||||||
#: scripts/maildaemon.php:53
|
#: scripts/maildaemon.php:53
|
||||||
msgid "Not a registered user."
|
msgid "Not a registered user."
|
||||||
msgstr ""
|
msgstr "Není registrovaný uživatel."
|
||||||
|
|
||||||
#: scripts/maildaemon.php:57
|
#: scripts/maildaemon.php:57
|
||||||
msgid "Sorry, that is not your incoming email address."
|
msgid "Sorry, that is not your incoming email address."
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -1,5 +1,6 @@
|
|||||||
# Translation of StatusNet to Greek
|
# Translation of StatusNet to Greek
|
||||||
#
|
#
|
||||||
|
# Author@translatewiki.net: Omnipaedista
|
||||||
# --
|
# --
|
||||||
# This file is distributed under the same license as the StatusNet package.
|
# This file is distributed under the same license as the StatusNet package.
|
||||||
#
|
#
|
||||||
@ -7,12 +8,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:19:21+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:26:14+0000\n"
|
||||||
"Language-Team: Greek\n"
|
"Language-Team: Greek\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: el\n"
|
"X-Language-Code: el\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -47,7 +48,7 @@ msgstr "Αδύνατη η αποθήκευση του προφίλ."
|
|||||||
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
|
#: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77
|
||||||
#: lib/subs.php:34 lib/subs.php:116
|
#: lib/subs.php:34 lib/subs.php:116
|
||||||
msgid "No such user."
|
msgid "No such user."
|
||||||
msgstr ""
|
msgstr "Κανένας τέτοιος χρήστης."
|
||||||
|
|
||||||
#: actions/all.php:84
|
#: actions/all.php:84
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
@ -183,7 +184,12 @@ msgstr ""
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "Απέτυχε η αποθήκευση του προφίλ."
|
msgstr "Απέτυχε η αποθήκευση του προφίλ."
|
||||||
|
|
||||||
#: actions/apiblockcreate.php:108
|
#: actions/apiblockcreate.php:105
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot block yourself!"
|
||||||
|
msgstr "Απέτυχε η ενημέρωση του χρήστη."
|
||||||
|
|
||||||
|
#: actions/apiblockcreate.php:119
|
||||||
msgid "Block user failed."
|
msgid "Block user failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -398,14 +404,14 @@ msgid "%s groups"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/apigrouplistall.php:94
|
#: actions/apigrouplistall.php:94
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "groups on %s"
|
msgid "groups on %s"
|
||||||
msgstr "Βρες ομάδες στο site"
|
msgstr "ομάδες του χρήστη %s"
|
||||||
|
|
||||||
#: actions/apigrouplist.php:95
|
#: actions/apigrouplist.php:95
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "%s's groups"
|
msgid "%s's groups"
|
||||||
msgstr "Ομάδες χρηστών"
|
msgstr "ομάδες των χρηστών %s"
|
||||||
|
|
||||||
#: actions/apigrouplist.php:103
|
#: actions/apigrouplist.php:103
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
@ -460,9 +466,9 @@ msgstr ""
|
|||||||
|
|
||||||
#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117
|
#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117
|
||||||
#: actions/grouprss.php:131 actions/userrss.php:90
|
#: actions/grouprss.php:131 actions/userrss.php:90
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "%s timeline"
|
msgid "%s timeline"
|
||||||
msgstr "Χρονοδιάγραμμα του χρήστη %s"
|
msgstr "χρονοδιάγραμμα του χρήστη %s"
|
||||||
|
|
||||||
#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125
|
#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125
|
||||||
#: actions/userrss.php:92
|
#: actions/userrss.php:92
|
||||||
@ -538,9 +544,8 @@ msgstr ""
|
|||||||
|
|
||||||
#: actions/avatarsettings.php:119 actions/avatarsettings.php:194
|
#: actions/avatarsettings.php:119 actions/avatarsettings.php:194
|
||||||
#: actions/grouplogo.php:251
|
#: actions/grouplogo.php:251
|
||||||
#, fuzzy
|
|
||||||
msgid "Avatar settings"
|
msgid "Avatar settings"
|
||||||
msgstr "Ρυθμίσεις OpenID"
|
msgstr "Ρυθμίσεις του άβαταρ"
|
||||||
|
|
||||||
#: actions/avatarsettings.php:126 actions/avatarsettings.php:202
|
#: actions/avatarsettings.php:126 actions/avatarsettings.php:202
|
||||||
#: actions/grouplogo.php:199 actions/grouplogo.php:259
|
#: actions/grouplogo.php:199 actions/grouplogo.php:259
|
||||||
@ -569,7 +574,7 @@ msgstr ""
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -612,9 +617,8 @@ msgstr "Ρυθμίσεις OpenID"
|
|||||||
#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86
|
#: actions/groupdesignsettings.php:84 actions/grouplogo.php:86
|
||||||
#: actions/groupmembers.php:76 actions/grouprss.php:91
|
#: actions/groupmembers.php:76 actions/grouprss.php:91
|
||||||
#: actions/joingroup.php:76 actions/showgroup.php:121
|
#: actions/joingroup.php:76 actions/showgroup.php:121
|
||||||
#, fuzzy
|
|
||||||
msgid "No nickname"
|
msgid "No nickname"
|
||||||
msgstr "Νέο ψευδώνυμο"
|
msgstr "Κανένα ψευδώνυμο"
|
||||||
|
|
||||||
#: actions/blockedfromgroup.php:80 actions/editgroup.php:96
|
#: actions/blockedfromgroup.php:80 actions/editgroup.php:96
|
||||||
#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97
|
#: actions/groupbyid.php:83 actions/groupdesignsettings.php:97
|
||||||
@ -669,7 +673,7 @@ msgstr ""
|
|||||||
#: actions/block.php:143 actions/deletenotice.php:145
|
#: actions/block.php:143 actions/deletenotice.php:145
|
||||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr ""
|
msgstr "Όχι"
|
||||||
|
|
||||||
#: actions/block.php:143 actions/deleteuser.php:147
|
#: actions/block.php:143 actions/deleteuser.php:147
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
@ -737,9 +741,8 @@ msgid "The address \"%s\" has been confirmed for your account."
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/conversation.php:99
|
#: actions/conversation.php:99
|
||||||
#, fuzzy
|
|
||||||
msgid "Conversation"
|
msgid "Conversation"
|
||||||
msgstr "Τοποθεσία"
|
msgstr "Συζήτηση"
|
||||||
|
|
||||||
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
|
#: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87
|
||||||
#: lib/profileaction.php:216 lib/searchgroupnav.php:82
|
#: lib/profileaction.php:216 lib/searchgroupnav.php:82
|
||||||
@ -825,106 +828,106 @@ msgstr ""
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
|
msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Αλλάξτε τον κωδικό σας"
|
msgstr "Αλλάξτε τον κωδικό σας"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Αλλαγή"
|
msgstr "Αλλαγή"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Αλλαγή"
|
msgstr "Αλλαγή"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:452 lib/designsettings.php:139
|
#: actions/designadminpanel.php:457 lib/designsettings.php:139
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "Αλλάξτε τον κωδικό σας"
|
msgstr "Αλλάξτε τον κωδικό σας"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Σύνδεση"
|
msgstr "Σύνδεση"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "Σύνδεση"
|
msgstr "Σύνδεση"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -934,7 +937,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1370,19 +1373,19 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "Απέτυχε η ενημέρωση του χρήστη."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
|
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "Οι προτιμήσεις αποθηκεύτηκαν"
|
msgstr "Οι προτιμήσεις αποθηκεύτηκαν"
|
||||||
@ -1688,7 +1691,7 @@ msgstr ""
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr ""
|
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"
|
msgid "Send"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1768,11 +1771,11 @@ msgstr ""
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/login.php:79 actions/register.php:137
|
#: actions/login.php:82 actions/register.php:137
|
||||||
msgid "Already logged in."
|
msgid "Already logged in."
|
||||||
msgstr "Ήδη συνδεδεμένος."
|
msgstr "Ήδη συνδεδεμένος."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1979,8 +1982,8 @@ msgstr "Σύνδεση"
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -2969,9 +2972,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/showgroup.php:482
|
#: actions/showgroup.php:482
|
||||||
#, fuzzy
|
|
||||||
msgid "Admins"
|
msgid "Admins"
|
||||||
msgstr "Διαχειριστής"
|
msgstr "Διαχειριστές"
|
||||||
|
|
||||||
#: actions/showmessage.php:81
|
#: actions/showmessage.php:81
|
||||||
msgid "No such message."
|
msgid "No such message."
|
||||||
@ -3192,9 +3194,8 @@ msgid "Use fancy (more readable and memorable) URLs?"
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/siteadminpanel.php:331
|
#: actions/siteadminpanel.php:331
|
||||||
#, fuzzy
|
|
||||||
msgid "Access"
|
msgid "Access"
|
||||||
msgstr "Αποδοχή"
|
msgstr "Πρόσβαση"
|
||||||
|
|
||||||
#: actions/siteadminpanel.php:334
|
#: actions/siteadminpanel.php:334
|
||||||
msgid "Private"
|
msgid "Private"
|
||||||
@ -4317,40 +4318,54 @@ msgstr ""
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr ""
|
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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
|
msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
|
msgstr[0] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
|
||||||
msgstr[1] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
|
msgstr[1] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
|
msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
|
msgstr[0] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
|
||||||
msgstr[1] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
|
msgstr[1] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους."
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "Ομάδες με τα περισσότερα μέλη"
|
msgstr "Ομάδες με τα περισσότερα μέλη"
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "Ομάδες με τα περισσότερα μέλη"
|
msgstr[0] "Ομάδες με τα περισσότερα μέλη"
|
||||||
msgstr[1] "Ομάδες με τα περισσότερα μέλη"
|
msgstr[1] "Ομάδες με τα περισσότερα μέλη"
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4369,6 +4384,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4431,11 +4447,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"You can upload your personal background image. The maximum file size is 2MB."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4690,12 +4702,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/mail.php:254
|
#: lib/mail.php:254
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "Location: %s\n"
|
msgid "Location: %s\n"
|
||||||
msgstr "Τοποθεσία: %s\n"
|
msgstr "Τοποθεσία: %s\n"
|
||||||
|
|
||||||
#: lib/mail.php:256
|
#: lib/mail.php:256
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "Homepage: %s\n"
|
msgid "Homepage: %s\n"
|
||||||
msgstr "Αρχική σελίδα: %s\n"
|
msgstr "Αρχική σελίδα: %s\n"
|
||||||
|
|
||||||
@ -4887,7 +4899,7 @@ msgstr ""
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "6 ή περισσότεροι χαρακτήρες"
|
msgstr "6 ή περισσότεροι χαρακτήρες"
|
||||||
@ -4901,11 +4913,11 @@ msgstr ""
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5177,7 +5189,12 @@ msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "Απέτυχε η συνδρομή."
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "Απέτυχε η διαγραφή συνδρομής."
|
msgstr "Απέτυχε η διαγραφή συνδρομής."
|
||||||
|
|
||||||
|
@ -9,12 +9,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:19:24+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:26:19+0000\n"
|
||||||
"Language-Team: British English\n"
|
"Language-Team: British English\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: en-gb\n"
|
"X-Language-Code: en-gb\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -181,7 +181,12 @@ msgstr "User has no profile."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "Couldn't 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."
|
msgid "Block user failed."
|
||||||
msgstr "Block user failed."
|
msgstr "Block user failed."
|
||||||
|
|
||||||
@ -563,7 +568,7 @@ msgstr "Crop"
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -818,106 +823,106 @@ msgstr ""
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "Invalid size."
|
msgstr "Invalid size."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "This page is not available in a "
|
msgstr "This page is not available in a "
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Change logo"
|
msgstr "Change logo"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "Invite"
|
msgstr "Invite"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Change"
|
msgstr "Change"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Site theme"
|
msgstr "Site theme"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr "Logout from 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"
|
msgid "Change background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr "You can upload a logo image for your group."
|
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"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "Change colours"
|
msgstr "Change colours"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Connect"
|
msgstr "Connect"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Search"
|
msgstr "Search"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Text"
|
msgstr "Text"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "Links"
|
msgstr "Links"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -927,7 +932,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Save"
|
msgstr "Save"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1365,20 +1370,20 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "Couldn't update user."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr "Unable to save your Twitter 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
|
#, fuzzy
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "Sync preferences saved."
|
msgstr "Sync preferences saved."
|
||||||
@ -1694,7 +1699,7 @@ msgstr "Personal message"
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr "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"
|
msgid "Send"
|
||||||
msgstr "Send"
|
msgstr "Send"
|
||||||
|
|
||||||
@ -1800,11 +1805,11 @@ msgstr "Could not remove user %s to group %s"
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr "%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."
|
msgid "Already logged in."
|
||||||
msgstr "Already logged in."
|
msgstr "Already logged in."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "Invalid notice content"
|
msgstr "Invalid notice content"
|
||||||
@ -2016,8 +2021,8 @@ msgstr "Connect"
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr "Not a supported data format."
|
msgstr "Not a supported data format."
|
||||||
|
|
||||||
@ -4387,40 +4392,54 @@ msgstr "Notification on."
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr "Can't turn on notification."
|
msgstr "Can't turn on notification."
|
||||||
|
|
||||||
#: lib/command.php: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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "You are not subscribed to that profile."
|
msgstr "You are not subscribed to that profile."
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "You are already subscribed to these users:"
|
msgstr[0] "You are already subscribed to these users:"
|
||||||
msgstr[1] "You are already subscribed to these users:"
|
msgstr[1] "You are already subscribed to these users:"
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "Could not subscribe other to you."
|
msgstr "Could not subscribe other to you."
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "Could not subscribe other to you."
|
msgstr[0] "Could not subscribe other to you."
|
||||||
msgstr[1] "Could not subscribe other to you."
|
msgstr[1] "Could not subscribe other to you."
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "You are not a member of that group."
|
msgstr "You are not a member of that group."
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "You are not a member of that group."
|
msgstr[0] "You are not a member of that group."
|
||||||
msgstr[1] "You are not a member of that group."
|
msgstr[1] "You are not a member of that group."
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4439,6 +4458,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4501,11 +4521,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"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."
|
msgstr "You can upload your personal avatar. The maximum file size is %s."
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr "Bad default colour settings: "
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4971,7 +4987,7 @@ msgstr "Send a direct notice"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "To"
|
msgstr "To"
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "Available characters"
|
msgstr "Available characters"
|
||||||
|
|
||||||
@ -4984,11 +5000,11 @@ msgstr "Send a notice"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "What's up, %s?"
|
msgstr "What's up, %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5259,7 +5275,12 @@ msgstr "Could not subscribe other to you."
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "Couldn't delete subscription."
|
msgstr "Couldn't delete subscription."
|
||||||
|
|
||||||
|
@ -11,12 +11,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:19:28+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:26:23+0000\n"
|
||||||
"Language-Team: Spanish\n"
|
"Language-Team: Spanish\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: es\n"
|
"X-Language-Code: es\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -188,7 +188,11 @@ msgstr "El usuario no tiene un perfil."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "No se pudo guardar el perfil."
|
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."
|
msgid "Block user failed."
|
||||||
msgstr "Falló bloquear usuario."
|
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."
|
msgstr "No se puede enviar mensajes directos a usuarios que no son tu amigo."
|
||||||
|
|
||||||
#: actions/apidirectmessage.php:89
|
#: actions/apidirectmessage.php:89
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "Direct messages from %s"
|
msgid "Direct messages from %s"
|
||||||
msgstr "Mensajes directos a %s"
|
msgstr "Mensajes directos de %s"
|
||||||
|
|
||||||
#: actions/apidirectmessage.php:93
|
#: actions/apidirectmessage.php:93
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -256,18 +260,16 @@ msgid "No status found with that ID."
|
|||||||
msgstr "No se encontró estado para ese ID"
|
msgstr "No se encontró estado para ese ID"
|
||||||
|
|
||||||
#: actions/apifavoritecreate.php:119
|
#: actions/apifavoritecreate.php:119
|
||||||
#, fuzzy
|
|
||||||
msgid "This status is already a favorite!"
|
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
|
#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176
|
||||||
msgid "Could not create favorite."
|
msgid "Could not create favorite."
|
||||||
msgstr "No se pudo crear favorito."
|
msgstr "No se pudo crear favorito."
|
||||||
|
|
||||||
#: actions/apifavoritedestroy.php:122
|
#: actions/apifavoritedestroy.php:122
|
||||||
#, fuzzy
|
|
||||||
msgid "That status is not a favorite!"
|
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
|
#: actions/apifavoritedestroy.php:134 actions/disfavor.php:87
|
||||||
msgid "Could not delete favorite."
|
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."
|
msgstr "No puede seguir al usuario: %s ya esta en su lista."
|
||||||
|
|
||||||
#: actions/apifriendshipsdestroy.php:109
|
#: actions/apifriendshipsdestroy.php:109
|
||||||
#, fuzzy
|
|
||||||
msgid "Could not unfollow user: User not found."
|
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
|
#: actions/apifriendshipsdestroy.php:120
|
||||||
msgid "You cannot unfollow yourself!"
|
msgid "You cannot unfollow yourself!"
|
||||||
msgstr ""
|
msgstr "¡No puedes dejar de seguirte a ti mismo!"
|
||||||
|
|
||||||
#: actions/apifriendshipsexists.php:94
|
#: actions/apifriendshipsexists.php:94
|
||||||
msgid "Two user ids or screen_names must be supplied."
|
msgid "Two user ids or screen_names must be supplied."
|
||||||
msgstr "Deben proveerse dos identificaciones de usuario o nombres en pantalla."
|
msgstr "Deben proveerse dos identificaciones de usuario o nombres en pantalla."
|
||||||
|
|
||||||
#: actions/apifriendshipsshow.php:135
|
#: actions/apifriendshipsshow.php:135
|
||||||
#, fuzzy
|
|
||||||
msgid "Could not determine source user."
|
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
|
#: actions/apifriendshipsshow.php:143
|
||||||
#, fuzzy
|
|
||||||
msgid "Could not find target user."
|
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/apigroupcreate.php:164 actions/editgroup.php:182
|
||||||
#: actions/newgroup.php:126 actions/profilesettings.php:208
|
#: 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."
|
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"El apodo debe tener solamente letras minúsculas y números y no puede tener "
|
"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/apigroupcreate.php:173 actions/editgroup.php:186
|
||||||
#: actions/newgroup.php:130 actions/profilesettings.php:231
|
#: 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.)"
|
msgstr "Tu nombre es demasiado largo (max. 255 carac.)"
|
||||||
|
|
||||||
#: actions/apigroupcreate.php:213
|
#: actions/apigroupcreate.php:213
|
||||||
#, fuzzy, php-format
|
#, php-format
|
||||||
msgid "Description is too long (max %d chars)."
|
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/apigroupcreate.php:224 actions/editgroup.php:204
|
||||||
#: actions/newgroup.php:148 actions/profilesettings.php:225
|
#: 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
|
#: actions/newgroup.php:159
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Too many aliases! Maximum %d."
|
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/apigroupcreate.php:264 actions/editgroup.php:224
|
||||||
#: actions/newgroup.php:168
|
#: actions/newgroup.php:168
|
||||||
@ -577,7 +576,7 @@ msgstr "Cortar"
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -840,107 +839,107 @@ msgstr ""
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "Tamaño inválido."
|
msgstr "Tamaño inválido."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "Esta página no está disponible en un "
|
msgstr "Esta página no está disponible en un "
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Cambiar colores"
|
msgstr "Cambiar colores"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "Invitar"
|
msgstr "Invitar"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Cambiar"
|
msgstr "Cambiar"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Aviso de sitio"
|
msgstr "Aviso de sitio"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr "Salir de sitio"
|
msgstr "Salir de sitio"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr "Puedes cargar una imagen de logo para tu grupo."
|
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"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "Cambiar colores"
|
msgstr "Cambiar colores"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Contenido"
|
msgstr "Contenido"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Buscar"
|
msgstr "Buscar"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Texto"
|
msgstr "Texto"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "Vínculos"
|
msgstr "Vínculos"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -950,7 +949,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Guardar"
|
msgstr "Guardar"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1401,20 +1400,20 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "No se pudo actualizar el usuario."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr "¡No se pudo guardar tu configuración de Twitter!"
|
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
|
#, fuzzy
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "Preferencias de sincronización guardadas."
|
msgstr "Preferencias de sincronización guardadas."
|
||||||
@ -1740,7 +1739,7 @@ msgstr "Mensaje Personal"
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr "Opcionalmente añada un mensaje personalizado a su invitación."
|
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"
|
msgid "Send"
|
||||||
msgstr "Enviar"
|
msgstr "Enviar"
|
||||||
|
|
||||||
@ -1849,11 +1848,11 @@ msgstr "No se pudo eliminar a usuario %s de grupo %s"
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr "%s dejó grupo %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."
|
msgid "Already logged in."
|
||||||
msgstr "Ya estás conectado."
|
msgstr "Ya estás conectado."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "El contenido del aviso es inválido"
|
msgstr "El contenido del aviso es inválido"
|
||||||
@ -2071,8 +2070,8 @@ msgstr "Conectarse"
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr "No es un formato de dato soportado"
|
msgstr "No es un formato de dato soportado"
|
||||||
|
|
||||||
@ -4507,40 +4506,54 @@ msgstr "Notificación activada."
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr "No se puede activar notificación."
|
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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "No estás suscrito a ese perfil."
|
msgstr "No estás suscrito a ese perfil."
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "Ya estás suscrito a estos usuarios:"
|
msgstr[0] "Ya estás suscrito a estos usuarios:"
|
||||||
msgstr[1] "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
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "No se pudo suscribir otro a ti."
|
msgstr "No se pudo suscribir otro a ti."
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "No se pudo suscribir otro a ti."
|
msgstr[0] "No se pudo suscribir otro a ti."
|
||||||
msgstr[1] "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
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "No eres miembro de ese grupo"
|
msgstr "No eres miembro de ese grupo"
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "No eres miembro de este grupo."
|
msgstr[0] "No eres miembro de este grupo."
|
||||||
msgstr[1] "No eres miembro de este grupo."
|
msgstr[1] "No eres miembro de este grupo."
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4559,6 +4572,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4620,11 +4634,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"You can upload your personal background image. The maximum file size is 2MB."
|
||||||
msgstr "Puedes cargar tu avatar personal."
|
msgstr "Puedes cargar tu avatar personal."
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5092,7 +5102,7 @@ msgstr "Enviar un aviso directo"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "Para"
|
msgstr "Para"
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "Caracteres disponibles"
|
msgstr "Caracteres disponibles"
|
||||||
@ -5107,11 +5117,11 @@ msgstr "Enviar un aviso"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "¿Qué tal, %s?"
|
msgstr "¿Qué tal, %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5388,7 +5398,12 @@ msgstr "No se pudo suscribir otro a ti."
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "¡No estás suscrito!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "No se pudo eliminar la suscripción."
|
msgstr "No se pudo eliminar la suscripción."
|
||||||
|
|
||||||
|
@ -9,12 +9,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:19:32+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:26:26+0000\n"
|
||||||
"Language-Team: Finnish\n"
|
"Language-Team: Finnish\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: fi\n"
|
"X-Language-Code: fi\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -188,7 +188,12 @@ msgstr "Käyttäjällä ei ole profiilia."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "Ei voitu tallentaa profiilia."
|
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."
|
msgid "Block user failed."
|
||||||
msgstr "Käyttäjän esto epäonnistui."
|
msgstr "Käyttäjän esto epäonnistui."
|
||||||
|
|
||||||
@ -573,7 +578,7 @@ msgstr "Rajaa"
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -828,107 +833,107 @@ msgstr "Ulkoasu"
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr "Ulkoasuasetukset tälle StatusNet palvelulle."
|
msgstr "Ulkoasuasetukset tälle StatusNet palvelulle."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "Koko ei kelpaa."
|
msgstr "Koko ei kelpaa."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "Pikaviestin ei ole käytettävissä."
|
msgstr "Pikaviestin ei ole käytettävissä."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Vaihda salasanasi"
|
msgstr "Vaihda salasanasi"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "Kutsu"
|
msgstr "Kutsu"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Vaihda"
|
msgstr "Vaihda"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Palvelun ilmoitus"
|
msgstr "Palvelun ilmoitus"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr "Kirjaudu ulos palvelusta"
|
msgstr "Kirjaudu ulos palvelusta"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr "Vaihda tautakuva"
|
msgstr "Vaihda tautakuva"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr "Tausta"
|
msgstr "Tausta"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr "Voit ladata ryhmälle logokuvan. Maksimikoko on %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"
|
msgid "On"
|
||||||
msgstr "On"
|
msgstr "On"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "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."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "Vaihda väriä"
|
msgstr "Vaihda väriä"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Sisältö"
|
msgstr "Sisältö"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Haku"
|
msgstr "Haku"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Teksti"
|
msgstr "Teksti"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "Linkit"
|
msgstr "Linkit"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr "Käytä oletusasetuksia"
|
msgstr "Käytä oletusasetuksia"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -938,7 +943,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Tallenna"
|
msgstr "Tallenna"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1373,18 +1378,18 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "Ei voitu päivittää sinun sivusi ulkoasua."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr "Ei voitu tallentaa sinun ulkoasuasetuksia!"
|
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."
|
msgid "Design preferences saved."
|
||||||
msgstr "Ulkoasuasetukset tallennettu."
|
msgstr "Ulkoasuasetukset tallennettu."
|
||||||
|
|
||||||
@ -1703,7 +1708,7 @@ msgstr "Henkilökohtainen viesti"
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr "Voit myös lisätä oman viestisi kutsuun"
|
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"
|
msgid "Send"
|
||||||
msgstr "Lähetä"
|
msgstr "Lähetä"
|
||||||
|
|
||||||
@ -1808,11 +1813,11 @@ msgstr "Ei voitu poistaa käyttäjää %s ryhmästä %s"
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr "%s erosi ryhmästä %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."
|
msgid "Already logged in."
|
||||||
msgstr "Olet jo kirjautunut sisään."
|
msgstr "Olet jo kirjautunut sisään."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "Päivityksen sisältö ei kelpaa"
|
msgstr "Päivityksen sisältö ei kelpaa"
|
||||||
@ -2029,8 +2034,8 @@ msgstr "Yhdistä"
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr "Vain "
|
msgstr "Vain "
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr "Tuo ei ole tuettu tietomuoto."
|
msgstr "Tuo ei ole tuettu tietomuoto."
|
||||||
|
|
||||||
@ -4435,40 +4440,54 @@ msgstr "Ilmoitukset päällä."
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr "Ilmoituksia ei voi pistää päälle."
|
msgstr "Ilmoituksia ei voi pistää päälle."
|
||||||
|
|
||||||
#: lib/command.php: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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "Et ole tilannut tämän käyttäjän päivityksiä."
|
msgstr "Et ole tilannut tämän käyttäjän päivityksiä."
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "Olet jos tilannut seuraavien käyttäjien päivitykset:"
|
msgstr[0] "Olet jos tilannut seuraavien käyttäjien päivitykset:"
|
||||||
msgstr[1] "Olet jos tilannut seuraavien käyttäjien päivitykset:"
|
msgstr[1] "Olet jos tilannut seuraavien käyttäjien päivitykset:"
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "Toista ei voitu asettaa tilaamaan sinua."
|
msgstr "Toista ei voitu asettaa tilaamaan sinua."
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "Toista ei voitu asettaa tilaamaan sinua."
|
msgstr[0] "Toista ei voitu asettaa tilaamaan sinua."
|
||||||
msgstr[1] "Toista ei voitu asettaa tilaamaan sinua."
|
msgstr[1] "Toista ei voitu asettaa tilaamaan sinua."
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "Sinä et kuulu tähän ryhmään."
|
msgstr "Sinä et kuulu tähän ryhmään."
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "Sinä et kuulu tähän ryhmään."
|
msgstr[0] "Sinä et kuulu tähän ryhmään."
|
||||||
msgstr[1] "Sinä et kuulu tähän ryhmään."
|
msgstr[1] "Sinä et kuulu tähän ryhmään."
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4487,6 +4506,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4551,11 +4571,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"You can upload your personal background image. The maximum file size is 2MB."
|
||||||
msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s."
|
msgstr "Voit ladata oman profiilikuvasi. Maksimikoko on %s."
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5025,7 +5041,7 @@ msgstr "Lähetä suora viesti"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "Vastaanottaja"
|
msgstr "Vastaanottaja"
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "Sallitut merkit"
|
msgstr "Sallitut merkit"
|
||||||
|
|
||||||
@ -5038,11 +5054,11 @@ msgstr "Lähetä päivitys"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "Mitä teet juuri nyt, %s?"
|
msgstr "Mitä teet juuri nyt, %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5322,7 +5338,12 @@ msgstr "Toista ei voitu asettaa tilaamaan sinua."
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "Ei ole tilattu!."
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "Ei voitu poistaa tilausta."
|
msgstr "Ei voitu poistaa tilausta."
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -7,12 +7,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:19:42+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:26:33+0000\n"
|
||||||
"Language-Team: Irish\n"
|
"Language-Team: Irish\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: ga\n"
|
"X-Language-Code: ga\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -185,7 +185,12 @@ msgstr "O usuario non ten perfil."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "Non se puido gardar o perfil."
|
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."
|
msgid "Block user failed."
|
||||||
msgstr "Bloqueo de usuario fallido."
|
msgstr "Bloqueo de usuario fallido."
|
||||||
|
|
||||||
@ -580,7 +585,7 @@ msgstr ""
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -848,109 +853,109 @@ msgstr ""
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "Tamaño inválido."
|
msgstr "Tamaño inválido."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas"
|
msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Cambiar contrasinal"
|
msgstr "Cambiar contrasinal"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "Invitar"
|
msgstr "Invitar"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Modificado"
|
msgstr "Modificado"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Novo chío"
|
msgstr "Novo chío"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr "Podes actualizar a túa información do perfil persoal aquí"
|
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"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "Cambiar contrasinal"
|
msgstr "Cambiar contrasinal"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Conectar"
|
msgstr "Conectar"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Buscar"
|
msgstr "Buscar"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Texto"
|
msgstr "Texto"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "Lista"
|
msgstr "Lista"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -960,7 +965,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Gardar"
|
msgstr "Gardar"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1410,20 +1415,20 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "Non se puido actualizar o usuario."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr "Non se puideron gardar os teus axustes de Twitter!"
|
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
|
#, fuzzy
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "Preferencias gardadas."
|
msgstr "Preferencias gardadas."
|
||||||
@ -1743,7 +1748,7 @@ msgstr "Mensaxe persoal"
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr "Opcionalmente engadir unha mensaxe persoal á invitación."
|
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"
|
msgid "Send"
|
||||||
msgstr "Enviar"
|
msgstr "Enviar"
|
||||||
|
|
||||||
@ -1852,11 +1857,11 @@ msgstr "Non podes seguir a este usuario: o Usuario non se atopa."
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/login.php:79 actions/register.php:137
|
#: actions/login.php:82 actions/register.php:137
|
||||||
msgid "Already logged in."
|
msgid "Already logged in."
|
||||||
msgstr "Sesión xa iniciada"
|
msgstr "Sesión xa iniciada"
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "Contido do chío inválido"
|
msgstr "Contido do chío inválido"
|
||||||
@ -2072,8 +2077,8 @@ msgstr "Conectar"
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr "Non é un formato de datos soportado."
|
msgstr "Non é un formato de datos soportado."
|
||||||
|
|
||||||
@ -4528,12 +4533,26 @@ msgstr "Notificación habilitada."
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr "Non se pode activar a notificación."
|
msgstr "Non se pode activar a notificación."
|
||||||
|
|
||||||
#: lib/command.php: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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "Non estás suscrito a ese perfil"
|
msgstr "Non estás suscrito a ese perfil"
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "Xa estas suscrito a estes usuarios:"
|
msgstr[0] "Xa estas suscrito a estes usuarios:"
|
||||||
@ -4542,12 +4561,12 @@ msgstr[2] ""
|
|||||||
msgstr[3] ""
|
msgstr[3] ""
|
||||||
msgstr[4] ""
|
msgstr[4] ""
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "Outro usuario non se puido suscribir a ti."
|
msgstr "Outro usuario non se puido suscribir a ti."
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "Outro usuario non se puido suscribir a ti."
|
msgstr[0] "Outro usuario non se puido suscribir a ti."
|
||||||
@ -4556,12 +4575,12 @@ msgstr[2] ""
|
|||||||
msgstr[3] ""
|
msgstr[3] ""
|
||||||
msgstr[4] ""
|
msgstr[4] ""
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "Non estás suscrito a ese perfil"
|
msgstr "Non estás suscrito a ese perfil"
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "Non estás suscrito a ese perfil"
|
msgstr[0] "Non estás suscrito a ese perfil"
|
||||||
@ -4570,7 +4589,7 @@ msgstr[2] ""
|
|||||||
msgstr[3] ""
|
msgstr[3] ""
|
||||||
msgstr[4] ""
|
msgstr[4] ""
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
@ -4590,6 +4609,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4679,11 +4699,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"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í"
|
msgstr "Podes actualizar a túa información do perfil persoal aquí"
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5206,7 +5222,7 @@ msgstr "Eliminar chío"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "A"
|
msgstr "A"
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "6 ou máis caracteres"
|
msgstr "6 ou máis caracteres"
|
||||||
@ -5221,11 +5237,11 @@ msgstr "Dar un toque"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "¿Que pasa, %s?"
|
msgstr "¿Que pasa, %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5514,7 +5530,12 @@ msgstr "Outro usuario non se puido suscribir a ti."
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "Non está suscrito!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "Non se pode eliminar a subscrición."
|
msgstr "Non se pode eliminar a subscrición."
|
||||||
|
|
||||||
|
@ -7,12 +7,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:19:46+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:26:36+0000\n"
|
||||||
"Language-Team: Hebrew\n"
|
"Language-Team: Hebrew\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: he\n"
|
"X-Language-Code: he\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -183,7 +183,12 @@ msgstr "למשתמש אין פרופיל."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "שמירת הפרופיל נכשלה."
|
msgstr "שמירת הפרופיל נכשלה."
|
||||||
|
|
||||||
#: actions/apiblockcreate.php:108
|
#: actions/apiblockcreate.php:105
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot block yourself!"
|
||||||
|
msgstr "עידכון המשתמש נכשל."
|
||||||
|
|
||||||
|
#: actions/apiblockcreate.php:119
|
||||||
msgid "Block user failed."
|
msgid "Block user failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -574,7 +579,7 @@ msgstr ""
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -834,109 +839,109 @@ msgstr ""
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "גודל לא חוקי."
|
msgstr "גודל לא חוקי."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל"
|
msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "שנה סיסמה"
|
msgstr "שנה סיסמה"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "הודעה חדשה"
|
msgstr "הודעה חדשה"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "שנה"
|
msgstr "שנה"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "הודעה חדשה"
|
msgstr "הודעה חדשה"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות."
|
msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:452 lib/designsettings.php:139
|
#: actions/designadminpanel.php:457 lib/designsettings.php:139
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "שנה סיסמה"
|
msgstr "שנה סיסמה"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "התחבר"
|
msgstr "התחבר"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "חיפוש"
|
msgstr "חיפוש"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "טקסט"
|
msgstr "טקסט"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "היכנס"
|
msgstr "היכנס"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -946,7 +951,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "שמור"
|
msgstr "שמור"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1388,19 +1393,19 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "עידכון המשתמש נכשל."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
|
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "העדפות נשמרו."
|
msgstr "העדפות נשמרו."
|
||||||
@ -1715,7 +1720,7 @@ msgstr ""
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr ""
|
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"
|
msgid "Send"
|
||||||
msgstr "שלח"
|
msgstr "שלח"
|
||||||
|
|
||||||
@ -1797,11 +1802,11 @@ msgstr "נכשלה יצירת OpenID מתוך: %s"
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/login.php:79 actions/register.php:137
|
#: actions/login.php:82 actions/register.php:137
|
||||||
msgid "Already logged in."
|
msgid "Already logged in."
|
||||||
msgstr "כבר מחובר."
|
msgstr "כבר מחובר."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "תוכן ההודעה לא חוקי"
|
msgstr "תוכן ההודעה לא חוקי"
|
||||||
@ -2011,8 +2016,8 @@ msgstr "התחבר"
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4375,40 +4380,54 @@ msgstr ""
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr ""
|
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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "לא שלחנו אלינו את הפרופיל הזה"
|
msgstr "לא שלחנו אלינו את הפרופיל הזה"
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "לא שלחנו אלינו את הפרופיל הזה"
|
msgstr[0] "לא שלחנו אלינו את הפרופיל הזה"
|
||||||
msgstr[1] "לא שלחנו אלינו את הפרופיל הזה"
|
msgstr[1] "לא שלחנו אלינו את הפרופיל הזה"
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "הרשמה מרוחקת"
|
msgstr "הרשמה מרוחקת"
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "הרשמה מרוחקת"
|
msgstr[0] "הרשמה מרוחקת"
|
||||||
msgstr[1] "הרשמה מרוחקת"
|
msgstr[1] "הרשמה מרוחקת"
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "לא שלחנו אלינו את הפרופיל הזה"
|
msgstr "לא שלחנו אלינו את הפרופיל הזה"
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "לא שלחנו אלינו את הפרופיל הזה"
|
msgstr[0] "לא שלחנו אלינו את הפרופיל הזה"
|
||||||
msgstr[1] "לא שלחנו אלינו את הפרופיל הזה"
|
msgstr[1] "לא שלחנו אלינו את הפרופיל הזה"
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4427,6 +4446,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4490,11 +4510,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"You can upload your personal background image. The maximum file size is 2MB."
|
||||||
msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות."
|
msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות."
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4956,7 +4972,7 @@ msgstr ""
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "אל"
|
msgstr "אל"
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "לפחות 6 אותיות"
|
msgstr "לפחות 6 אותיות"
|
||||||
@ -4971,11 +4987,11 @@ msgstr "הודעה חדשה"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "מה המצב %s?"
|
msgstr "מה המצב %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5257,7 +5273,12 @@ msgstr ""
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "לא מנוי!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "מחיקת המנוי לא הצליחה."
|
msgstr "מחיקת המנוי לא הצליחה."
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -7,12 +7,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:19:52+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:26:42+0000\n"
|
||||||
"Language-Team: Icelandic\n"
|
"Language-Team: Icelandic\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: is\n"
|
"X-Language-Code: is\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -184,7 +184,12 @@ msgstr "Notandi hefur enga persónulega síðu."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "Gat ekki vistað persónulega síðu."
|
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."
|
msgid "Block user failed."
|
||||||
msgstr "Mistókst að loka á notanda."
|
msgstr "Mistókst að loka á notanda."
|
||||||
|
|
||||||
@ -569,7 +574,7 @@ msgstr "Skera af"
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -823,106 +828,106 @@ msgstr ""
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "Ótæk stærð."
|
msgstr "Ótæk stærð."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "Þessi síða er ekki aðgengileg í "
|
msgstr "Þessi síða er ekki aðgengileg í "
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Breyta"
|
msgstr "Breyta"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "Bjóða"
|
msgstr "Bjóða"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Breyta"
|
msgstr "Breyta"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Babl vefsíðunnar"
|
msgstr "Babl vefsíðunnar"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr "Skrá þig út af síðunni"
|
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"
|
msgid "Change background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn."
|
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"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Texti"
|
msgstr "Texti"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -932,7 +937,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Vista"
|
msgstr "Vista"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1365,18 +1370,18 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr ""
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
|
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1691,7 +1696,7 @@ msgstr "Persónuleg skilaboð"
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr "Bættu persónulegum skilaboðum við boðskortið ef þú vilt."
|
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"
|
msgid "Send"
|
||||||
msgstr "Senda"
|
msgstr "Senda"
|
||||||
|
|
||||||
@ -1797,11 +1802,11 @@ msgstr "Gat ekki fjarlægt notandann %s úr hópnum %s"
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr "%s gekk úr hópnum %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."
|
msgid "Already logged in."
|
||||||
msgstr "Þú hefur nú þegar skráð þig inn."
|
msgstr "Þú hefur nú þegar skráð þig inn."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "Ótækt bablinnihald"
|
msgstr "Ótækt bablinnihald"
|
||||||
@ -2017,8 +2022,8 @@ msgstr ""
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr "Enginn stuðningur við gagnasnið."
|
msgstr "Enginn stuðningur við gagnasnið."
|
||||||
|
|
||||||
@ -4396,40 +4401,54 @@ msgstr "Tilkynningar á."
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr "Get ekki kveikt á tilkynningum."
|
msgstr "Get ekki kveikt á tilkynningum."
|
||||||
|
|
||||||
#: lib/command.php: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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "Þú ert ekki áskrifandi."
|
msgstr "Þú ert ekki áskrifandi."
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "Þú ert nú þegar í áskrift að þessum notendum:"
|
msgstr[0] "Þú ert nú þegar í áskrift að þessum notendum:"
|
||||||
msgstr[1] "Þú ert nú þegar í áskrift að þessum notendum:"
|
msgstr[1] "Þú ert nú þegar í áskrift að þessum notendum:"
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér."
|
msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér."
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "Gat ekki leyft öðrum að gerast áskrifandi að þér."
|
msgstr[0] "Gat ekki leyft öðrum að gerast áskrifandi að þér."
|
||||||
msgstr[1] "Gat ekki leyft öðrum að gerast áskrifandi að þér."
|
msgstr[1] "Gat ekki leyft öðrum að gerast áskrifandi að þér."
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "Þú ert ekki meðlimur í þessum hópi."
|
msgstr "Þú ert ekki meðlimur í þessum hópi."
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "Þú ert ekki meðlimur í þessum hópi."
|
msgstr[0] "Þú ert ekki meðlimur í þessum hópi."
|
||||||
msgstr[1] "Þú ert ekki meðlimur í þessum hópi."
|
msgstr[1] "Þú ert ekki meðlimur í þessum hópi."
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4448,6 +4467,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4511,11 +4531,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"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."
|
msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn."
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4974,7 +4990,7 @@ msgstr "Senda bein skilaboð"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "Til"
|
msgstr "Til"
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "Leyfileg tákn"
|
msgstr "Leyfileg tákn"
|
||||||
|
|
||||||
@ -4987,11 +5003,11 @@ msgstr "Senda babl"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "Hvað er að frétta %s?"
|
msgstr "Hvað er að frétta %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5267,7 +5283,12 @@ msgstr "Gat ekki leyft öðrum að gerast áskrifandi að þér."
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "Ekki í áskrift!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "Gat ekki eytt áskrift."
|
msgstr "Gat ekki eytt áskrift."
|
||||||
|
|
||||||
|
@ -8,12 +8,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:19:56+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:26:45+0000\n"
|
||||||
"Language-Team: Italian\n"
|
"Language-Team: Italian\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: it\n"
|
"X-Language-Code: it\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -185,7 +185,12 @@ msgstr "L'utente non ha un profilo."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "Impossibile salvare il profilo."
|
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."
|
msgid "Block user failed."
|
||||||
msgstr "Blocco dell'utente non riuscito."
|
msgstr "Blocco dell'utente non riuscito."
|
||||||
|
|
||||||
@ -577,7 +582,7 @@ msgstr "Ritaglia"
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -838,110 +843,110 @@ msgstr ""
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "Dimensione non valida."
|
msgstr "Dimensione non valida."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "Questa pagina non è disponibile in un "
|
msgstr "Questa pagina non è disponibile in un "
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Modifica la tua password"
|
msgstr "Modifica la tua password"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "Invita"
|
msgstr "Invita"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Modifica"
|
msgstr "Modifica"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Messaggio del sito"
|
msgstr "Messaggio del sito"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr "Sconnettiti dal sito"
|
msgstr "Sconnettiti dal sito"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr "Puoi caricare un'immagine per il logo del tuo gruppo."
|
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"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "Modifica la tua password"
|
msgstr "Modifica la tua password"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Connetti"
|
msgstr "Connetti"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Ricerca"
|
msgstr "Ricerca"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Testo"
|
msgstr "Testo"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "Elenco"
|
msgstr "Elenco"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -951,7 +956,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Salva"
|
msgstr "Salva"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1400,20 +1405,20 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "Impossibile aggiornare l'utente."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr "Impossibile salvare le tue impostazioni di Twitter!"
|
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
|
#, fuzzy
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "Preferenze di sincronizzazione salvate."
|
msgstr "Preferenze di sincronizzazione salvate."
|
||||||
@ -1736,7 +1741,7 @@ msgstr "Messaggio personale"
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr "Puoi aggiungere un messaggio personale agli inviti."
|
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"
|
msgid "Send"
|
||||||
msgstr "Invia"
|
msgstr "Invia"
|
||||||
|
|
||||||
@ -1842,11 +1847,11 @@ msgstr "Impossibile rimuovere l'utente %s dal gruppo %s"
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr "%s ha lasciato il gruppo %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."
|
msgid "Already logged in."
|
||||||
msgstr "Accesso già effettuato."
|
msgstr "Accesso già effettuato."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "Contenuto del messaggio non valido"
|
msgstr "Contenuto del messaggio non valido"
|
||||||
@ -2060,8 +2065,8 @@ msgstr "Connetti"
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr "Non è un formato di dati supportato."
|
msgstr "Non è un formato di dati supportato."
|
||||||
|
|
||||||
@ -4466,40 +4471,54 @@ msgstr "Notifiche attivate."
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr "Impossibile attivare le notifiche."
|
msgstr "Impossibile attivare le notifiche."
|
||||||
|
|
||||||
#: lib/command.php: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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "Non sei abbonato a quel profilo."
|
msgstr "Non sei abbonato a quel profilo."
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "Sei già abbonato a questi utenti:"
|
msgstr[0] "Sei già abbonato a questi utenti:"
|
||||||
msgstr[1] "Sei già abbonato a questi utenti:"
|
msgstr[1] "Sei già abbonato a questi utenti:"
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "Impossibile abbonare altri a te."
|
msgstr "Impossibile abbonare altri a te."
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "Impossibile abbonare altri a te."
|
msgstr[0] "Impossibile abbonare altri a te."
|
||||||
msgstr[1] "Impossibile abbonare altri a te."
|
msgstr[1] "Impossibile abbonare altri a te."
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "Non sei un membro di quel gruppo."
|
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 "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "Non sei un membro di quel gruppo."
|
msgstr[0] "Non sei un membro di quel gruppo."
|
||||||
msgstr[1] "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 ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4518,6 +4537,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4582,11 +4602,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"You can upload your personal background image. The maximum file size is 2MB."
|
||||||
msgstr "Qui puoi caricare la tua immagine personale."
|
msgstr "Qui puoi caricare la tua immagine personale."
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5050,7 +5066,7 @@ msgstr "Invia un messaggio diretto"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "A"
|
msgstr "A"
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "Caratteri disponibili"
|
msgstr "Caratteri disponibili"
|
||||||
|
|
||||||
@ -5063,11 +5079,11 @@ msgstr "Invia un messaggio"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "Cosa succede, %s?"
|
msgstr "Cosa succede, %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5347,7 +5363,12 @@ msgstr "Impossibile abbonare altri a te."
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "Non abbonato!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "Impossibile eliminare l'abbonamento."
|
msgstr "Impossibile eliminare l'abbonamento."
|
||||||
|
|
||||||
|
@ -9,12 +9,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:19:59+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:26:48+0000\n"
|
||||||
"Language-Team: Japanese\n"
|
"Language-Team: Japanese\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: ja\n"
|
"X-Language-Code: ja\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -189,7 +189,12 @@ msgstr "プロファイルがありません。"
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "プロファイルを保存できません"
|
msgstr "プロファイルを保存できません"
|
||||||
|
|
||||||
#: actions/apiblockcreate.php:108
|
#: actions/apiblockcreate.php:105
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot block yourself!"
|
||||||
|
msgstr "ユーザを更新できません"
|
||||||
|
|
||||||
|
#: actions/apiblockcreate.php:119
|
||||||
msgid "Block user failed."
|
msgid "Block user failed."
|
||||||
msgstr "ユーザのブロックに失敗しました。"
|
msgstr "ユーザのブロックに失敗しました。"
|
||||||
|
|
||||||
@ -581,7 +586,7 @@ msgstr ""
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -839,109 +844,109 @@ msgstr ""
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "不正なサイズ。"
|
msgstr "不正なサイズ。"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "このページはあなたが承認したメディアタイプでは利用できません。"
|
msgstr "このページはあなたが承認したメディアタイプでは利用できません。"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "パスワードの変更"
|
msgstr "パスワードの変更"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "新しい通知"
|
msgstr "新しい通知"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "変更"
|
msgstr "変更"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "新しい通知"
|
msgstr "新しい通知"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr "サイトからログアウト"
|
msgstr "サイトからログアウト"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr "長すぎます。通知は最大 140 字までです。"
|
msgstr "長すぎます。通知は最大 140 字までです。"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:452 lib/designsettings.php:139
|
#: actions/designadminpanel.php:457 lib/designsettings.php:139
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "パスワードの変更"
|
msgstr "パスワードの変更"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "内容"
|
msgstr "内容"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "検索"
|
msgstr "検索"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "ログイン"
|
msgstr "ログイン"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -951,7 +956,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "保存"
|
msgstr "保存"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1396,19 +1401,19 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "ユーザを更新できません"
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
|
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "設定が保存されました。"
|
msgstr "設定が保存されました。"
|
||||||
@ -1722,7 +1727,7 @@ msgstr ""
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr ""
|
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"
|
msgid "Send"
|
||||||
msgstr "送る"
|
msgstr "送る"
|
||||||
|
|
||||||
@ -1830,11 +1835,11 @@ msgstr "OpenIDを作成できません : %s"
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/login.php:79 actions/register.php:137
|
#: actions/login.php:82 actions/register.php:137
|
||||||
msgid "Already logged in."
|
msgid "Already logged in."
|
||||||
msgstr "既にログインしています。"
|
msgstr "既にログインしています。"
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "不正な通知内容"
|
msgstr "不正な通知内容"
|
||||||
@ -2040,8 +2045,8 @@ msgstr "内容種別 "
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4417,37 +4422,51 @@ msgstr ""
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr ""
|
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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "そのプロファイルは送信されていません。"
|
msgstr "そのプロファイルは送信されていません。"
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "そのプロファイルは送信されていません。"
|
msgstr[0] "そのプロファイルは送信されていません。"
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "リモートサブスクライブ"
|
msgstr "リモートサブスクライブ"
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "リモートサブスクライブ"
|
msgstr[0] "リモートサブスクライブ"
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "そのプロファイルは送信されていません。"
|
msgstr "そのプロファイルは送信されていません。"
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "そのプロファイルは送信されていません。"
|
msgstr[0] "そのプロファイルは送信されていません。"
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4466,6 +4485,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4530,11 +4550,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"You can upload your personal background image. The maximum file size is 2MB."
|
||||||
msgstr "長すぎます。通知は最大 140 字までです。"
|
msgstr "長すぎます。通知は最大 140 字までです。"
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4989,7 +5005,7 @@ msgstr "直接通知を送る"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "利用可能な文字"
|
msgstr "利用可能な文字"
|
||||||
|
|
||||||
@ -5002,11 +5018,11 @@ msgstr "通知を送る"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "最近どう %s?"
|
msgstr "最近どう %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5284,7 +5300,12 @@ msgstr ""
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "購読していません!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "サブスクリプションを削除できません"
|
msgstr "サブスクリプションを削除できません"
|
||||||
|
|
||||||
|
@ -7,12 +7,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:20:03+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:26:51+0000\n"
|
||||||
"Language-Team: Korean\n"
|
"Language-Team: Korean\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: ko\n"
|
"X-Language-Code: ko\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -184,7 +184,12 @@ msgstr "이용자가 프로필을 가지고 있지 않습니다."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "프로필을 저장 할 수 없습니다."
|
msgstr "프로필을 저장 할 수 없습니다."
|
||||||
|
|
||||||
#: actions/apiblockcreate.php:108
|
#: actions/apiblockcreate.php:105
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot block yourself!"
|
||||||
|
msgstr "사용자를 업데이트 할 수 없습니다."
|
||||||
|
|
||||||
|
#: actions/apiblockcreate.php:119
|
||||||
msgid "Block user failed."
|
msgid "Block user failed."
|
||||||
msgstr "사용자 차단에 실패했습니다."
|
msgstr "사용자 차단에 실패했습니다."
|
||||||
|
|
||||||
@ -576,7 +581,7 @@ msgstr "자르기"
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -836,110 +841,110 @@ msgstr ""
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "옳지 않은 크기"
|
msgstr "옳지 않은 크기"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다."
|
msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "비밀번호 바꾸기"
|
msgstr "비밀번호 바꾸기"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "초대"
|
msgstr "초대"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "변환"
|
msgstr "변환"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "사이트 공지"
|
msgstr "사이트 공지"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr "이 사이트로부터 로그아웃"
|
msgstr "이 사이트로부터 로그아웃"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다."
|
msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:452 lib/designsettings.php:139
|
#: actions/designadminpanel.php:457 lib/designsettings.php:139
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "비밀번호 바꾸기"
|
msgstr "비밀번호 바꾸기"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "연결"
|
msgstr "연결"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "검색"
|
msgstr "검색"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "문자"
|
msgstr "문자"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "로그인"
|
msgstr "로그인"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -949,7 +954,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "저장"
|
msgstr "저장"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1393,20 +1398,20 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "사용자를 업데이트 할 수 없습니다."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr "트위터 환경설정을 저장할 수 없습니다."
|
msgstr "트위터 환경설정을 저장할 수 없습니다."
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
|
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "싱크설정이 저장되었습니다."
|
msgstr "싱크설정이 저장되었습니다."
|
||||||
@ -1722,7 +1727,7 @@ msgstr "개인적인 메시지"
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr "초대장에 메시지 첨부하기."
|
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"
|
msgid "Send"
|
||||||
msgstr "보내기"
|
msgstr "보내기"
|
||||||
|
|
||||||
@ -1823,11 +1828,11 @@ msgstr "그룹 %s에서 %s 사용자를 제거할 수 없습니다."
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr "%s가 그룹%s를 떠났습니다."
|
msgstr "%s가 그룹%s를 떠났습니다."
|
||||||
|
|
||||||
#: actions/login.php:79 actions/register.php:137
|
#: actions/login.php:82 actions/register.php:137
|
||||||
msgid "Already logged in."
|
msgid "Already logged in."
|
||||||
msgstr "이미 로그인 하셨습니다."
|
msgstr "이미 로그인 하셨습니다."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "옳지 않은 통지 내용"
|
msgstr "옳지 않은 통지 내용"
|
||||||
@ -2040,8 +2045,8 @@ msgstr "연결"
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr "지원하는 형식의 데이터가 아닙니다."
|
msgstr "지원하는 형식의 데이터가 아닙니다."
|
||||||
|
|
||||||
@ -4428,37 +4433,51 @@ msgstr "알림이 켜졌습니다."
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr "알림을 켤 수 없습니다."
|
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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "당신은 이 프로필에 구독되지 않고있습니다."
|
msgstr "당신은 이 프로필에 구독되지 않고있습니다."
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "당신은 다음 사용자를 이미 구독하고 있습니다."
|
msgstr[0] "당신은 다음 사용자를 이미 구독하고 있습니다."
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "다른 사람을 구독 하실 수 없습니다."
|
msgstr "다른 사람을 구독 하실 수 없습니다."
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "다른 사람을 구독 하실 수 없습니다."
|
msgstr[0] "다른 사람을 구독 하실 수 없습니다."
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "당신은 해당 그룹의 멤버가 아닙니다."
|
msgstr "당신은 해당 그룹의 멤버가 아닙니다."
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "당신은 해당 그룹의 멤버가 아닙니다."
|
msgstr[0] "당신은 해당 그룹의 멤버가 아닙니다."
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4477,6 +4496,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4541,11 +4561,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"You can upload your personal background image. The maximum file size is 2MB."
|
||||||
msgstr "당신의 개인적인 아바타를 업로드할 수 있습니다."
|
msgstr "당신의 개인적인 아바타를 업로드할 수 있습니다."
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5001,7 +5017,7 @@ msgstr "직접 메시지 보내기"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "에게"
|
msgstr "에게"
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "사용 가능한 글자"
|
msgstr "사용 가능한 글자"
|
||||||
|
|
||||||
@ -5014,11 +5030,11 @@ msgstr "게시글 보내기"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "뭐하세요? %?"
|
msgstr "뭐하세요? %?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5298,7 +5314,12 @@ msgstr "다른 사람을 구독 하실 수 없습니다."
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "구독하고 있지 않습니다!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "예약 구독을 삭제 할 수 없습니다."
|
msgstr "예약 구독을 삭제 할 수 없습니다."
|
||||||
|
|
||||||
|
@ -8,12 +8,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:20:07+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:26:55+0000\n"
|
||||||
"Language-Team: Macedonian\n"
|
"Language-Team: Macedonian\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: mk\n"
|
"X-Language-Code: mk\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -184,7 +184,12 @@ msgstr "Корисникот нема профил."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "Профилот не може да се сними."
|
msgstr "Профилот не може да се сними."
|
||||||
|
|
||||||
#: actions/apiblockcreate.php:108
|
#: actions/apiblockcreate.php:105
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot block yourself!"
|
||||||
|
msgstr "Корисникот не може да се освежи/"
|
||||||
|
|
||||||
|
#: actions/apiblockcreate.php:119
|
||||||
msgid "Block user failed."
|
msgid "Block user failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -574,7 +579,7 @@ msgstr ""
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -676,7 +681,7 @@ msgstr ""
|
|||||||
#: actions/block.php:143 actions/deletenotice.php:145
|
#: actions/block.php:143 actions/deletenotice.php:145
|
||||||
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
#: actions/deleteuser.php:147 actions/groupblock.php:178
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr ""
|
msgstr "Не"
|
||||||
|
|
||||||
#: actions/block.php:143 actions/deleteuser.php:147
|
#: actions/block.php:143 actions/deleteuser.php:147
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
@ -832,109 +837,109 @@ msgstr ""
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "Погрешна големина."
|
msgstr "Погрешна големина."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате."
|
msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Промени ја лозинката"
|
msgstr "Промени ја лозинката"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "Ново известување"
|
msgstr "Ново известување"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Промени"
|
msgstr "Промени"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Ново известување"
|
msgstr "Ново известување"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr "Ова е предолго. Максималната должина е 140 знаци."
|
msgstr "Ова е предолго. Максималната должина е 140 знаци."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:452 lib/designsettings.php:139
|
#: actions/designadminpanel.php:457 lib/designsettings.php:139
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "Промени ја лозинката"
|
msgstr "Промени ја лозинката"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Поврзи се"
|
msgstr "Поврзи се"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Барај"
|
msgstr "Барај"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "Пријави се"
|
msgstr "Пријави се"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -944,7 +949,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Сними"
|
msgstr "Сними"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1384,19 +1389,19 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "Корисникот не може да се освежи/"
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
|
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "Преференциите се снимени."
|
msgstr "Преференциите се снимени."
|
||||||
@ -1712,7 +1717,7 @@ msgstr ""
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr ""
|
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"
|
msgid "Send"
|
||||||
msgstr "Испрати"
|
msgstr "Испрати"
|
||||||
|
|
||||||
@ -1794,11 +1799,11 @@ msgstr "OpenID формуларот не може да се креира:%s"
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/login.php:79 actions/register.php:137
|
#: actions/login.php:82 actions/register.php:137
|
||||||
msgid "Already logged in."
|
msgid "Already logged in."
|
||||||
msgstr "Веќе сте најавени."
|
msgstr "Веќе сте најавени."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "Неправилна содржина за известување"
|
msgstr "Неправилна содржина за известување"
|
||||||
@ -2010,8 +2015,8 @@ msgstr "Поврзи се"
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4386,40 +4391,54 @@ msgstr ""
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr ""
|
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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "Не ни го испративте тој профил."
|
msgstr "Не ни го испративте тој профил."
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "Не ни го испративте тој профил."
|
msgstr[0] "Не ни го испративте тој профил."
|
||||||
msgstr[1] "Не ни го испративте тој профил."
|
msgstr[1] "Не ни го испративте тој профил."
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "Оддалечена претплата"
|
msgstr "Оддалечена претплата"
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "Оддалечена претплата"
|
msgstr[0] "Оддалечена претплата"
|
||||||
msgstr[1] "Оддалечена претплата"
|
msgstr[1] "Оддалечена претплата"
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "Не ни го испративте тој профил."
|
msgstr "Не ни го испративте тој профил."
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "Не ни го испративте тој профил."
|
msgstr[0] "Не ни го испративте тој профил."
|
||||||
msgstr[1] "Не ни го испративте тој профил."
|
msgstr[1] "Не ни го испративте тој профил."
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4438,6 +4457,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4501,11 +4521,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"You can upload your personal background image. The maximum file size is 2MB."
|
||||||
msgstr "Ова е предолго. Максималната должина е 140 знаци."
|
msgstr "Ова е предолго. Максималната должина е 140 знаци."
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4968,7 +4984,7 @@ msgstr ""
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "6 или повеќе знаци"
|
msgstr "6 или повеќе знаци"
|
||||||
@ -4983,11 +4999,11 @@ msgstr "Ново известување"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "Што има %s?"
|
msgstr "Што има %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5266,7 +5282,12 @@ msgstr ""
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "Не сте претплатени!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "Претплата не може да се избрише."
|
msgstr "Претплата не може да се избрише."
|
||||||
|
|
||||||
|
@ -7,12 +7,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:20:10+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:26:58+0000\n"
|
||||||
"Language-Team: Norwegian (bokmål)\n"
|
"Language-Team: Norwegian (bokmål)\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: no\n"
|
"X-Language-Code: no\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -183,7 +183,12 @@ msgstr ""
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "Klarte ikke å lagre profil."
|
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."
|
msgid "Block user failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -572,7 +577,7 @@ msgstr ""
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -828,108 +833,108 @@ msgstr ""
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "Ugyldig størrelse"
|
msgstr "Ugyldig størrelse"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Endre passordet ditt"
|
msgstr "Endre passordet ditt"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Endre"
|
msgstr "Endre"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Endre"
|
msgstr "Endre"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:452 lib/designsettings.php:139
|
#: actions/designadminpanel.php:457 lib/designsettings.php:139
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "Endre passordet ditt"
|
msgstr "Endre passordet ditt"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Koble til"
|
msgstr "Koble til"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Søk"
|
msgstr "Søk"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Tekst"
|
msgstr "Tekst"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "Logg inn"
|
msgstr "Logg inn"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -939,7 +944,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Lagre"
|
msgstr "Lagre"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1374,19 +1379,19 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "Klarte ikke å oppdatere bruker."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
|
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1689,7 +1694,7 @@ msgstr ""
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr ""
|
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"
|
msgid "Send"
|
||||||
msgstr "Send"
|
msgstr "Send"
|
||||||
|
|
||||||
@ -1791,11 +1796,11 @@ msgstr "Klarte ikke å oppdatere bruker."
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/login.php:79 actions/register.php:137
|
#: actions/login.php:82 actions/register.php:137
|
||||||
msgid "Already logged in."
|
msgid "Already logged in."
|
||||||
msgstr "Allerede innlogget."
|
msgstr "Allerede innlogget."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1998,8 +2003,8 @@ msgstr ""
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4330,40 +4335,54 @@ msgstr ""
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr ""
|
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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "Ikke autorisert."
|
msgstr "Ikke autorisert."
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "Ikke autorisert."
|
msgstr[0] "Ikke autorisert."
|
||||||
msgstr[1] "Ikke autorisert."
|
msgstr[1] "Ikke autorisert."
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "Svar til %s"
|
msgstr "Svar til %s"
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "Svar til %s"
|
msgstr[0] "Svar til %s"
|
||||||
msgstr[1] "Svar til %s"
|
msgstr[1] "Svar til %s"
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "Du er allerede logget inn!"
|
msgstr "Du er allerede logget inn!"
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "Du er allerede logget inn!"
|
msgstr[0] "Du er allerede logget inn!"
|
||||||
msgstr[1] "Du er allerede logget inn!"
|
msgstr[1] "Du er allerede logget inn!"
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4382,6 +4401,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4444,11 +4464,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"You can upload your personal background image. The maximum file size is 2MB."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4910,7 +4926,7 @@ msgstr ""
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "6 eller flere tegn"
|
msgstr "6 eller flere tegn"
|
||||||
@ -4924,11 +4940,11 @@ msgstr ""
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5204,7 +5220,12 @@ msgstr ""
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "Alle abonnementer"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -9,12 +9,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:20:26+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:27:06+0000\n"
|
||||||
"Language-Team: Dutch\n"
|
"Language-Team: Dutch\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: nl\n"
|
"X-Language-Code: nl\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -192,7 +192,11 @@ msgstr "Deze gebruiker heeft geen profiel."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "Het was niet mogelijk het profiel op te slaan."
|
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."
|
msgid "Block user failed."
|
||||||
msgstr "Het blokkeren van de gebruiker is mislukt."
|
msgstr "Het blokkeren van de gebruiker is mislukt."
|
||||||
|
|
||||||
@ -582,7 +586,7 @@ msgstr "Uitsnijden"
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -839,45 +843,45 @@ msgstr "Ontwerp"
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr "Instellingen voor de vormgeving van deze StatusNet-website."
|
msgstr "Instellingen voor de vormgeving van deze StatusNet-website."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "De logo-URL is ongeldig."
|
msgstr "De logo-URL is ongeldig."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "De vormgeving is niet beschikbaar: %s"
|
msgstr "De vormgeving is niet beschikbaar: %s"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Logo wijzigen"
|
msgstr "Logo wijzigen"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "Websitelogo"
|
msgstr "Websitelogo"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Vormgeving wijzigen"
|
msgstr "Vormgeving wijzigen"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Vormgeving website"
|
msgstr "Vormgeving website"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr "Mogelijke vormgevingen voor deze website."
|
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"
|
msgid "Change background image"
|
||||||
msgstr "Achtergrondafbeelding wijzigen"
|
msgstr "Achtergrondafbeelding wijzigen"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr "Achtergrond"
|
msgstr "Achtergrond"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"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 "
|
"Hier kunt u een achtergrondafbeelding voor de website uploaden. De maximale "
|
||||||
"bestandsgrootte is %1$s."
|
"bestandsgrootte is %1$s."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:452 lib/designsettings.php:139
|
#: actions/designadminpanel.php:457 lib/designsettings.php:139
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "Aan"
|
msgstr "Aan"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "Uit"
|
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."
|
msgid "Turn background image on or off."
|
||||||
msgstr "Achtergrondafbeelding inschakelen of uitschakelen."
|
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"
|
msgid "Tile background image"
|
||||||
msgstr "Achtergrondafbeelding naast elkaar"
|
msgstr "Achtergrondafbeelding naast elkaar"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "Kleuren wijzigen"
|
msgstr "Kleuren wijzigen"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Inhoud"
|
msgstr "Inhoud"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Menubalk"
|
msgstr "Menubalk"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Tekst"
|
msgstr "Tekst"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "Verwijzingen"
|
msgstr "Verwijzingen"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr "Standaardinstellingen gebruiken"
|
msgstr "Standaardinstellingen gebruiken"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr "Standaardontwerp toepassen"
|
msgstr "Standaardontwerp toepassen"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr "Standaardinstellingen toepassen"
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -944,7 +948,7 @@ msgstr "Standaardinstellingen toepassen"
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Opslaan"
|
msgstr "Opslaan"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr "Ontwerp opslaan"
|
msgstr "Ontwerp opslaan"
|
||||||
|
|
||||||
@ -1391,18 +1395,18 @@ msgstr ""
|
|||||||
"De vormgeving van uw groep aanpassen met een achtergrondafbeeldingen en een "
|
"De vormgeving van uw groep aanpassen met een achtergrondafbeeldingen en een "
|
||||||
"kleurenpalet van uw keuze."
|
"kleurenpalet van uw keuze."
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "Het was niet mogelijk uw ontwerp bij te werken."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr "Het was niet mogelijk om uw ontwerpinstellingen op te slaan!"
|
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."
|
msgid "Design preferences saved."
|
||||||
msgstr "De ontwerpvoorkeuren zijn opgeslagen."
|
msgstr "De ontwerpvoorkeuren zijn opgeslagen."
|
||||||
|
|
||||||
@ -1732,7 +1736,7 @@ msgstr "Persoonlijk bericht"
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr "Persoonlijk bericht bij de uitnodiging (optioneel)."
|
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"
|
msgid "Send"
|
||||||
msgstr "Verzenden"
|
msgstr "Verzenden"
|
||||||
|
|
||||||
@ -1838,11 +1842,11 @@ msgstr "De gebruiker %s kon niet uit de groet %s verwijderd worden"
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr "%s heeft de groep %s verlaten"
|
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."
|
msgid "Already logged in."
|
||||||
msgstr "U bent al aangemeld."
|
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."
|
msgid "Invalid or expired token."
|
||||||
msgstr "Het token is ongeldig of verlopen."
|
msgstr "Het token is ongeldig of verlopen."
|
||||||
|
|
||||||
@ -2058,8 +2062,8 @@ msgstr "inhoudstype "
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr "Alleen "
|
msgstr "Alleen "
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr "Geen ondersteund gegevensformaat."
|
msgstr "Geen ondersteund gegevensformaat."
|
||||||
|
|
||||||
@ -2854,11 +2858,10 @@ msgid "Invalid profile URL (bad format)"
|
|||||||
msgstr "Ongeldige profiel-URL (foutieve opmaak)"
|
msgstr "Ongeldige profiel-URL (foutieve opmaak)"
|
||||||
|
|
||||||
#: actions/remotesubscribe.php:168
|
#: actions/remotesubscribe.php:168
|
||||||
#, fuzzy
|
|
||||||
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
|
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"De URL voor het profiel is niet geldig (het is geen YADIS-document of er is "
|
"De URL is niet geldig (het is geen YADIS-document of er een ongeldige XRDS "
|
||||||
"geen of ongeldige XRDS gedefinieerd)."
|
"gedefinieerd)."
|
||||||
|
|
||||||
#: actions/remotesubscribe.php:176
|
#: actions/remotesubscribe.php:176
|
||||||
msgid "That’s a local profile! Login to subscribe."
|
msgid "That’s a local profile! Login to subscribe."
|
||||||
@ -4492,37 +4495,51 @@ msgstr "Notificaties ingeschakeld."
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr "Het is niet mogelijk de notificatie uit te schakelen."
|
msgstr "Het is niet mogelijk de notificatie uit te schakelen."
|
||||||
|
|
||||||
#: lib/command.php: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."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "U bent op geen enkele gebruiker geabonneerd."
|
msgstr "U bent op geen enkele gebruiker geabonneerd."
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "U bent geabonneerd op deze gebruiker:"
|
msgstr[0] "U bent geabonneerd op deze gebruiker:"
|
||||||
msgstr[1] "U bent geabonneerd op deze gebruikers:"
|
msgstr[1] "U bent geabonneerd op deze gebruikers:"
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "Niemand heeft een abonnenment op u."
|
msgstr "Niemand heeft een abonnenment op u."
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "Deze gebruiker is op u geabonneerd:"
|
msgstr[0] "Deze gebruiker is op u geabonneerd:"
|
||||||
msgstr[1] "Deze gebruikers zijn op u geabonneerd:"
|
msgstr[1] "Deze gebruikers zijn op u geabonneerd:"
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "U bent lid van geen enkele groep."
|
msgstr "U bent lid van geen enkele groep."
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "U bent lid van deze groep:"
|
msgstr[0] "U bent lid van deze groep:"
|
||||||
msgstr[1] "U bent lid van deze groepen:"
|
msgstr[1] "U bent lid van deze groepen:"
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
@ -4542,6 +4559,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4579,7 +4597,6 @@ msgstr ""
|
|||||||
"reply #<mededeling-ID> - antwoorden op de mededeling met het aangegeven ID\n"
|
"reply #<mededeling-ID> - antwoorden op de mededeling met het aangegeven ID\n"
|
||||||
"reply <gebruiker> - antwoorden op de laatste mededeling van gebruiker\n"
|
"reply <gebruiker> - antwoorden op de laatste mededeling van gebruiker\n"
|
||||||
"join <groep> - lid worden van groep\n"
|
"join <groep> - lid worden van groep\n"
|
||||||
"login - verwijzing opvragen naar de webpagina voor aanmelden\n"
|
|
||||||
"drop <groep> - groepslidmaatschap opzeggen\n"
|
"drop <groep> - groepslidmaatschap opzeggen\n"
|
||||||
"stats - uw statistieken opvragen\n"
|
"stats - uw statistieken opvragen\n"
|
||||||
"stop - zelfde als 'off'\n"
|
"stop - zelfde als 'off'\n"
|
||||||
@ -4642,11 +4659,7 @@ msgstr ""
|
|||||||
"U kunt een persoonlijke achtergrondafbeelding uploaden. De maximale "
|
"U kunt een persoonlijke achtergrondafbeelding uploaden. De maximale "
|
||||||
"bestandsgrootte is 2 megabyte."
|
"bestandsgrootte is 2 megabyte."
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr "Foutieve standaard kleurinstellingen: "
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr "Het standaardontwerp is weer ingesteld."
|
msgstr "Het standaardontwerp is weer ingesteld."
|
||||||
|
|
||||||
@ -5187,7 +5200,7 @@ msgstr "Directe mededeling verzenden"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "Aan"
|
msgstr "Aan"
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "Beschikbare tekens"
|
msgstr "Beschikbare tekens"
|
||||||
|
|
||||||
@ -5200,11 +5213,11 @@ msgstr "Mededeling verzenden"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "Hallo, %s."
|
msgstr "Hallo, %s."
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr "Toevoegen"
|
msgstr "Toevoegen"
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr "Bestand toevoegen"
|
msgstr "Bestand toevoegen"
|
||||||
|
|
||||||
@ -5472,7 +5485,11 @@ msgstr "Het was niet mogelijk om een ander op u te laten abonneren"
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "Niet geabonneerd!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "Kon abonnement niet verwijderen."
|
msgstr "Kon abonnement niet verwijderen."
|
||||||
|
|
||||||
|
@ -7,12 +7,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:20:13+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:27:01+0000\n"
|
||||||
"Language-Team: Norwegian Nynorsk\n"
|
"Language-Team: Norwegian Nynorsk\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: nn\n"
|
"X-Language-Code: nn\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -184,7 +184,12 @@ msgstr "Brukaren har inga profil."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "Kan ikkje lagra profil."
|
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."
|
msgid "Block user failed."
|
||||||
msgstr "Blokkering av brukar feila."
|
msgstr "Blokkering av brukar feila."
|
||||||
|
|
||||||
@ -574,7 +579,7 @@ msgstr "Skaler"
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -835,110 +840,110 @@ msgstr ""
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "Ugyldig storleik."
|
msgstr "Ugyldig storleik."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "Denne sida er ikkje tilgjengleg i eit"
|
msgstr "Denne sida er ikkje tilgjengleg i eit"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Endra passordet ditt"
|
msgstr "Endra passordet ditt"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "Invitér"
|
msgstr "Invitér"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Endra"
|
msgstr "Endra"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Statusmelding"
|
msgstr "Statusmelding"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr "Logg ut or sida"
|
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"
|
msgid "Change background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr "Du kan lasta opp ein logo for gruppa."
|
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"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "Endra passordet ditt"
|
msgstr "Endra passordet ditt"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Kopla til"
|
msgstr "Kopla til"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Søk"
|
msgstr "Søk"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Tekst"
|
msgstr "Tekst"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "Logg inn"
|
msgstr "Logg inn"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -948,7 +953,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Lagra"
|
msgstr "Lagra"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1393,20 +1398,20 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "Kan ikkje oppdatera brukar."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!"
|
msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!"
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
|
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "Synkroniserings innstillingar blei lagra."
|
msgstr "Synkroniserings innstillingar blei lagra."
|
||||||
@ -1724,7 +1729,7 @@ msgstr "Personleg melding"
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr "Eventuelt legg til ei personleg melding til invitasjonen."
|
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"
|
msgid "Send"
|
||||||
msgstr "Send"
|
msgstr "Send"
|
||||||
|
|
||||||
@ -1825,11 +1830,11 @@ msgstr "Kunne ikkje fjerne %s fra %s gruppa "
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr "%s forlot %s gruppa"
|
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."
|
msgid "Already logged in."
|
||||||
msgstr "Allereie logga inn."
|
msgstr "Allereie logga inn."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "Ugyldig notisinnhald"
|
msgstr "Ugyldig notisinnhald"
|
||||||
@ -2045,8 +2050,8 @@ msgstr "Kopla til"
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr "Ikkje eit støtta dataformat."
|
msgstr "Ikkje eit støtta dataformat."
|
||||||
|
|
||||||
@ -4445,40 +4450,54 @@ msgstr "Notifikasjon på."
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr "Kan ikkje slå på notifikasjon."
|
msgstr "Kan ikkje slå på notifikasjon."
|
||||||
|
|
||||||
#: lib/command.php: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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "Du tingar ikkje oppdateringar til den profilen."
|
msgstr "Du tingar ikkje oppdateringar til den profilen."
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "Du tingar allereie oppdatering frå desse brukarane:"
|
msgstr[0] "Du tingar allereie oppdatering frå desse brukarane:"
|
||||||
msgstr[1] "Du tingar allereie oppdatering frå desse brukarane:"
|
msgstr[1] "Du tingar allereie oppdatering frå desse brukarane:"
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "Kan ikkje tinga andre til deg."
|
msgstr "Kan ikkje tinga andre til deg."
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "Kan ikkje tinga andre til deg."
|
msgstr[0] "Kan ikkje tinga andre til deg."
|
||||||
msgstr[1] "Kan ikkje tinga andre til deg."
|
msgstr[1] "Kan ikkje tinga andre til deg."
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "Du er ikkje medlem av den gruppa."
|
msgstr "Du er ikkje medlem av den gruppa."
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "Du er ikkje medlem av den gruppa."
|
msgstr[0] "Du er ikkje medlem av den gruppa."
|
||||||
msgstr[1] "Du er ikkje medlem av den gruppa."
|
msgstr[1] "Du er ikkje medlem av den gruppa."
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4497,6 +4516,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4561,11 +4581,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"You can upload your personal background image. The maximum file size is 2MB."
|
||||||
msgstr "Du kan laste opp ein personleg avatar."
|
msgstr "Du kan laste opp ein personleg avatar."
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5028,7 +5044,7 @@ msgstr "Send ei direkte melding"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "Til"
|
msgstr "Til"
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "Tilgjenglege teikn"
|
msgstr "Tilgjenglege teikn"
|
||||||
|
|
||||||
@ -5041,11 +5057,11 @@ msgstr "Send ei melding"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "Kva skjer, %s?"
|
msgstr "Kva skjer, %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5325,7 +5341,12 @@ msgstr "Kan ikkje tinga andre til deg."
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "Ikkje tinga."
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "Kan ikkje sletta tinging."
|
msgstr "Kan ikkje sletta tinging."
|
||||||
|
|
||||||
|
@ -9,8 +9,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:20:31+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:27:09+0000\n"
|
||||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||||
"Language-Team: Polish <pl@li.org>\n"
|
"Language-Team: Polish <pl@li.org>\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
@ -18,7 +18,7 @@ msgstr ""
|
|||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||||
"|| n%100>=20) ? 1 : 2);\n"
|
"|| n%100>=20) ? 1 : 2);\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: pl\n"
|
"X-Language-Code: pl\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -194,7 +194,12 @@ msgstr "Użytkownik nie posiada profilu."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "Nie można zapisać profilu."
|
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."
|
msgid "Block user failed."
|
||||||
msgstr "Zablokowanie użytkownika nie powiodło się."
|
msgstr "Zablokowanie użytkownika nie powiodło się."
|
||||||
|
|
||||||
@ -576,7 +581,7 @@ msgstr "Przytnij"
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -828,100 +833,100 @@ msgstr "Wygląd"
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr "Ustawienia wyglądu tej strony StatusNet."
|
msgstr "Ustawienia wyglądu tej strony StatusNet."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "Nieprawidłowy adres URL logo."
|
msgstr "Nieprawidłowy adres URL logo."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "Motyw nie jest dostępny: %s"
|
msgstr "Motyw nie jest dostępny: %s"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Zmień logo"
|
msgstr "Zmień logo"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "Logo strony"
|
msgstr "Logo strony"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Zmień motyw"
|
msgstr "Zmień motyw"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Motyw strony"
|
msgstr "Motyw strony"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr "Motyw strony."
|
msgstr "Motyw strony."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr "Zmień obraz tła"
|
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
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr "Tło"
|
msgstr "Tło"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr "Można wysłać obraz tła dla strony. Maksymalny rozmiar pliku to %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"
|
msgid "On"
|
||||||
msgstr "Włączone"
|
msgstr "Włączone"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "Wyłączone"
|
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."
|
msgid "Turn background image on or off."
|
||||||
msgstr "Włącz lub wyłącz obraz tła."
|
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"
|
msgid "Tile background image"
|
||||||
msgstr "Kafelkowy obraz tła"
|
msgstr "Kafelkowy obraz tła"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "Zmień kolory"
|
msgstr "Zmień kolory"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Zawartość"
|
msgstr "Zawartość"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Panel boczny"
|
msgstr "Panel boczny"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Tekst"
|
msgstr "Tekst"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "Odnośniki"
|
msgstr "Odnośniki"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr "Użycie domyślnych"
|
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"
|
msgid "Restore default designs"
|
||||||
msgstr "Przywróć domyślny wygląd"
|
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"
|
msgid "Reset back to default"
|
||||||
msgstr "Przywróć domyślne ustawienia"
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -931,7 +936,7 @@ msgstr "Przywróć domyślne ustawienia"
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Zapisz"
|
msgstr "Zapisz"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr "Zapisz wygląd"
|
msgstr "Zapisz wygląd"
|
||||||
|
|
||||||
@ -1368,18 +1373,18 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr "Dostosuj wygląd grupy za pomocą wybranego obrazu tła i palety kolorów."
|
msgstr "Dostosuj wygląd grupy za pomocą wybranego obrazu tła i palety kolorów."
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "Nie można zaktualizować wyglądu."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr "Nie można zapisać ustawień wyglądu."
|
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."
|
msgid "Design preferences saved."
|
||||||
msgstr "Zapisano preferencje wyglądu."
|
msgstr "Zapisano preferencje wyglądu."
|
||||||
|
|
||||||
@ -1703,7 +1708,7 @@ msgstr "Osobista wiadomość"
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr "Opcjonalnie dodaj osobistą wiadomość do zaproszenia."
|
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"
|
msgid "Send"
|
||||||
msgstr "Wyślij"
|
msgstr "Wyślij"
|
||||||
|
|
||||||
@ -1809,11 +1814,11 @@ msgstr "Nie można usunąć użytkownika %s z grupy %s"
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr "Użytkownik %s opuścił grupę %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."
|
msgid "Already logged in."
|
||||||
msgstr "Jesteś już zalogowany."
|
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."
|
msgid "Invalid or expired token."
|
||||||
msgstr "Nieprawidłowy lub wygasły token."
|
msgstr "Nieprawidłowy lub wygasły token."
|
||||||
|
|
||||||
@ -2029,8 +2034,8 @@ msgstr "typ zawartości "
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr "Tylko "
|
msgstr "Tylko "
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr "To nie jest obsługiwany format danych."
|
msgstr "To nie jest obsługiwany format danych."
|
||||||
|
|
||||||
@ -2818,7 +2823,7 @@ msgstr "Nieprawidłowy adres URL profilu (błędny format)"
|
|||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
|
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
|
||||||
msgstr ""
|
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)."
|
"nieprawidłowe XRDS)."
|
||||||
|
|
||||||
#: actions/remotesubscribe.php:176
|
#: actions/remotesubscribe.php:176
|
||||||
@ -4432,40 +4437,54 @@ msgstr "Włączono powiadomienia."
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr "Nie można włączyć powiadomień."
|
msgstr "Nie można włączyć powiadomień."
|
||||||
|
|
||||||
#: lib/command.php: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."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "Nie subskrybujesz nikogo."
|
msgstr "Nie subskrybujesz nikogo."
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "Subskrybujesz tę osobę:"
|
msgstr[0] "Subskrybujesz tę osobę:"
|
||||||
msgstr[1] "Subskrybujesz te osoby:"
|
msgstr[1] "Subskrybujesz te osoby:"
|
||||||
msgstr[2] "Subskrybujesz te osoby:"
|
msgstr[2] "Subskrybujesz te osoby:"
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "Nikt cię nie subskrybuje."
|
msgstr "Nikt cię nie subskrybuje."
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "Ta osoba cię subskrybuje:"
|
msgstr[0] "Ta osoba cię subskrybuje:"
|
||||||
msgstr[1] "Te osoby cię subskrybują:"
|
msgstr[1] "Te osoby cię subskrybują:"
|
||||||
msgstr[2] "Te osoby cię subskrybują:"
|
msgstr[2] "Te osoby cię subskrybują:"
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "Nie jesteś członkiem żadnej grupy."
|
msgstr "Nie jesteś członkiem żadnej grupy."
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "Jesteś członkiem tej grupy:"
|
msgstr[0] "Jesteś członkiem tej grupy:"
|
||||||
msgstr[1] "Jesteś członkiem tych grup:"
|
msgstr[1] "Jesteś członkiem tych grup:"
|
||||||
msgstr[2] "Jesteś członkiem tych grup:"
|
msgstr[2] "Jesteś członkiem tych grup:"
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
@ -4485,6 +4504,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4521,9 +4541,8 @@ msgstr ""
|
|||||||
"reply #<identyfikator_wpisu> - odpowiada na wpis z podanym identyfikatorem\n"
|
"reply #<identyfikator_wpisu> - odpowiada na wpis z podanym identyfikatorem\n"
|
||||||
"reply <pseudonim> - odpowiada na ostatni wpis użytkownika\n"
|
"reply <pseudonim> - odpowiada na ostatni wpis użytkownika\n"
|
||||||
"join <grupa> - dołącza do grupy\n"
|
"join <grupa> - dołącza do grupy\n"
|
||||||
"login - uzyskuje odnośnik do zalogowania się w interfejsie WWW\n"
|
|
||||||
"drop <grupa> - opuszcza grupę\n"
|
"drop <grupa> - opuszcza grupę\n"
|
||||||
"stats - uzyskuje twoje statystyki\n"
|
"stats - uzyskuje statystyki\n"
|
||||||
"stop - to samo co \"off\"\n"
|
"stop - to samo co \"off\"\n"
|
||||||
"quit - to samo co \"off\"\n"
|
"quit - to samo co \"off\"\n"
|
||||||
"sub <pseudonim> - to samo co \"follow\"\n"
|
"sub <pseudonim> - to samo co \"follow\"\n"
|
||||||
@ -4531,10 +4550,10 @@ msgstr ""
|
|||||||
"last <pseudonim> - to samo co \"get\"\n"
|
"last <pseudonim> - to samo co \"get\"\n"
|
||||||
"on <pseudonim> - jeszcze nie zaimplementowano.\n"
|
"on <pseudonim> - jeszcze nie zaimplementowano.\n"
|
||||||
"off <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"
|
"invite <numer telefonu> - jeszcze nie zaimplementowano.\n"
|
||||||
"track <słowo> - jeszcze nie zaimplementowano.\n"
|
"track <wyraz> - jeszcze nie zaimplementowano.\n"
|
||||||
"untrack <słowo> - jeszcze nie zaimplementowano.\n"
|
"untrack <wyraz> - jeszcze nie zaimplementowano.\n"
|
||||||
"track off - jeszcze nie zaimplementowano.\n"
|
"track off - jeszcze nie zaimplementowano.\n"
|
||||||
"untrack all - jeszcze nie zaimplementowano.\n"
|
"untrack all - jeszcze nie zaimplementowano.\n"
|
||||||
"tracks - 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."
|
"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."
|
msgstr "Można wysłać osobisty obraz tła. Maksymalny rozmiar pliku to 2 MB."
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr "Błędne domyślne ustawienia koloru: "
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr "Przywrócono domyślny wygląd."
|
msgstr "Przywrócono domyślny wygląd."
|
||||||
|
|
||||||
@ -5123,7 +5138,7 @@ msgstr "Wyślij bezpośredni wpis"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "Do"
|
msgstr "Do"
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "Dostępne znaki"
|
msgstr "Dostępne znaki"
|
||||||
|
|
||||||
@ -5136,11 +5151,11 @@ msgstr "Wyślij wpis"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "Co słychać, %s?"
|
msgstr "Co słychać, %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr "Załącz"
|
msgstr "Załącz"
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr "Załącz plik"
|
msgstr "Załącz plik"
|
||||||
|
|
||||||
@ -5407,7 +5422,12 @@ msgstr "Nie można subskrybować innych do ciebie."
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "Niesubskrybowane."
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "Nie można usunąć subskrypcji."
|
msgstr "Nie można usunąć subskrypcji."
|
||||||
|
|
||||||
|
@ -8,12 +8,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:20:35+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:27:13+0000\n"
|
||||||
"Language-Team: Portuguese\n"
|
"Language-Team: Portuguese\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: pt\n"
|
"X-Language-Code: pt\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -96,8 +96,8 @@ msgid ""
|
|||||||
"You can try to [nudge %s](../%s) from his profile or [post something to his "
|
"You can try to [nudge %s](../%s) from his profile or [post something to his "
|
||||||
"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)."
|
"or her attention](%%%%action.newnotice%%%%?status_textarea=%s)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Tente [acotovelar o(a) %s](../%s) a partir do perfil ou [publicar qualquer "
|
"Tente [acotovelar %s](../%s) a partir do perfil ou [publicar qualquer coisa "
|
||||||
"coisa à sua atenção](%%%%action.newnotice%%%%?status_textarea=%s)."
|
"à sua atenção](%%%%action.newnotice%%%%?status_textarea=%s)."
|
||||||
|
|
||||||
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
#: actions/all.php:137 actions/replies.php:209 actions/showstream.php:202
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -105,8 +105,8 @@ msgid ""
|
|||||||
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
"Why not [register an account](%%%%action.register%%%%) and then nudge %s or "
|
||||||
"post a notice to his or her attention."
|
"post a notice to his or her attention."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Podia [registar uma conta](%%%%action.register%%%%) e depois acotovelar o(a) "
|
"Podia [registar uma conta](%%%%action.register%%%%) e depois acotovelar %s "
|
||||||
"%s ou publicar uma nota à sua atenção."
|
"ou publicar uma nota à sua atenção."
|
||||||
|
|
||||||
#: actions/all.php:165
|
#: actions/all.php:165
|
||||||
msgid "You and friends"
|
msgid "You and friends"
|
||||||
@ -115,7 +115,7 @@ msgstr "Você e amigos"
|
|||||||
#: actions/allrss.php:119 actions/apitimelinefriends.php:121
|
#: actions/allrss.php:119 actions/apitimelinefriends.php:121
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Updates from %1$s and friends on %2$s!"
|
msgid "Updates from %1$s and friends on %2$s!"
|
||||||
msgstr "Actualizações 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/apiaccountratelimitstatus.php:70
|
||||||
#: actions/apiaccountupdatedeliverydevice.php:93
|
#: actions/apiaccountupdatedeliverydevice.php:93
|
||||||
@ -187,7 +187,11 @@ msgstr "Utilizador não tem perfil."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "Não foi possível gravar o perfil."
|
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."
|
msgid "Block user failed."
|
||||||
msgstr "Bloqueio do utilizador falhou."
|
msgstr "Bloqueio do utilizador falhou."
|
||||||
|
|
||||||
@ -216,7 +220,7 @@ msgstr ""
|
|||||||
#: actions/apidirectmessage.php:89
|
#: actions/apidirectmessage.php:89
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Direct messages from %s"
|
msgid "Direct messages from %s"
|
||||||
msgstr "Mensagens directas do(a) %s"
|
msgstr "Mensagens directas de %s"
|
||||||
|
|
||||||
#: actions/apidirectmessage.php:93
|
#: actions/apidirectmessage.php:93
|
||||||
#, php-format
|
#, 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
|
#: actions/apigrouplistall.php:90 actions/usergroups.php:62
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s groups"
|
msgid "%s groups"
|
||||||
msgstr "Grupos do(a) %s"
|
msgstr "Grupos de %s"
|
||||||
|
|
||||||
#: actions/apigrouplistall.php:94
|
#: actions/apigrouplistall.php:94
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -549,7 +553,7 @@ msgstr "Original"
|
|||||||
#: actions/avatarsettings.php:141 actions/avatarsettings.php:214
|
#: actions/avatarsettings.php:141 actions/avatarsettings.php:214
|
||||||
#: actions/grouplogo.php:210 actions/grouplogo.php:271
|
#: actions/grouplogo.php:210 actions/grouplogo.php:271
|
||||||
msgid "Preview"
|
msgid "Preview"
|
||||||
msgstr "Antever"
|
msgstr "Antevisão"
|
||||||
|
|
||||||
#: actions/avatarsettings.php:148 lib/deleteuserform.php:66
|
#: actions/avatarsettings.php:148 lib/deleteuserform.php:66
|
||||||
#: lib/noticelist.php:550
|
#: lib/noticelist.php:550
|
||||||
@ -568,7 +572,7 @@ msgstr "Cortar"
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -822,45 +826,45 @@ msgstr "Design"
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr "Configurações do design deste site StatusNet."
|
msgstr "Configurações do design deste site StatusNet."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "URL do logótipo inválida."
|
msgstr "URL do logótipo inválida."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "Tema não está disponível: %s"
|
msgstr "Tema não está disponível: %s"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Alterar logótipo"
|
msgstr "Alterar logótipo"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "Logótipo do site"
|
msgstr "Logótipo do site"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Alterar tema"
|
msgstr "Alterar tema"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Tema do site"
|
msgstr "Tema do site"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr "O tema para o 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"
|
msgid "Change background image"
|
||||||
msgstr "Alterar imagem de fundo"
|
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
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr "Imagem de fundo"
|
msgstr "Fundo"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"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 "
|
"Pode carregar uma imagem de fundo para o site. O tamanho máximo do ficheiro "
|
||||||
"é %1$s."
|
"é %1$s."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:452 lib/designsettings.php:139
|
#: actions/designadminpanel.php:457 lib/designsettings.php:139
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr "Ligar"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
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."
|
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"
|
msgid "Tile background image"
|
||||||
msgstr "Repetir imagem de fundo em mosaico"
|
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"
|
msgid "Change colours"
|
||||||
msgstr "Alterar cores"
|
msgstr "Alterar cores"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Conteúdo"
|
msgstr "Conteúdo"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
msgid "Sidebar"
|
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"
|
msgid "Text"
|
||||||
msgstr "Texto"
|
msgstr "Texto"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "Ligações"
|
msgstr "Ligações"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr "Usar predefinições"
|
msgstr "Usar predefinições"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr "Repor designs predefinidos"
|
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"
|
msgid "Reset back to default"
|
||||||
msgstr "Repor predefinição"
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -927,7 +931,7 @@ msgstr "Repor predefinição"
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Gravar"
|
msgstr "Gravar"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr "Gravar o design"
|
msgstr "Gravar o design"
|
||||||
|
|
||||||
@ -1201,7 +1205,7 @@ msgstr ""
|
|||||||
#: lib/personalgroupnav.php:115
|
#: lib/personalgroupnav.php:115
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s's favorite notices"
|
msgid "%s's favorite notices"
|
||||||
msgstr "Notas favoritas do(a) %s"
|
msgstr "Notas favoritas de %s"
|
||||||
|
|
||||||
#: actions/favoritesrss.php:115
|
#: actions/favoritesrss.php:115
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -1369,18 +1373,18 @@ msgstr ""
|
|||||||
"Personalize o aspecto do seu grupo com uma imagem de fundo e uma paleta de "
|
"Personalize o aspecto do seu grupo com uma imagem de fundo e uma paleta de "
|
||||||
"cores à sua escolha."
|
"cores à sua escolha."
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "Não foi possível actualizar o 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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr "Não foi possível actualizar as suas configurações do design!"
|
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."
|
msgid "Design preferences saved."
|
||||||
msgstr "Preferências do design foram gravadas."
|
msgstr "Preferências do design foram gravadas."
|
||||||
|
|
||||||
@ -1453,8 +1457,8 @@ msgid ""
|
|||||||
"Search for groups on %%site.name%% by their name, location, or description. "
|
"Search for groups on %%site.name%% by their name, location, or description. "
|
||||||
"Separate the terms by spaces; they must be 3 characters or more."
|
"Separate the terms by spaces; they must be 3 characters or more."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Procure grupos em %%site.name%% pelo seu nome, localização ou descrição. "
|
"Procure grupos neste site pesquisando o nome, localização ou descrição. Os "
|
||||||
"Separe os termos de busca com espaços; precisam de ter 3 ou mais caracteres."
|
"termos de busca devem ter 3 ou mais caracteres e ser separados por espaços."
|
||||||
|
|
||||||
#: actions/groupsearch.php:58
|
#: actions/groupsearch.php:58
|
||||||
msgid "Group search"
|
msgid "Group search"
|
||||||
@ -1631,7 +1635,8 @@ msgstr "Caixa de entrada de %s"
|
|||||||
#: actions/inbox.php:115
|
#: actions/inbox.php:115
|
||||||
msgid "This is your inbox, which lists your incoming private messages."
|
msgid "This is your inbox, which lists your incoming private messages."
|
||||||
msgstr ""
|
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
|
#: actions/invite.php:39
|
||||||
msgid "Invites have been disabled."
|
msgid "Invites have been disabled."
|
||||||
@ -1704,9 +1709,9 @@ msgstr "Mensagem pessoal"
|
|||||||
|
|
||||||
#: actions/invite.php:194
|
#: actions/invite.php:194
|
||||||
msgid "Optionally add a personal message to the invitation."
|
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"
|
msgid "Send"
|
||||||
msgstr "Enviar"
|
msgstr "Enviar"
|
||||||
|
|
||||||
@ -1811,11 +1816,11 @@ msgstr "Não foi possível remover o utilizador %s do grupo %s"
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr "%s deixou o grupo %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."
|
msgid "Already logged in."
|
||||||
msgstr "Sessão já foi iniciada."
|
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."
|
msgid "Invalid or expired token."
|
||||||
msgstr "Chave inválida ou expirada."
|
msgstr "Chave inválida ou expirada."
|
||||||
|
|
||||||
@ -1958,8 +1963,8 @@ msgid ""
|
|||||||
"Search for notices on %%site.name%% by their contents. Separate search terms "
|
"Search for notices on %%site.name%% by their contents. Separate search terms "
|
||||||
"by spaces; they must be 3 characters or more."
|
"by spaces; they must be 3 characters or more."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Procure notas em %%site.name%% pelo seu conteúdo. Separe os termos de busca "
|
"Procure notas neste site pesquisando o seu conteúdo. Os termos de busca "
|
||||||
"com espaços; precisam de ter 3 ou mais caracteres."
|
"devem ter 3 ou mais caracteres e ser separados por espaços."
|
||||||
|
|
||||||
#: actions/noticesearch.php:78
|
#: actions/noticesearch.php:78
|
||||||
msgid "Text search"
|
msgid "Text search"
|
||||||
@ -2028,10 +2033,10 @@ msgstr "tipo de conteúdo "
|
|||||||
|
|
||||||
#: actions/oembed.php:160
|
#: actions/oembed.php:160
|
||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr "Apenas "
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr "Formato de dados não suportado."
|
msgstr "Formato de dados não suportado."
|
||||||
|
|
||||||
@ -2061,15 +2066,15 @@ msgstr "Compactar URLs com"
|
|||||||
|
|
||||||
#: actions/othersettings.php:117
|
#: actions/othersettings.php:117
|
||||||
msgid "Automatic shortening service to use."
|
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
|
#: actions/othersettings.php:122
|
||||||
msgid "View profile designs"
|
msgid "View profile designs"
|
||||||
msgstr "Ver designs de perfis"
|
msgstr "Ver o design dos perfis"
|
||||||
|
|
||||||
#: actions/othersettings.php:123
|
#: actions/othersettings.php:123
|
||||||
msgid "Show or hide profile designs."
|
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
|
#: actions/othersettings.php:153
|
||||||
msgid "URL shortening service is too long (max 50 chars)."
|
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
|
#: actions/outbox.php:116
|
||||||
msgid "This is your outbox, which lists private messages you have sent."
|
msgid "This is your outbox, which lists private messages you have sent."
|
||||||
msgstr ""
|
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
|
#: actions/passwordsettings.php:58
|
||||||
msgid "Change password"
|
msgid "Change password"
|
||||||
@ -2258,8 +2263,8 @@ msgid ""
|
|||||||
"Search for people on %%site.name%% by their name, location, or interests. "
|
"Search for people on %%site.name%% by their name, location, or interests. "
|
||||||
"Separate the terms by spaces; they must be 3 characters or more."
|
"Separate the terms by spaces; they must be 3 characters or more."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Procure pessoas em %%site.name%% pelo seu nome, localidade ou interesses. "
|
"Procure pessoas neste site pesquisando o nome, localidade ou interesses. Os "
|
||||||
"Separe os termos de busca com espaços; precisam de ter 3 ou mais caracteres."
|
"termos de busca devem ter 3 ou mais caracteres e ser separados por espaços."
|
||||||
|
|
||||||
#: actions/peoplesearch.php:58
|
#: actions/peoplesearch.php:58
|
||||||
msgid "People search"
|
msgid "People search"
|
||||||
@ -2316,7 +2321,8 @@ msgstr "Página de acolhimento"
|
|||||||
|
|
||||||
#: actions/profilesettings.php:117 actions/register.php:454
|
#: actions/profilesettings.php:117 actions/register.php:454
|
||||||
msgid "URL of your homepage, blog, or profile on another site"
|
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
|
#: actions/profilesettings.php:122 actions/register.php:460
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -2708,7 +2714,7 @@ msgstr "Repita a palavra-chave acima. Obrigatório."
|
|||||||
#: actions/register.php:437 actions/register.php:441
|
#: actions/register.php:437 actions/register.php:441
|
||||||
#: actions/siteadminpanel.php:283 lib/accountsettingsaction.php:120
|
#: actions/siteadminpanel.php:283 lib/accountsettingsaction.php:120
|
||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr "Correio electrónico"
|
msgstr "Correio"
|
||||||
|
|
||||||
#: actions/register.php:438 actions/register.php:442
|
#: actions/register.php:438 actions/register.php:442
|
||||||
msgid "Used only for updates, announcements, and password recovery"
|
msgid "Used only for updates, announcements, and password recovery"
|
||||||
@ -2753,7 +2759,8 @@ msgid ""
|
|||||||
"\n"
|
"\n"
|
||||||
"Thanks for signing up and we hope you enjoy using this service."
|
"Thanks for signing up and we hope you enjoy using this service."
|
||||||
msgstr ""
|
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"
|
"\n"
|
||||||
"* Visitar o [seu perfil](%s) e enviar a primeira mensagem.\n"
|
"* Visitar o [seu perfil](%s) e enviar a primeira mensagem.\n"
|
||||||
"* Adicionar um [endereço Jabber/GTalk](%%%%action.imsettings%%%%) de forma a "
|
"* 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)"
|
msgstr "URL de perfil inválido (formato incorrecto)"
|
||||||
|
|
||||||
#: actions/remotesubscribe.php:168
|
#: actions/remotesubscribe.php:168
|
||||||
#, fuzzy
|
|
||||||
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
|
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"URL de perfil não é válida (nenhum documento Yadis ou nenhum XRDS inválido "
|
"URL do perfil não é válida (não há um documento Yadis, ou foi definido um "
|
||||||
"definidos)."
|
"XRDS inválido)."
|
||||||
|
|
||||||
#: actions/remotesubscribe.php:176
|
#: actions/remotesubscribe.php:176
|
||||||
msgid "That’s a local profile! Login to subscribe."
|
msgid "That’s a local profile! Login to subscribe."
|
||||||
@ -3041,7 +3047,7 @@ msgid ""
|
|||||||
"their life and interests. [Join now](%%%%action.register%%%%) to become part "
|
"their life and interests. [Join now](%%%%action.register%%%%) to become part "
|
||||||
"of this group and many more! ([Read more](%%%%doc.help%%%%))"
|
"of this group and many more! ([Read more](%%%%doc.help%%%%))"
|
||||||
msgstr ""
|
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 "
|
"[microblogues](http://en.wikipedia.org/wiki/Micro-blogging) baseado na "
|
||||||
"aplicação de Software Livre [StatusNet](http://status.net/). Os membros "
|
"aplicação de Software Livre [StatusNet](http://status.net/). Os membros "
|
||||||
"deste grupo partilham mensagens curtas acerca das suas vidas e interesses. "
|
"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 "
|
"[StatusNet](http://status.net/) tool. Its members share short messages about "
|
||||||
"their life and interests. "
|
"their life and interests. "
|
||||||
msgstr ""
|
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 "
|
"[microblogues](http://en.wikipedia.org/wiki/Micro-blogging) baseado na "
|
||||||
"aplicação de Software Livre [StatusNet](http://status.net/). Os membros "
|
"aplicação de Software Livre [StatusNet](http://status.net/). Os membros "
|
||||||
"deste grupo partilham mensagens curtas acerca das suas vidas e interesses. "
|
"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 "
|
"[StatusNet](http://status.net/) tool. [Join now](%%%%action.register%%%%) to "
|
||||||
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
"follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))"
|
||||||
msgstr ""
|
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 "
|
"(http://en.wikipedia.org/wiki/Micro-blogging) baseado na aplicação de "
|
||||||
"Software Livre [StatusNet](http://status.net/). [Registe-se agora](%%%%"
|
"Software Livre [StatusNet](http://status.net/). [Registe-se agora](%%%%"
|
||||||
"action.register%%%%) para seguir as notas de **%s** e de muitos mais! "
|
"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 "
|
"wikipedia.org/wiki/Micro-blogging) service based on the Free Software "
|
||||||
"[StatusNet](http://status.net/) tool. "
|
"[StatusNet](http://status.net/) tool. "
|
||||||
msgstr ""
|
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 "
|
"(http://en.wikipedia.org/wiki/Micro-blogging) baseado na aplicação de "
|
||||||
"Software Livre [StatusNet](http://status.net/). "
|
"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
|
#: actions/userbyid.php:70
|
||||||
msgid "No id."
|
msgid "No id."
|
||||||
msgstr ""
|
msgstr "Nenhuma identificação."
|
||||||
|
|
||||||
#: actions/userdesignsettings.php:76 lib/designsettings.php:65
|
#: actions/userdesignsettings.php:76 lib/designsettings.php:65
|
||||||
msgid "Profile design"
|
msgid "Profile design"
|
||||||
@ -4141,7 +4147,7 @@ msgstr "Ajudem-me!"
|
|||||||
|
|
||||||
#: lib/action.php:464 lib/searchaction.php:127
|
#: lib/action.php:464 lib/searchaction.php:127
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
msgstr "Pesquisar"
|
msgstr "Pesquisa"
|
||||||
|
|
||||||
#: lib/action.php:464
|
#: lib/action.php:464
|
||||||
msgid "Search for people or text"
|
msgid "Search for people or text"
|
||||||
@ -4181,7 +4187,7 @@ msgstr "Privacidade"
|
|||||||
|
|
||||||
#: lib/action.php:737
|
#: lib/action.php:737
|
||||||
msgid "Source"
|
msgid "Source"
|
||||||
msgstr "Fonte"
|
msgstr "Código"
|
||||||
|
|
||||||
#: lib/action.php:739
|
#: lib/action.php:739
|
||||||
msgid "Contact"
|
msgid "Contact"
|
||||||
@ -4201,8 +4207,8 @@ msgid ""
|
|||||||
"**%%site.name%%** is a microblogging service brought to you by [%%site."
|
"**%%site.name%%** is a microblogging service brought to you by [%%site."
|
||||||
"broughtby%%](%%site.broughtbyurl%%). "
|
"broughtby%%](%%site.broughtbyurl%%). "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"**%%site.name%%*** é um serviço de microblogues disponibilizado por [%%site."
|
"**%%site.name%%** é um serviço de microblogues disponibilizado por [%%site."
|
||||||
"broughtby%%](%%site.broughtbyurl%%)."
|
"broughtby%%](%%site.broughtbyurl%%). "
|
||||||
|
|
||||||
#: lib/action.php:774
|
#: lib/action.php:774
|
||||||
#, php-format
|
#, php-format
|
||||||
@ -4226,7 +4232,7 @@ msgstr "Licença de conteúdos do site"
|
|||||||
|
|
||||||
#: lib/action.php:799
|
#: lib/action.php:799
|
||||||
msgid "All "
|
msgid "All "
|
||||||
msgstr ""
|
msgstr "Tudo "
|
||||||
|
|
||||||
#: lib/action.php:804
|
#: lib/action.php:804
|
||||||
msgid "license."
|
msgid "license."
|
||||||
@ -4404,7 +4410,7 @@ msgstr "Introduza o nome do utilizador para subscrever"
|
|||||||
#: lib/command.php:502
|
#: lib/command.php:502
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Subscribed to %s"
|
msgid "Subscribed to %s"
|
||||||
msgstr "Subscreveu o(a) %s"
|
msgstr "Subscreveu %s"
|
||||||
|
|
||||||
#: lib/command.php:523
|
#: lib/command.php:523
|
||||||
msgid "Specify the name of the user to unsubscribe from"
|
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
|
#: lib/command.php:530
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Unsubscribed from %s"
|
msgid "Unsubscribed from %s"
|
||||||
msgstr "Deixou de subscrever o(a) %s"
|
msgstr "Deixou de subscrever %s"
|
||||||
|
|
||||||
#: lib/command.php:548 lib/command.php:571
|
#: lib/command.php:548 lib/command.php:571
|
||||||
msgid "Command not yet implemented."
|
msgid "Command not yet implemented."
|
||||||
@ -4435,37 +4441,51 @@ msgstr "Notificação ligada."
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr "Não foi possível ligar a notificação."
|
msgstr "Não foi possível ligar a notificação."
|
||||||
|
|
||||||
#: lib/command.php: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."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "Não subscreveu ninguém."
|
msgstr "Não subscreveu ninguém."
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "Subscreve esta pessoa:"
|
msgstr[0] "Subscreve esta pessoa:"
|
||||||
msgstr[1] "Subscreve estas pessoas:"
|
msgstr[1] "Subscreve estas pessoas:"
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "Ninguém subscreve as suas notas."
|
msgstr "Ninguém subscreve as suas notas."
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "Esta pessoa subscreve as suas notas:"
|
msgstr[0] "Esta pessoa subscreve as suas notas:"
|
||||||
msgstr[1] "Estas pessoas subscrevem as suas notas:"
|
msgstr[1] "Estas pessoas subscrevem as suas notas:"
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "Não está em nenhum grupo."
|
msgstr "Não está em nenhum grupo."
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "Está no grupo:"
|
msgstr[0] "Está no grupo:"
|
||||||
msgstr[1] "Está nos grupos:"
|
msgstr[1] "Está nos grupos:"
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
@ -4485,6 +4505,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4520,7 +4541,6 @@ msgstr ""
|
|||||||
"reply #<id_da_nota> - responder à nota com esta identificação\n"
|
"reply #<id_da_nota> - responder à nota com esta identificação\n"
|
||||||
"reply <alcunha> - responder à última nota do utilizador\n"
|
"reply <alcunha> - responder à última nota do utilizador\n"
|
||||||
"join <grupo> - juntar-se ao grupo\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"
|
"drop <grupo> - afastar-se do grupo\n"
|
||||||
"stats - receber as suas estatísticas\n"
|
"stats - receber as suas estatísticas\n"
|
||||||
"stop - o mesmo que 'off'\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 é "
|
"Pode carregar uma imagem de fundo pessoal. O tamanho máximo do ficheiro é "
|
||||||
"2MB."
|
"2MB."
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr "Configurações inadequadas das cores por omissão: "
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr "Predefinições do design repostas"
|
msgstr "Predefinições do design repostas"
|
||||||
|
|
||||||
@ -5124,7 +5140,7 @@ msgstr "Enviar uma nota directa"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "Para"
|
msgstr "Para"
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "Caracteres disponíveis"
|
msgstr "Caracteres disponíveis"
|
||||||
|
|
||||||
@ -5137,11 +5153,11 @@ msgstr "Enviar uma nota"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "Novidades, %s?"
|
msgstr "Novidades, %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr "Anexar"
|
msgstr "Anexar"
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr "Anexar um ficheiro"
|
msgstr "Anexar um ficheiro"
|
||||||
|
|
||||||
@ -5408,7 +5424,11 @@ msgstr "Não foi possível que outro o subscrevesse."
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "Não subscrito!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "Não foi possível apagar a subscrição."
|
msgstr "Não foi possível apagar a subscrição."
|
||||||
|
|
||||||
|
@ -9,12 +9,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:20:38+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:27:16+0000\n"
|
||||||
"Language-Team: Brazilian Portuguese\n"
|
"Language-Team: Brazilian Portuguese\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: pt-br\n"
|
"X-Language-Code: pt-br\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -184,7 +184,12 @@ msgstr "O usuário não tem perfil."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "Não foi possível salvar o perfil."
|
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."
|
msgid "Block user failed."
|
||||||
msgstr "Não foi possível bloquear o usuário."
|
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."
|
msgstr "Não foi encontrado nenhum status com esse ID."
|
||||||
|
|
||||||
#: actions/apifavoritecreate.php:119
|
#: actions/apifavoritecreate.php:119
|
||||||
#, fuzzy
|
|
||||||
msgid "This status is already a favorite!"
|
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
|
#: actions/apifavoritecreate.php:130 actions/favor.php:84 lib/command.php:176
|
||||||
msgid "Could not create favorite."
|
msgid "Could not create favorite."
|
||||||
msgstr "Não foi possível criar a favorita."
|
msgstr "Não foi possível criar a favorita."
|
||||||
|
|
||||||
#: actions/apifavoritedestroy.php:122
|
#: actions/apifavoritedestroy.php:122
|
||||||
#, fuzzy
|
|
||||||
msgid "That status is not a favorite!"
|
msgid "That status is not a favorite!"
|
||||||
msgstr "Essa mensagem não é uma favorita!"
|
msgstr "Essa mensagem não é uma favorita!"
|
||||||
|
|
||||||
@ -573,7 +576,7 @@ msgstr "Cortar"
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -833,51 +836,51 @@ msgstr ""
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "Tamanho inválido."
|
msgstr "Tamanho inválido."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "Esta página não está disponível em um "
|
msgstr "Esta página não está disponível em um "
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Altere a sua senha"
|
msgstr "Altere a sua senha"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "Convidar"
|
msgstr "Convidar"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Alterar"
|
msgstr "Alterar"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Nova mensagem"
|
msgstr "Nova mensagem"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr "Sair deste 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"
|
msgid "Change background image"
|
||||||
msgstr "Alterar imagem de plano de fundo."
|
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
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"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 "
|
"Você pode enviar uma imagem de plano de fundo para o site. O tamanho máximo "
|
||||||
"do arquivo é %l$s"
|
"do arquivo é %l$s"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:452 lib/designsettings.php:139
|
#: actions/designadminpanel.php:457 lib/designsettings.php:139
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "Ligado"
|
msgstr "Ligado"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "Altere a sua senha"
|
msgstr "Altere a sua senha"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Conteúdo"
|
msgstr "Conteúdo"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Procurar"
|
msgstr "Procurar"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Texto"
|
msgstr "Texto"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "Lista"
|
msgstr "Lista"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr "Usar o padrão."
|
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"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -947,7 +950,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Salvar"
|
msgstr "Salvar"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1395,20 +1398,20 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "Não foi possível atualizar o usuário."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr "Não foi possível salvar suas configurações do Twitter!"
|
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
|
#, fuzzy
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "As preferências de sincronização foram salvas."
|
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."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr "Você pode, opcionalmente, adicionar uma mensagem pessoal ao convite."
|
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"
|
msgid "Send"
|
||||||
msgstr "Enviar"
|
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"
|
msgid "%s left group %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/login.php:79 actions/register.php:137
|
#: actions/login.php:82 actions/register.php:137
|
||||||
msgid "Already logged in."
|
msgid "Already logged in."
|
||||||
msgstr "Já está logado."
|
msgstr "Já está logado."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "O conteúdo da mensagem é inválido"
|
msgstr "O conteúdo da mensagem é inválido"
|
||||||
@ -2069,8 +2072,8 @@ msgstr ""
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr "Formato de dados não suportado."
|
msgstr "Formato de dados não suportado."
|
||||||
|
|
||||||
@ -4495,40 +4498,54 @@ msgstr "Notificação ligada."
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr "Não é possível ligar a notificação."
|
msgstr "Não é possível ligar a notificação."
|
||||||
|
|
||||||
#: lib/command.php: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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "Você não está assinando esse perfil."
|
msgstr "Você não está assinando esse perfil."
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "Você já está assinando esses usuários:"
|
msgstr[0] "Você já está assinando esses usuários:"
|
||||||
msgstr[1] "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
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "Não foi possível fazer com que o outros o sigam."
|
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 "This person is subscribed to you:"
|
||||||
msgid_plural "These people are 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[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."
|
msgstr[1] "Não foi possível fazer com que o outros o sigam."
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "Você não está assinando esse perfil."
|
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 "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "Você não é membro deste grupo."
|
msgstr[0] "Você não é membro deste grupo."
|
||||||
msgstr[1] "Você não é membro deste grupo."
|
msgstr[1] "Você não é membro deste grupo."
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4547,6 +4564,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4611,11 +4629,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"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"
|
msgstr "Você pode enviar seu avatar pessoal. O tamanho máximo do arquivo é %s"
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5080,7 +5094,7 @@ msgstr "Enviar uma mensagem direta"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "Para"
|
msgstr "Para"
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "Caracteres disponíveis"
|
msgstr "Caracteres disponíveis"
|
||||||
|
|
||||||
@ -5093,11 +5107,11 @@ msgstr "Enviar uma mensagem"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "E aí, %s?"
|
msgstr "E aí, %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5378,7 +5392,12 @@ msgstr "Não foi possível fazer com que o outros o sigam."
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "Não é seguido!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "Não foi possível excluir a assinatura."
|
msgstr "Não foi possível excluir a assinatura."
|
||||||
|
|
||||||
|
@ -10,12 +10,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:20:42+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:27:20+0000\n"
|
||||||
"Language-Team: Russian\n"
|
"Language-Team: Russian\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: ru\n"
|
"X-Language-Code: ru\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -190,7 +190,11 @@ msgstr "У пользователя нет профиля."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "Не удаётся сохранить профиль."
|
msgstr "Не удаётся сохранить профиль."
|
||||||
|
|
||||||
#: actions/apiblockcreate.php:108
|
#: actions/apiblockcreate.php:105
|
||||||
|
msgid "You cannot block yourself!"
|
||||||
|
msgstr "Вы не можете заблокировать самого себя!"
|
||||||
|
|
||||||
|
#: actions/apiblockcreate.php:119
|
||||||
msgid "Block user failed."
|
msgid "Block user failed."
|
||||||
msgstr "Неудача при блокировке пользователя."
|
msgstr "Неудача при блокировке пользователя."
|
||||||
|
|
||||||
@ -577,7 +581,7 @@ msgstr "Обрезать"
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -829,45 +833,45 @@ msgstr "Оформление"
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr "Настройки оформления для этого сайта StatusNet."
|
msgstr "Настройки оформления для этого сайта StatusNet."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "Неверный URL логотипа."
|
msgstr "Неверный URL логотипа."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "Тема не доступна: %s"
|
msgstr "Тема не доступна: %s"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Изменить логотип"
|
msgstr "Изменить логотип"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "Логотип сайта"
|
msgstr "Логотип сайта"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Изменить тему"
|
msgstr "Изменить тему"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Тема сайта"
|
msgstr "Тема сайта"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr "Тема для сайта."
|
msgstr "Тема для сайта."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr "Изменение фонового изображения"
|
msgstr "Изменение фонового изображения"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr "Фон"
|
msgstr "Фон"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
@ -876,55 +880,55 @@ msgstr ""
|
|||||||
"Вы можете загрузить фоновое изображение для сайта. Максимальный размер файла "
|
"Вы можете загрузить фоновое изображение для сайта. Максимальный размер файла "
|
||||||
"составляет %1$s."
|
"составляет %1$s."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:452 lib/designsettings.php:139
|
#: actions/designadminpanel.php:457 lib/designsettings.php:139
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "Включить"
|
msgstr "Включить"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "Отключить"
|
msgstr "Отключить"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr "Включить или отключить показ фонового изображения."
|
msgstr "Включить или отключить показ фонового изображения."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr "Растянуть фоновое изображение"
|
msgstr "Растянуть фоновое изображение"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "Изменение цветовой гаммы"
|
msgstr "Изменение цветовой гаммы"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Содержание"
|
msgstr "Содержание"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Боковая панель"
|
msgstr "Боковая панель"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Текст"
|
msgstr "Текст"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "Ссылки"
|
msgstr "Ссылки"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr "Использовать значения по умолчанию"
|
msgstr "Использовать значения по умолчанию"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr "Восстановить оформление по умолчанию"
|
msgstr "Восстановить оформление по умолчанию"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr "Восстановить значения по умолчанию"
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -934,7 +938,7 @@ msgstr "Восстановить значения по умолчанию"
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Сохранить"
|
msgstr "Сохранить"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr "Сохранить оформление"
|
msgstr "Сохранить оформление"
|
||||||
|
|
||||||
@ -1381,18 +1385,18 @@ msgstr ""
|
|||||||
"Настройте внешний вид группы, установив фоновое изображение и цветовую гамму "
|
"Настройте внешний вид группы, установив фоновое изображение и цветовую гамму "
|
||||||
"на ваш выбор."
|
"на ваш выбор."
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "Не удаётся обновить ваше оформление."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr "Не удаётся сохранить ваши настройки оформления!"
|
msgstr "Не удаётся сохранить ваши настройки оформления!"
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
|
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "Настройки оформления сохранены."
|
msgstr "Настройки оформления сохранены."
|
||||||
|
|
||||||
@ -1719,7 +1723,7 @@ msgstr "Личное сообщение"
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr "Можно добавить к приглашению личное сообщение."
|
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"
|
msgid "Send"
|
||||||
msgstr "ОК"
|
msgstr "ОК"
|
||||||
|
|
||||||
@ -1825,11 +1829,11 @@ msgstr "Не удаётся удалить пользователя %s из гр
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr "%s покинул группу %s"
|
msgstr "%s покинул группу %s"
|
||||||
|
|
||||||
#: actions/login.php:79 actions/register.php:137
|
#: actions/login.php:82 actions/register.php:137
|
||||||
msgid "Already logged in."
|
msgid "Already logged in."
|
||||||
msgstr "Вы уже авторизовались."
|
msgstr "Вы уже авторизовались."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "Неверный или устаревший ключ."
|
msgstr "Неверный или устаревший ключ."
|
||||||
|
|
||||||
@ -2043,8 +2047,8 @@ msgstr "тип содержимого "
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr "Только "
|
msgstr "Только "
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr "Неподдерживаемый формат данных."
|
msgstr "Неподдерживаемый формат данных."
|
||||||
|
|
||||||
@ -2830,11 +2834,8 @@ msgid "Invalid profile URL (bad format)"
|
|||||||
msgstr "Неверный URL профиля (плохой формат)"
|
msgstr "Неверный URL профиля (плохой формат)"
|
||||||
|
|
||||||
#: actions/remotesubscribe.php:168
|
#: actions/remotesubscribe.php:168
|
||||||
#, fuzzy
|
|
||||||
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
|
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
|
||||||
msgstr ""
|
msgstr "Неправильный URL-профиль (нет YADIS-документа, либо неверный XRDS)."
|
||||||
"Неверный URL профиля (не YADIS-документ либо не указан или указан неверный "
|
|
||||||
"XRDS)."
|
|
||||||
|
|
||||||
#: actions/remotesubscribe.php:176
|
#: actions/remotesubscribe.php:176
|
||||||
msgid "That’s a local profile! Login to subscribe."
|
msgid "That’s a local profile! Login to subscribe."
|
||||||
@ -4450,40 +4451,54 @@ msgstr "Есть оповещение."
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr "Есть оповещение."
|
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."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "Вы ни на кого не подписаны."
|
msgstr "Вы ни на кого не подписаны."
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "Вы подписаны на этих людей:"
|
msgstr[0] "Вы подписаны на этих людей:"
|
||||||
msgstr[1] "Вы подписаны на этих людей:"
|
msgstr[1] "Вы подписаны на этих людей:"
|
||||||
msgstr[2] "Вы подписаны на этих людей:"
|
msgstr[2] "Вы подписаны на этих людей:"
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "Никто не подписан на вас."
|
msgstr "Никто не подписан на вас."
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "Эти люди подписались на вас:"
|
msgstr[0] "Эти люди подписались на вас:"
|
||||||
msgstr[1] "Эти люди подписались на вас:"
|
msgstr[1] "Эти люди подписались на вас:"
|
||||||
msgstr[2] "Эти люди подписались на вас:"
|
msgstr[2] "Эти люди подписались на вас:"
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "Вы не состоите ни в одной группе."
|
msgstr "Вы не состоите ни в одной группе."
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "Вы являетесь участником следующих групп:"
|
msgstr[0] "Вы являетесь участником следующих групп:"
|
||||||
msgstr[1] "Вы являетесь участником следующих групп:"
|
msgstr[1] "Вы являетесь участником следующих групп:"
|
||||||
msgstr[2] "Вы являетесь участником следующих групп:"
|
msgstr[2] "Вы являетесь участником следующих групп:"
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
@ -4503,6 +4518,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4538,7 +4554,6 @@ msgstr ""
|
|||||||
"reply #<notice_id> — ответить на запись с заданным id\n"
|
"reply #<notice_id> — ответить на запись с заданным id\n"
|
||||||
"reply <nickname> — ответить на последнюю запись пользователя\n"
|
"reply <nickname> — ответить на последнюю запись пользователя\n"
|
||||||
"join <group> — присоединиться к группе\n"
|
"join <group> — присоединиться к группе\n"
|
||||||
"login — получить ссылку на вход в веб-интерфейс\n"
|
|
||||||
"drop <group> — покинуть группу\n"
|
"drop <group> — покинуть группу\n"
|
||||||
"stats — получить свою статистику\n"
|
"stats — получить свою статистику\n"
|
||||||
"stop — то же, что и 'off'\n"
|
"stop — то же, что и 'off'\n"
|
||||||
@ -4600,11 +4615,7 @@ msgstr ""
|
|||||||
"Вы можете загрузить собственное фоновое изображение. Максимальный размер "
|
"Вы можете загрузить собственное фоновое изображение. Максимальный размер "
|
||||||
"файла составляет 2МБ."
|
"файла составляет 2МБ."
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr "Плохие настройки цвета по умолчанию: "
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr "Оформление по умолчанию восстановлено."
|
msgstr "Оформление по умолчанию восстановлено."
|
||||||
|
|
||||||
@ -5141,7 +5152,7 @@ msgstr "Послать прямую запись"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "Для"
|
msgstr "Для"
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "6 или больше знаков"
|
msgstr "6 или больше знаков"
|
||||||
|
|
||||||
@ -5154,11 +5165,11 @@ msgstr "Послать запись"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "Что нового, %s?"
|
msgstr "Что нового, %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr "Прикрепить"
|
msgstr "Прикрепить"
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr "Прикрепить файл"
|
msgstr "Прикрепить файл"
|
||||||
|
|
||||||
@ -5425,7 +5436,11 @@ msgstr "Не удаётся подписать других на вашу лен
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "Не подписаны!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "Не удаётся удалить подписку."
|
msgstr "Не удаётся удалить подписку."
|
||||||
|
|
||||||
|
@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-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"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@ -176,7 +176,11 @@ msgstr ""
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/apiblockcreate.php:108
|
#: actions/apiblockcreate.php:105
|
||||||
|
msgid "You cannot block yourself!"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: actions/apiblockcreate.php:119
|
||||||
msgid "Block user failed."
|
msgid "Block user failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -555,7 +559,7 @@ msgstr ""
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -800,100 +804,100 @@ msgstr ""
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:452 lib/designsettings.php:139
|
#: actions/designadminpanel.php:457 lib/designsettings.php:139
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -903,7 +907,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1325,18 +1329,18 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr ""
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
|
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1632,7 +1636,7 @@ msgstr ""
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr ""
|
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"
|
msgid "Send"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1712,11 +1716,11 @@ msgstr ""
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/login.php:79 actions/register.php:137
|
#: actions/login.php:82 actions/register.php:137
|
||||||
msgid "Already logged in."
|
msgid "Already logged in."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1917,8 +1921,8 @@ msgstr ""
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4176,37 +4180,51 @@ msgstr ""
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr ""
|
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."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4225,6 +4243,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4285,11 +4304,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"You can upload your personal background image. The maximum file size is 2MB."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4733,7 +4748,7 @@ msgstr ""
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4746,11 +4761,11 @@ msgstr ""
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5017,7 +5032,11 @@ msgstr ""
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr ""
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -8,12 +8,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:20:50+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:27:26+0000\n"
|
||||||
"Language-Team: Telugu\n"
|
"Language-Team: Telugu\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: te\n"
|
"X-Language-Code: te\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -182,7 +182,12 @@ msgstr "వాడుకరికి ప్రొఫైలు లేదు."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం."
|
msgstr "ప్రొఫైలుని భద్రపరచలేకున్నాం."
|
||||||
|
|
||||||
#: actions/apiblockcreate.php:108
|
#: actions/apiblockcreate.php:105
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot block yourself!"
|
||||||
|
msgstr "వాడుకరిని తాజాకరించలేకున్నాం."
|
||||||
|
|
||||||
|
#: actions/apiblockcreate.php:119
|
||||||
msgid "Block user failed."
|
msgid "Block user failed."
|
||||||
msgstr "వాడుకరి నిరోధం విఫలమైంది."
|
msgstr "వాడుకరి నిరోధం విఫలమైంది."
|
||||||
|
|
||||||
@ -566,7 +571,7 @@ msgstr "కత్తిరించు"
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -818,101 +823,101 @@ msgstr "రూపురేఖలు"
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "తప్పుడు పరిమాణం."
|
msgstr "తప్పుడు పరిమాణం."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "అలంకారం అందుబాటులో లేదు: %s"
|
msgstr "అలంకారం అందుబాటులో లేదు: %s"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "చిహ్నాన్ని మార్చు"
|
msgstr "చిహ్నాన్ని మార్చు"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "సైటు చిహ్నం"
|
msgstr "సైటు చిహ్నం"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "అలంకారాన్ని మార్చు"
|
msgstr "అలంకారాన్ని మార్చు"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "సైటు అలంకారం"
|
msgstr "సైటు అలంకారం"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr "సైటుకి అలంకారం."
|
msgstr "సైటుకి అలంకారం."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr "నేపథ్య చిత్రాన్ని మార్చు"
|
msgstr "నేపథ్య చిత్రాన్ని మార్చు"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr "నేపథ్యం"
|
msgstr "నేపథ్యం"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr "మీ స్వంత నేపథ్యపు చిత్రాన్ని మీరు ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం 2మెబై."
|
msgstr "మీ స్వంత నేపథ్యపు చిత్రాన్ని మీరు ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం 2మెబై."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:452 lib/designsettings.php:139
|
#: actions/designadminpanel.php:457 lib/designsettings.php:139
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "రంగులను మార్చు"
|
msgstr "రంగులను మార్చు"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "విషయం"
|
msgstr "విషయం"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "పక్కపట్టీ"
|
msgstr "పక్కపట్టీ"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "పాఠ్యం"
|
msgstr "పాఠ్యం"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "లంకెలు"
|
msgstr "లంకెలు"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -922,7 +927,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "భద్రపరచు"
|
msgstr "భద్రపరచు"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr "రూపురేఖలని భద్రపరచు"
|
msgstr "రూపురేఖలని భద్రపరచు"
|
||||||
|
|
||||||
@ -1346,19 +1351,19 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "వాడుకరిని తాజాకరించలేకున్నాం."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
|
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "అభిరుచులు భద్రమయ్యాయి."
|
msgstr "అభిరుచులు భద్రమయ్యాయి."
|
||||||
@ -1659,7 +1664,7 @@ msgstr "వ్యక్తిగత సందేశం"
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr "ఐచ్ఛికంగా ఆహ్వానానికి వ్యక్తిగత సందేశం చేర్చండి."
|
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"
|
msgid "Send"
|
||||||
msgstr "పంపించు"
|
msgstr "పంపించు"
|
||||||
|
|
||||||
@ -1739,11 +1744,11 @@ msgstr "ఓపెన్ఐడీ ఫారమును సృష్టించ
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr "%2$s గుంపు నుండి %1$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."
|
msgid "Already logged in."
|
||||||
msgstr "ఇప్పటికే లోనికి ప్రవేశించారు."
|
msgstr "ఇప్పటికే లోనికి ప్రవేశించారు."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "సందేశపు విషయం సరైనది కాదు"
|
msgstr "సందేశపు విషయం సరైనది కాదు"
|
||||||
@ -1949,8 +1954,8 @@ msgstr "విషయ రకం "
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr "మాత్రమే "
|
msgstr "మాత్రమే "
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4279,40 +4284,54 @@ msgstr ""
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr ""
|
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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "%sకి స్పందనలు"
|
msgstr "%sకి స్పందనలు"
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "%sకి స్పందనలు"
|
msgstr[0] "%sకి స్పందనలు"
|
||||||
msgstr[1] "%sకి స్పందనలు"
|
msgstr[1] "%sకి స్పందనలు"
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "%sకి స్పందనలు"
|
msgstr "%sకి స్పందనలు"
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "%sకి స్పందనలు"
|
msgstr[0] "%sకి స్పందనలు"
|
||||||
msgstr[1] "%sకి స్పందనలు"
|
msgstr[1] "%sకి స్పందనలు"
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!"
|
msgstr "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!"
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!"
|
msgstr[0] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!"
|
||||||
msgstr[1] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!"
|
msgstr[1] "మీరు ఇప్పటికే లోనికి ప్రవేశించారు!"
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4331,6 +4350,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4394,11 +4414,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"You can upload your personal background image. The maximum file size is 2MB."
|
||||||
msgstr "మీ స్వంత నేపథ్యపు చిత్రాన్ని మీరు ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం 2మెబై."
|
msgstr "మీ స్వంత నేపథ్యపు చిత్రాన్ని మీరు ఎక్కించవచ్చు. గరిష్ఠ ఫైలు పరిమాణం 2మెబై."
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4850,7 +4866,7 @@ msgstr ""
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "అందుబాటులో ఉన్న అక్షరాలు"
|
msgstr "అందుబాటులో ఉన్న అక్షరాలు"
|
||||||
|
|
||||||
@ -4864,11 +4880,11 @@ msgstr "కొత్త సందేశం"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "%s, సంగతులేమిటి?"
|
msgstr "%s, సంగతులేమిటి?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr "జోడించు"
|
msgstr "జోడించు"
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr "ఒక ఫైలుని జోడించు"
|
msgstr "ఒక ఫైలుని జోడించు"
|
||||||
|
|
||||||
@ -5145,7 +5161,12 @@ msgstr ""
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "చందాదార్లు"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "చందాని తొలగించలేకపోయాం."
|
msgstr "చందాని తొలగించలేకపోయాం."
|
||||||
|
|
||||||
|
@ -7,12 +7,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:20:53+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:27:29+0000\n"
|
||||||
"Language-Team: Turkish\n"
|
"Language-Team: Turkish\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: tr\n"
|
"X-Language-Code: tr\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -183,7 +183,12 @@ msgstr "Kullanıcının profili yok."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "Profil kaydedilemedi."
|
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."
|
msgid "Block user failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -577,7 +582,7 @@ msgstr ""
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -836,50 +841,50 @@ msgstr ""
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "Geçersiz büyüklük."
|
msgstr "Geçersiz büyüklük."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil"
|
msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Parolayı değiştir"
|
msgstr "Parolayı değiştir"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "Yeni durum mesajı"
|
msgstr "Yeni durum mesajı"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Değiştir"
|
msgstr "Değiştir"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Yeni durum mesajı"
|
msgstr "Yeni durum mesajı"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
@ -887,59 +892,59 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?"
|
"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"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "Parolayı değiştir"
|
msgstr "Parolayı değiştir"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Bağlan"
|
msgstr "Bağlan"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Ara"
|
msgstr "Ara"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "Giriş"
|
msgstr "Giriş"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -949,7 +954,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Kaydet"
|
msgstr "Kaydet"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1387,19 +1392,19 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "Kullanıcı güncellenemedi."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
|
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "Tercihler kaydedildi."
|
msgstr "Tercihler kaydedildi."
|
||||||
@ -1716,7 +1721,7 @@ msgstr ""
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr ""
|
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"
|
msgid "Send"
|
||||||
msgstr "Gönder"
|
msgstr "Gönder"
|
||||||
|
|
||||||
@ -1798,11 +1803,11 @@ msgstr "OpenID formu yaratılamadı: %s"
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/login.php:79 actions/register.php:137
|
#: actions/login.php:82 actions/register.php:137
|
||||||
msgid "Already logged in."
|
msgid "Already logged in."
|
||||||
msgstr "Zaten giriş yapılmış."
|
msgstr "Zaten giriş yapılmış."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "Geçersiz durum mesajı"
|
msgstr "Geçersiz durum mesajı"
|
||||||
@ -2015,8 +2020,8 @@ msgstr "Bağlan"
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4382,37 +4387,51 @@ msgstr ""
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr ""
|
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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "Bize o profili yollamadınız"
|
msgstr "Bize o profili yollamadınız"
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "Bize o profili yollamadınız"
|
msgstr[0] "Bize o profili yollamadınız"
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "Uzaktan abonelik"
|
msgstr "Uzaktan abonelik"
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "Uzaktan abonelik"
|
msgstr[0] "Uzaktan abonelik"
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "Bize o profili yollamadınız"
|
msgstr "Bize o profili yollamadınız"
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "Bize o profili yollamadınız"
|
msgstr[0] "Bize o profili yollamadınız"
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4431,6 +4450,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4495,11 +4515,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?"
|
"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?"
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4964,7 +4980,7 @@ msgstr ""
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "6 veya daha fazla karakter"
|
msgstr "6 veya daha fazla karakter"
|
||||||
@ -4979,11 +4995,11 @@ msgstr "Yeni durum mesajı"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "N'aber %s?"
|
msgstr "N'aber %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5263,7 +5279,12 @@ msgstr ""
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "Bu kullanıcıyı zaten takip etmiyorsunuz!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "Abonelik silinemedi."
|
msgstr "Abonelik silinemedi."
|
||||||
|
|
||||||
|
@ -9,12 +9,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:20:56+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:27:33+0000\n"
|
||||||
"Language-Team: Ukrainian\n"
|
"Language-Team: Ukrainian\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: uk\n"
|
"X-Language-Code: uk\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -189,7 +189,11 @@ msgstr "Користувач не має профілю."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "Не вдалося зберегти профіль."
|
msgstr "Не вдалося зберегти профіль."
|
||||||
|
|
||||||
#: actions/apiblockcreate.php:108
|
#: actions/apiblockcreate.php:105
|
||||||
|
msgid "You cannot block yourself!"
|
||||||
|
msgstr "Ви не можете блокувати самого себе!"
|
||||||
|
|
||||||
|
#: actions/apiblockcreate.php:119
|
||||||
msgid "Block user failed."
|
msgid "Block user failed."
|
||||||
msgstr "Спроба заблокувати користувача невдала."
|
msgstr "Спроба заблокувати користувача невдала."
|
||||||
|
|
||||||
@ -573,7 +577,7 @@ msgstr "Втяти"
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -825,45 +829,45 @@ msgstr "Дизайн"
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr "Налаштування дизайну для цього сайту StatusNet."
|
msgstr "Налаштування дизайну для цього сайту StatusNet."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "Помилкова URL-адреса логотипу."
|
msgstr "Помилкова URL-адреса логотипу."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "Тема не доступна: %s"
|
msgstr "Тема не доступна: %s"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Змінити логотип"
|
msgstr "Змінити логотип"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "Логотип сайту"
|
msgstr "Логотип сайту"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Змінити тему"
|
msgstr "Змінити тему"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Тема сайту"
|
msgstr "Тема сайту"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr "Тема для цього сайту."
|
msgstr "Тема для цього сайту."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr "Змінити фонове зображення"
|
msgstr "Змінити фонове зображення"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr "Фон"
|
msgstr "Фон"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
@ -872,55 +876,55 @@ msgstr ""
|
|||||||
"Ви можете завантажити фонове зображення для сайту. Максимальний розмір файлу "
|
"Ви можете завантажити фонове зображення для сайту. Максимальний розмір файлу "
|
||||||
"%1$s."
|
"%1$s."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:452 lib/designsettings.php:139
|
#: actions/designadminpanel.php:457 lib/designsettings.php:139
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr "Увімк."
|
msgstr "Увімк."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr "Вимк."
|
msgstr "Вимк."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr "Увімкнути або вимкнути фонове зображення."
|
msgstr "Увімкнути або вимкнути фонове зображення."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr "Замостити фон"
|
msgstr "Замостити фон"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "Змінити кольори"
|
msgstr "Змінити кольори"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Зміст"
|
msgstr "Зміст"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Бічна панель"
|
msgstr "Бічна панель"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Текст"
|
msgstr "Текст"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "Посилання"
|
msgstr "Посилання"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr "За замовч."
|
msgstr "За замовч."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr "Оновити налаштування за замовчуванням"
|
msgstr "Оновити налаштування за замовчуванням"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr "Повернутись до початкових налаштувань"
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -930,7 +934,7 @@ msgstr "Повернутись до початкових налаштувань"
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Зберегти"
|
msgstr "Зберегти"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr "Зберегти дизайн"
|
msgstr "Зберегти дизайн"
|
||||||
|
|
||||||
@ -1366,18 +1370,18 @@ msgstr ""
|
|||||||
"Налаштуйте вигляд сторінки групи, використовуючи фонове зображення і кольори "
|
"Налаштуйте вигляд сторінки групи, використовуючи фонове зображення і кольори "
|
||||||
"на свій смак."
|
"на свій смак."
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "Не вдалося оновити дизайн."
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr "Не маю можливості зберегти Ваші налаштування дизайну!"
|
msgstr "Не маю можливості зберегти Ваші налаштування дизайну!"
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
|
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "Преференції дизайну збережно."
|
msgstr "Преференції дизайну збережно."
|
||||||
|
|
||||||
@ -1705,7 +1709,7 @@ msgstr "Особисті повідомлення"
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr "Можна додати персональне повідомлення до запрошення (опціонально)."
|
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"
|
msgid "Send"
|
||||||
msgstr "Так!"
|
msgstr "Так!"
|
||||||
|
|
||||||
@ -1812,11 +1816,11 @@ msgstr "Не вдалося видалити користувача %s з гру
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr "%s залишив групу %s"
|
msgstr "%s залишив групу %s"
|
||||||
|
|
||||||
#: actions/login.php:79 actions/register.php:137
|
#: actions/login.php:82 actions/register.php:137
|
||||||
msgid "Already logged in."
|
msgid "Already logged in."
|
||||||
msgstr "Тепер Ви увійшли."
|
msgstr "Тепер Ви увійшли."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "Недійсний або неправильний токен."
|
msgstr "Недійсний або неправильний токен."
|
||||||
|
|
||||||
@ -2033,8 +2037,8 @@ msgstr "тип змісту "
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr "Лише "
|
msgstr "Лише "
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr "Такий формат даних не підтримується."
|
msgstr "Такий формат даних не підтримується."
|
||||||
|
|
||||||
@ -2823,11 +2827,9 @@ msgid "Invalid profile URL (bad format)"
|
|||||||
msgstr "Недійсна URL-адреса профілю (неправильний формат)"
|
msgstr "Недійсна URL-адреса профілю (неправильний формат)"
|
||||||
|
|
||||||
#: actions/remotesubscribe.php:168
|
#: actions/remotesubscribe.php:168
|
||||||
#, fuzzy
|
|
||||||
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
|
msgid "Not a valid profile URL (no YADIS document or invalid XRDS defined)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Це недійсна URL-адреса профілю (немає документа YADIS; немає або помилкове "
|
"Неправильна URL-адреса профілю (немає документа YADIS, або помилковий XRDS)."
|
||||||
"визначення XRDS)."
|
|
||||||
|
|
||||||
#: actions/remotesubscribe.php:176
|
#: actions/remotesubscribe.php:176
|
||||||
msgid "That’s a local profile! Login to subscribe."
|
msgid "That’s a local profile! Login to subscribe."
|
||||||
@ -4439,40 +4441,54 @@ msgstr "Сповіщення увімкнуто."
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr "Не можна увімкнути сповіщення."
|
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."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "Ви не маєте жодних підписок."
|
msgstr "Ви не маєте жодних підписок."
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "Ви підписані до цієї особи:"
|
msgstr[0] "Ви підписані до цієї особи:"
|
||||||
msgstr[1] "Ви підписані до цих людей:"
|
msgstr[1] "Ви підписані до цих людей:"
|
||||||
msgstr[2] "Ви підписані до цих людей:"
|
msgstr[2] "Ви підписані до цих людей:"
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "До Вас ніхто не підписаний."
|
msgstr "До Вас ніхто не підписаний."
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "Ця особа є підписаною до Вас:"
|
msgstr[0] "Ця особа є підписаною до Вас:"
|
||||||
msgstr[1] "Ці люди підписані до Вас:"
|
msgstr[1] "Ці люди підписані до Вас:"
|
||||||
msgstr[2] "Ці люди підписані до Вас:"
|
msgstr[2] "Ці люди підписані до Вас:"
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "Ви не є учасником жодної групи."
|
msgstr "Ви не є учасником жодної групи."
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "Ви є учасником групи:"
|
msgstr[0] "Ви є учасником групи:"
|
||||||
msgstr[1] "Ви є учасником таких груп:"
|
msgstr[1] "Ви є учасником таких груп:"
|
||||||
msgstr[2] "Ви є учасником таких груп:"
|
msgstr[2] "Ви є учасником таких груп:"
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
@ -4492,6 +4508,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4511,40 +4528,40 @@ msgid ""
|
|||||||
"tracking - not yet implemented.\n"
|
"tracking - not yet implemented.\n"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Команди:\n"
|
"Команди:\n"
|
||||||
"on - увімкнути сповіщення\n"
|
"on — увімкнути сповіщення\n"
|
||||||
"off - вимкнути сповіщення\n"
|
"off — вимкнути сповіщення\n"
|
||||||
"help - список команд\n"
|
"help — список команд\n"
|
||||||
"follow <nickname> - підписатись до користувача\n"
|
"follow <nickname> — підписатись до користувача\n"
|
||||||
"groups - групи, до яких Ви входите\n"
|
"groups — групи, до яких Ви входите\n"
|
||||||
"subscriptions - користувачі, до яких Ви підписані\n"
|
"subscriptions — користувачі, до яких Ви підписані\n"
|
||||||
"subscribers - користувачі, які підписані до Вас\n"
|
"subscribers — користувачі, які підписані до Вас\n"
|
||||||
"leave <nickname> - відписатись від користувача\n"
|
"leave <nickname> — відписатись від користувача\n"
|
||||||
"d <nickname> <text> - надіслати особисте повідомлення\n"
|
"d <nickname> <text> — надіслати особисте повідомлення\n"
|
||||||
"get <nickname> - отримати останній допис користувача\n"
|
"get <nickname> — отримати останній допис користувача\n"
|
||||||
"whois <nickname> - інфо про користувача\n"
|
"whois <nickname> — інфо про користувача\n"
|
||||||
"fav <nickname> - додати останній допис користувача до обраних\n"
|
"fav <nickname> — додати останній допис користувача до обраних\n"
|
||||||
"fav #<notice_id> - додати допис #номер до обраних\n"
|
"fav #<notice_id> — додати допис до обраних\n"
|
||||||
"reply #<notice_id> - відповісти на допис #номер\n"
|
"reply #<notice_id> — відповісти на допис\n"
|
||||||
"reply <nickname> - відповісти на останній допис користувача\n"
|
"reply <nickname> — відповісти на останній допис користувача\n"
|
||||||
"join <group> - приєднатися до групи\n"
|
"join <group> — приєднатися до групи\n"
|
||||||
"login - отримати посилання для входу у веб-інтерфейс\n"
|
"login — отримати посилання для входу у веб-інтерфейс\n"
|
||||||
"drop <group> - залишити групу\n"
|
"drop <group> — залишити групу\n"
|
||||||
"stats - отримати статистику\n"
|
"stats — отримати статистику\n"
|
||||||
"stop - те саме що і 'off'\n"
|
"stop — те саме що і 'off'\n"
|
||||||
"quit - те саме що і 'off'\n"
|
"quit — те саме що і 'off'\n"
|
||||||
"sub <nickname> - те саме що і 'follow'\n"
|
"sub <nickname> — те саме що і 'follow'\n"
|
||||||
"unsub <nickname> - те саме що і 'leave'\n"
|
"unsub <nickname> — те саме що і 'leave'\n"
|
||||||
"last <nickname> - те саме що і 'get'\n"
|
"last <nickname> — те саме що і 'get'\n"
|
||||||
"on <nickname> - наразі не виконується\n"
|
"on <nickname> — наразі не виконується\n"
|
||||||
"off <nickname> - наразі не виконується\n"
|
"off <nickname> — наразі не виконується\n"
|
||||||
"nudge <nickname> - «розштовхати»\n"
|
"nudge <nickname> — «розштовхати»\n"
|
||||||
"invite <phone number> - наразі не виконується\n"
|
"invite <phone number> — наразі не виконується\n"
|
||||||
"track <word> - наразі не виконується\n"
|
"track <word> — наразі не виконується\n"
|
||||||
"untrack <word> - наразі не виконується\n"
|
"untrack <word> — наразі не виконується\n"
|
||||||
"track off - наразі не виконується\n"
|
"track off — наразі не виконується\n"
|
||||||
"untrack all - наразі не виконується\n"
|
"untrack all — наразі не виконується\n"
|
||||||
"tracks - наразі не виконується\n"
|
"tracks — наразі не виконується\n"
|
||||||
"tracking - наразі не виконується\n"
|
"tracking — наразі не виконується\n"
|
||||||
|
|
||||||
#: lib/common.php:199
|
#: lib/common.php:199
|
||||||
msgid "No configuration file found. "
|
msgid "No configuration file found. "
|
||||||
@ -4589,11 +4606,7 @@ msgstr ""
|
|||||||
"Ви можете завантажити власне фонове зображення. Максимальний розмір файлу "
|
"Ви можете завантажити власне фонове зображення. Максимальний розмір файлу "
|
||||||
"становить 2Мб."
|
"становить 2Мб."
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr "Помилка кольорів за замовчуванням: "
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr "Дизайн за замовчуванням відновлено."
|
msgstr "Дизайн за замовчуванням відновлено."
|
||||||
|
|
||||||
@ -5128,7 +5141,7 @@ msgstr "Надіслати прямий допис"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "До"
|
msgstr "До"
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "Лишилось знаків"
|
msgstr "Лишилось знаків"
|
||||||
|
|
||||||
@ -5141,11 +5154,11 @@ msgstr "Надіслати допис"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "Що нового, %s?"
|
msgstr "Що нового, %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr "Вкласти"
|
msgstr "Вкласти"
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr "Вкласти файл"
|
msgstr "Вкласти файл"
|
||||||
|
|
||||||
@ -5412,7 +5425,11 @@ msgstr "Не вдалося підписати інших до Вас."
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "Не підписано!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "Не вдалося видалити підписку."
|
msgstr "Не вдалося видалити підписку."
|
||||||
|
|
||||||
|
@ -7,12 +7,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:21:00+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:27:36+0000\n"
|
||||||
"Language-Team: Vietnamese\n"
|
"Language-Team: Vietnamese\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: vi\n"
|
"X-Language-Code: vi\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -184,7 +184,12 @@ msgstr "Người dùng không có thông tin."
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "Không thể lưu hồ sơ cá nhân."
|
msgstr "Không thể lưu hồ sơ cá nhân."
|
||||||
|
|
||||||
#: actions/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."
|
msgid "Block user failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -584,7 +589,7 @@ msgstr "Nhóm"
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -846,52 +851,52 @@ msgstr ""
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "Kích thước không hợp lệ."
|
msgstr "Kích thước không hợp lệ."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Theme not available: %s"
|
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."
|
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
|
#, fuzzy
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "Thay đổi mật khẩu của bạn"
|
msgstr "Thay đổi mật khẩu của bạn"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "Thư mời"
|
msgstr "Thư mời"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "Thay đổi"
|
msgstr "Thay đổi"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "Thông báo mới"
|
msgstr "Thông báo mới"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr "Background Theme:"
|
msgstr "Background Theme:"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr "Background Theme:"
|
msgstr "Background Theme:"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"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 "
|
"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."
|
"về bạn."
|
||||||
|
|
||||||
#: actions/designadminpanel.php:452 lib/designsettings.php:139
|
#: actions/designadminpanel.php:457 lib/designsettings.php:139
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr "Background Theme:"
|
msgstr "Background Theme:"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "Thay đổi mật khẩu của bạn"
|
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
|
#, fuzzy
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "Kết nối"
|
msgstr "Kết nối"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "Tìm kiếm"
|
msgstr "Tìm kiếm"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "Chuỗi bất kỳ"
|
msgstr "Chuỗi bất kỳ"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "Đăng nhập"
|
msgstr "Đăng nhập"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -963,7 +968,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "Lưu"
|
msgstr "Lưu"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr "Lưu"
|
msgstr "Lưu"
|
||||||
@ -1431,20 +1436,20 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "Không thể cập nhật thành viên."
|
msgstr "Không thể cập nhật thành viên."
|
||||||
|
|
||||||
#: actions/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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr "Không thể lưu thông tin Twitter của bạn!"
|
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
|
#, fuzzy
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "Các tính năng đã được lưu."
|
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."
|
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."
|
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"
|
msgid "Send"
|
||||||
msgstr "Gửi"
|
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"
|
msgid "%s left group %s"
|
||||||
msgstr "%s và nhóm"
|
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."
|
msgid "Already logged in."
|
||||||
msgstr "Đã đăng nhập."
|
msgstr "Đã đăng nhập."
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "Nội dung tin nhắn không hợp lệ"
|
msgstr "Nội dung tin nhắn không hợp lệ"
|
||||||
@ -2106,8 +2111,8 @@ msgstr "Kết nối"
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr "Không hỗ trợ định dạng dữ liệu này."
|
msgstr "Không hỗ trợ định dạng dữ liệu này."
|
||||||
|
|
||||||
@ -4550,37 +4555,51 @@ msgstr "Không có mã số xác nhận."
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr ""
|
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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "Bạn chưa cập nhật thông tin riêng"
|
msgstr "Bạn chưa cập nhật thông tin riêng"
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "Bạn đã theo những người này:"
|
msgstr[0] "Bạn đã theo những người này:"
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "Không thể tạo favorite."
|
msgstr "Không thể tạo favorite."
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "Không thể tạo favorite."
|
msgstr[0] "Không thể tạo favorite."
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "Bạn chưa cập nhật thông tin riêng"
|
msgstr "Bạn chưa cập nhật thông tin riêng"
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "Bạn chưa cập nhật thông tin riêng"
|
msgstr[0] "Bạn chưa cập nhật thông tin riêng"
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4599,6 +4618,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\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 "
|
"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."
|
"về bạn."
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5189,7 +5205,7 @@ msgstr "Xóa tin nhắn"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "Nhiều hơn 6 ký tự"
|
msgstr "Nhiều hơn 6 ký tự"
|
||||||
@ -5204,11 +5220,11 @@ msgstr "Thông báo mới"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "Bạn đang làm gì thế, %s?"
|
msgstr "Bạn đang làm gì thế, %s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5499,7 +5515,12 @@ msgstr "Không thể tạo favorite."
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "Chưa đăng nhận!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "Không thể xóa đăng nhận."
|
msgstr "Không thể xóa đăng nhận."
|
||||||
|
|
||||||
|
@ -9,12 +9,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:21:03+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:27:39+0000\n"
|
||||||
"Language-Team: Simplified Chinese\n"
|
"Language-Team: Simplified Chinese\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: zh-hans\n"
|
"X-Language-Code: zh-hans\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -186,7 +186,12 @@ msgstr "用户没有个人信息。"
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "无法保存个人信息。"
|
msgstr "无法保存个人信息。"
|
||||||
|
|
||||||
#: actions/apiblockcreate.php:108
|
#: actions/apiblockcreate.php:105
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot block yourself!"
|
||||||
|
msgstr "无法更新用户。"
|
||||||
|
|
||||||
|
#: actions/apiblockcreate.php:119
|
||||||
msgid "Block user failed."
|
msgid "Block user failed."
|
||||||
msgstr "阻止用户失败。"
|
msgstr "阻止用户失败。"
|
||||||
|
|
||||||
@ -578,7 +583,7 @@ msgstr "剪裁"
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -842,110 +847,110 @@ msgstr ""
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "大小不正确。"
|
msgstr "大小不正确。"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "这个页面不提供您想要的媒体类型"
|
msgstr "这个页面不提供您想要的媒体类型"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "修改密码"
|
msgstr "修改密码"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "邀请"
|
msgstr "邀请"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "修改"
|
msgstr "修改"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "新通告"
|
msgstr "新通告"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr "登出本站"
|
msgstr "登出本站"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr "你可以给你的组上载一个logo图。"
|
msgstr "你可以给你的组上载一个logo图。"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:452 lib/designsettings.php:139
|
#: actions/designadminpanel.php:457 lib/designsettings.php:139
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "修改密码"
|
msgstr "修改密码"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "连接"
|
msgstr "连接"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr "搜索"
|
msgstr "搜索"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr "文本"
|
msgstr "文本"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "登录"
|
msgstr "登录"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -955,7 +960,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr "保存"
|
msgstr "保存"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1404,20 +1409,20 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "无法更新用户。"
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr "无法保存 Twitter 设置!"
|
msgstr "无法保存 Twitter 设置!"
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
|
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr "同步选项已保存。"
|
msgstr "同步选项已保存。"
|
||||||
@ -1731,7 +1736,7 @@ msgstr "个人消息"
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr "在邀请中加几句话(可选)。"
|
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"
|
msgid "Send"
|
||||||
msgstr "发送"
|
msgstr "发送"
|
||||||
|
|
||||||
@ -1835,11 +1840,11 @@ msgstr "无法订阅用户:未找到。"
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr "%s 离开群 %s"
|
msgstr "%s 离开群 %s"
|
||||||
|
|
||||||
#: actions/login.php:79 actions/register.php:137
|
#: actions/login.php:82 actions/register.php:137
|
||||||
msgid "Already logged in."
|
msgid "Already logged in."
|
||||||
msgstr "已登录。"
|
msgstr "已登录。"
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr "通告内容不正确"
|
msgstr "通告内容不正确"
|
||||||
@ -2048,8 +2053,8 @@ msgstr "连接"
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr "不支持的数据格式。"
|
msgstr "不支持的数据格式。"
|
||||||
|
|
||||||
@ -4455,37 +4460,51 @@ msgstr "通告开启。"
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr "无法开启通告。"
|
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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "您未告知此个人信息"
|
msgstr "您未告知此个人信息"
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "您已订阅这些用户:"
|
msgstr[0] "您已订阅这些用户:"
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "无法订阅他人更新。"
|
msgstr "无法订阅他人更新。"
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "无法订阅他人更新。"
|
msgstr[0] "无法订阅他人更新。"
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "您未告知此个人信息"
|
msgstr "您未告知此个人信息"
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "您未告知此个人信息"
|
msgstr[0] "您未告知此个人信息"
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4504,6 +4523,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4568,11 +4588,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"You can upload your personal background image. The maximum file size is 2MB."
|
||||||
msgstr "您可以在这里上传个人头像。"
|
msgstr "您可以在这里上传个人头像。"
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5048,7 +5064,7 @@ msgstr "删除通告"
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr "到"
|
msgstr "到"
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "6 个或更多字符"
|
msgstr "6 个或更多字符"
|
||||||
@ -5063,11 +5079,11 @@ msgstr "发送消息"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr "怎么样,%s?"
|
msgstr "怎么样,%s?"
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5355,7 +5371,12 @@ msgstr "无法订阅他人更新。"
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "未订阅!"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "无法删除订阅。"
|
msgstr "无法删除订阅。"
|
||||||
|
|
||||||
|
@ -7,12 +7,12 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: StatusNet\n"
|
"Project-Id-Version: StatusNet\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2009-12-02 23:18+0000\n"
|
"POT-Creation-Date: 2009-12-07 21:25+0000\n"
|
||||||
"PO-Revision-Date: 2009-12-02 23:21:06+0000\n"
|
"PO-Revision-Date: 2009-12-07 21:27:42+0000\n"
|
||||||
"Language-Team: Traditional Chinese\n"
|
"Language-Team: Traditional Chinese\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: MediaWiki 1.16alpha(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-Translation-Project: translatewiki.net at http://translatewiki.net\n"
|
||||||
"X-Language-Code: zh-hant\n"
|
"X-Language-Code: zh-hant\n"
|
||||||
"X-Message-Group: out-statusnet\n"
|
"X-Message-Group: out-statusnet\n"
|
||||||
@ -183,7 +183,12 @@ msgstr ""
|
|||||||
msgid "Could not save profile."
|
msgid "Could not save profile."
|
||||||
msgstr "無法儲存個人資料"
|
msgstr "無法儲存個人資料"
|
||||||
|
|
||||||
#: actions/apiblockcreate.php:108
|
#: actions/apiblockcreate.php:105
|
||||||
|
#, fuzzy
|
||||||
|
msgid "You cannot block yourself!"
|
||||||
|
msgstr "無法更新使用者"
|
||||||
|
|
||||||
|
#: actions/apiblockcreate.php:119
|
||||||
msgid "Block user failed."
|
msgid "Block user failed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -571,7 +576,7 @@ msgstr ""
|
|||||||
#: actions/emailsettings.php:238 actions/favor.php:75
|
#: actions/emailsettings.php:238 actions/favor.php:75
|
||||||
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
#: actions/groupblock.php:66 actions/grouplogo.php:309
|
||||||
#: actions/groupunblock.php:66 actions/imsettings.php:206
|
#: 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/newmessage.php:135 actions/newnotice.php:103 actions/nudge.php:80
|
||||||
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
#: actions/othersettings.php:145 actions/passwordsettings.php:138
|
||||||
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
#: actions/profilesettings.php:187 actions/recoverpassword.php:337
|
||||||
@ -830,108 +835,108 @@ msgstr ""
|
|||||||
msgid "Design settings for this StatusNet site."
|
msgid "Design settings for this StatusNet site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:270
|
#: actions/designadminpanel.php:275
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Invalid logo URL."
|
msgid "Invalid logo URL."
|
||||||
msgstr "尺寸錯誤"
|
msgstr "尺寸錯誤"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:274
|
#: actions/designadminpanel.php:279
|
||||||
#, fuzzy, php-format
|
#, fuzzy, php-format
|
||||||
msgid "Theme not available: %s"
|
msgid "Theme not available: %s"
|
||||||
msgstr "個人首頁位址錯誤"
|
msgstr "個人首頁位址錯誤"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:370
|
#: actions/designadminpanel.php:375
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change logo"
|
msgid "Change logo"
|
||||||
msgstr "更改密碼"
|
msgstr "更改密碼"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:375
|
#: actions/designadminpanel.php:380
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site logo"
|
msgid "Site logo"
|
||||||
msgstr "新訊息"
|
msgstr "新訊息"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:382
|
#: actions/designadminpanel.php:387
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change theme"
|
msgid "Change theme"
|
||||||
msgstr "更改"
|
msgstr "更改"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:399
|
#: actions/designadminpanel.php:404
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Site theme"
|
msgid "Site theme"
|
||||||
msgstr "新訊息"
|
msgstr "新訊息"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:400
|
#: actions/designadminpanel.php:405
|
||||||
msgid "Theme for the site."
|
msgid "Theme for the site."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:412 lib/designsettings.php:101
|
#: actions/designadminpanel.php:417 lib/designsettings.php:101
|
||||||
msgid "Change background image"
|
msgid "Change background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:417 actions/designadminpanel.php:492
|
#: actions/designadminpanel.php:422 actions/designadminpanel.php:497
|
||||||
#: lib/designsettings.php:178
|
#: lib/designsettings.php:178
|
||||||
msgid "Background"
|
msgid "Background"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:422
|
#: actions/designadminpanel.php:427
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"You can upload a background image for the site. The maximum file size is %1"
|
"You can upload a background image for the site. The maximum file size is %1"
|
||||||
"$s."
|
"$s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:452 lib/designsettings.php:139
|
#: actions/designadminpanel.php:457 lib/designsettings.php:139
|
||||||
msgid "On"
|
msgid "On"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:468 lib/designsettings.php:155
|
#: actions/designadminpanel.php:473 lib/designsettings.php:155
|
||||||
msgid "Off"
|
msgid "Off"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:469 lib/designsettings.php:156
|
#: actions/designadminpanel.php:474 lib/designsettings.php:156
|
||||||
msgid "Turn background image on or off."
|
msgid "Turn background image on or off."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:474 lib/designsettings.php:161
|
#: actions/designadminpanel.php:479 lib/designsettings.php:161
|
||||||
msgid "Tile background image"
|
msgid "Tile background image"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:483 lib/designsettings.php:170
|
#: actions/designadminpanel.php:488 lib/designsettings.php:170
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Change colours"
|
msgid "Change colours"
|
||||||
msgstr "更改密碼"
|
msgstr "更改密碼"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:505 lib/designsettings.php:191
|
#: actions/designadminpanel.php:510 lib/designsettings.php:191
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Content"
|
msgid "Content"
|
||||||
msgstr "連結"
|
msgstr "連結"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:518 lib/designsettings.php:204
|
#: actions/designadminpanel.php:523 lib/designsettings.php:204
|
||||||
msgid "Sidebar"
|
msgid "Sidebar"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:531 lib/designsettings.php:217
|
#: actions/designadminpanel.php:536 lib/designsettings.php:217
|
||||||
msgid "Text"
|
msgid "Text"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:544 lib/designsettings.php:230
|
#: actions/designadminpanel.php:549 lib/designsettings.php:230
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Links"
|
msgid "Links"
|
||||||
msgstr "登入"
|
msgstr "登入"
|
||||||
|
|
||||||
#: actions/designadminpanel.php:572 lib/designsettings.php:247
|
#: actions/designadminpanel.php:577 lib/designsettings.php:247
|
||||||
msgid "Use defaults"
|
msgid "Use defaults"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:573 lib/designsettings.php:248
|
#: actions/designadminpanel.php:578 lib/designsettings.php:248
|
||||||
msgid "Restore default designs"
|
msgid "Restore default designs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:579 lib/designsettings.php:254
|
#: actions/designadminpanel.php:584 lib/designsettings.php:254
|
||||||
msgid "Reset back to default"
|
msgid "Reset back to default"
|
||||||
msgstr ""
|
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/imsettings.php:163 actions/othersettings.php:126
|
||||||
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
#: actions/pathsadminpanel.php:296 actions/profilesettings.php:167
|
||||||
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
#: actions/siteadminpanel.php:421 actions/smssettings.php:181
|
||||||
@ -941,7 +946,7 @@ msgstr ""
|
|||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/designadminpanel.php:582 lib/designsettings.php:257
|
#: actions/designadminpanel.php:587 lib/designsettings.php:257
|
||||||
msgid "Save design"
|
msgid "Save design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1375,19 +1380,19 @@ msgid ""
|
|||||||
"palette of your choice."
|
"palette of your choice."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:262 actions/userdesignsettings.php:186
|
#: actions/groupdesignsettings.php:263 actions/userdesignsettings.php:186
|
||||||
#: lib/designsettings.php:434 lib/designsettings.php:464
|
#: lib/designsettings.php:391 lib/designsettings.php:413
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Couldn't update your design."
|
msgid "Couldn't update your design."
|
||||||
msgstr "無法更新使用者"
|
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:210 actions/userdesignsettings.php:220
|
||||||
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
#: actions/userdesignsettings.php:263 actions/userdesignsettings.php:273
|
||||||
msgid "Unable to save your design settings!"
|
msgid "Unable to save your design settings!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/groupdesignsettings.php:307 actions/userdesignsettings.php:231
|
#: actions/groupdesignsettings.php:308 actions/userdesignsettings.php:231
|
||||||
msgid "Design preferences saved."
|
msgid "Design preferences saved."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1691,7 +1696,7 @@ msgstr ""
|
|||||||
msgid "Optionally add a personal message to the invitation."
|
msgid "Optionally add a personal message to the invitation."
|
||||||
msgstr ""
|
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"
|
msgid "Send"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1771,11 +1776,11 @@ msgstr "無法從 %s 建立OpenID"
|
|||||||
msgid "%s left group %s"
|
msgid "%s left group %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/login.php:79 actions/register.php:137
|
#: actions/login.php:82 actions/register.php:137
|
||||||
msgid "Already logged in."
|
msgid "Already logged in."
|
||||||
msgstr "已登入"
|
msgstr "已登入"
|
||||||
|
|
||||||
#: actions/login.php:108 actions/login.php:118
|
#: actions/login.php:113 actions/login.php:123
|
||||||
msgid "Invalid or expired token."
|
msgid "Invalid or expired token."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -1977,8 +1982,8 @@ msgstr "連結"
|
|||||||
msgid "Only "
|
msgid "Only "
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:999
|
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:996
|
||||||
#: lib/api.php:1027 lib/api.php:1137
|
#: lib/api.php:1024 lib/api.php:1134
|
||||||
msgid "Not a supported data format."
|
msgid "Not a supported data format."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4299,37 +4304,51 @@ msgstr ""
|
|||||||
msgid "Can't turn on notification."
|
msgid "Can't turn on notification."
|
||||||
msgstr ""
|
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
|
#, fuzzy
|
||||||
msgid "You are not subscribed to anyone."
|
msgid "You are not subscribed to anyone."
|
||||||
msgstr "此帳號已註冊"
|
msgstr "此帳號已註冊"
|
||||||
|
|
||||||
#: lib/command.php:594
|
#: lib/command.php:625
|
||||||
msgid "You are subscribed to this person:"
|
msgid "You are subscribed to this person:"
|
||||||
msgid_plural "You are subscribed to these people:"
|
msgid_plural "You are subscribed to these people:"
|
||||||
msgstr[0] "此帳號已註冊"
|
msgstr[0] "此帳號已註冊"
|
||||||
|
|
||||||
#: lib/command.php:614
|
#: lib/command.php:645
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "No one is subscribed to you."
|
msgid "No one is subscribed to you."
|
||||||
msgstr "無此訂閱"
|
msgstr "無此訂閱"
|
||||||
|
|
||||||
#: lib/command.php:616
|
#: lib/command.php:647
|
||||||
msgid "This person is subscribed to you:"
|
msgid "This person is subscribed to you:"
|
||||||
msgid_plural "These people are subscribed to you:"
|
msgid_plural "These people are subscribed to you:"
|
||||||
msgstr[0] "無此訂閱"
|
msgstr[0] "無此訂閱"
|
||||||
|
|
||||||
#: lib/command.php:636
|
#: lib/command.php:667
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "You are not a member of any groups."
|
msgid "You are not a member of any groups."
|
||||||
msgstr "無法連結到伺服器:%s"
|
msgstr "無法連結到伺服器:%s"
|
||||||
|
|
||||||
#: lib/command.php:638
|
#: lib/command.php:669
|
||||||
msgid "You are a member of this group:"
|
msgid "You are a member of this group:"
|
||||||
msgid_plural "You are a member of these groups:"
|
msgid_plural "You are a member of these groups:"
|
||||||
msgstr[0] "無法連結到伺服器:%s"
|
msgstr[0] "無法連結到伺服器:%s"
|
||||||
|
|
||||||
#: lib/command.php:652
|
#: lib/command.php:683
|
||||||
msgid ""
|
msgid ""
|
||||||
"Commands:\n"
|
"Commands:\n"
|
||||||
"on - turn on notifications\n"
|
"on - turn on notifications\n"
|
||||||
@ -4348,6 +4367,7 @@ msgid ""
|
|||||||
"reply #<notice_id> - reply to notice with a given id\n"
|
"reply #<notice_id> - reply to notice with a given id\n"
|
||||||
"reply <nickname> - reply to the last notice from user\n"
|
"reply <nickname> - reply to the last notice from user\n"
|
||||||
"join <group> - join group\n"
|
"join <group> - join group\n"
|
||||||
|
"login - Get a link to login to the web interface\n"
|
||||||
"drop <group> - leave group\n"
|
"drop <group> - leave group\n"
|
||||||
"stats - get your stats\n"
|
"stats - get your stats\n"
|
||||||
"stop - same as 'off'\n"
|
"stop - same as 'off'\n"
|
||||||
@ -4410,11 +4430,7 @@ msgid ""
|
|||||||
"You can upload your personal background image. The maximum file size is 2MB."
|
"You can upload your personal background image. The maximum file size is 2MB."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/designsettings.php:372
|
#: lib/designsettings.php:418
|
||||||
msgid "Bad default color settings: "
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: lib/designsettings.php:468
|
|
||||||
msgid "Design defaults restored."
|
msgid "Design defaults restored."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -4875,7 +4891,7 @@ msgstr ""
|
|||||||
msgid "To"
|
msgid "To"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/messageform.php:162 lib/noticeform.php:186
|
#: lib/messageform.php:161 lib/noticeform.php:185
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Available characters"
|
msgid "Available characters"
|
||||||
msgstr "6個以上字元"
|
msgstr "6個以上字元"
|
||||||
@ -4890,11 +4906,11 @@ msgstr "新訊息"
|
|||||||
msgid "What's up, %s?"
|
msgid "What's up, %s?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:193
|
#: lib/noticeform.php:192
|
||||||
msgid "Attach"
|
msgid "Attach"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: lib/noticeform.php:197
|
#: lib/noticeform.php:196
|
||||||
msgid "Attach a file"
|
msgid "Attach a file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -5169,7 +5185,12 @@ msgstr ""
|
|||||||
msgid "Not subscribed!"
|
msgid "Not subscribed!"
|
||||||
msgstr "此帳號已註冊"
|
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."
|
msgid "Couldn't delete subscription."
|
||||||
msgstr "無法刪除帳號"
|
msgstr "無法刪除帳號"
|
||||||
|
|
||||||
|
@ -48,8 +48,8 @@ class FBConnectauthAction extends Action
|
|||||||
common_log(LOG_WARNING, 'Facebook Connect Plugin - ' .
|
common_log(LOG_WARNING, 'Facebook Connect Plugin - ' .
|
||||||
"Failed auth attempt, proxy = $proxy, ip = $ip.");
|
"Failed auth attempt, proxy = $proxy, ip = $ip.");
|
||||||
|
|
||||||
$this->clientError(_('You must be logged into Facebook to ' .
|
$this->clientError(_m('You must be logged into Facebook to ' .
|
||||||
'use Facebook Connect.'));
|
'use Facebook Connect.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
@ -74,7 +74,7 @@ class FBConnectauthAction extends Action
|
|||||||
// We don't want these cookies
|
// We don't want these cookies
|
||||||
getFacebook()->clear_cookie_state();
|
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 {
|
} else {
|
||||||
|
|
||||||
@ -87,12 +87,12 @@ class FBConnectauthAction extends Action
|
|||||||
|
|
||||||
$token = $this->trimmed('token');
|
$token = $this->trimmed('token');
|
||||||
if (!$token || $token != common_session_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;
|
return;
|
||||||
}
|
}
|
||||||
if ($this->arg('create')) {
|
if ($this->arg('create')) {
|
||||||
if (!$this->boolean('license')) {
|
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'));
|
$this->trimmed('newname'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -102,7 +102,7 @@ class FBConnectauthAction extends Action
|
|||||||
} else {
|
} else {
|
||||||
common_debug('Facebook Connect Plugin - ' .
|
common_debug('Facebook Connect Plugin - ' .
|
||||||
print_r($this->args, true));
|
print_r($this->args, true));
|
||||||
$this->showForm(_('Something weird happened.'),
|
$this->showForm(_m('Something weird happened.'),
|
||||||
$this->trimmed('newname'));
|
$this->trimmed('newname'));
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -116,13 +116,13 @@ class FBConnectauthAction extends Action
|
|||||||
$this->element('div', array('class' => 'error'), $this->error);
|
$this->element('div', array('class' => 'error'), $this->error);
|
||||||
} else {
|
} else {
|
||||||
$this->element('div', 'instructions',
|
$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()
|
function title()
|
||||||
{
|
{
|
||||||
return _('Facebook Account Setup');
|
return _m('Facebook Account Setup');
|
||||||
}
|
}
|
||||||
|
|
||||||
function showForm($error=null, $username=null)
|
function showForm($error=null, $username=null)
|
||||||
@ -150,7 +150,7 @@ class FBConnectauthAction extends Action
|
|||||||
'class' => 'form_settings',
|
'class' => 'form_settings',
|
||||||
'action' => common_local_url('FBConnectAuth')));
|
'action' => common_local_url('FBConnectAuth')));
|
||||||
$this->elementStart('fieldset', array('id' => 'settings_facebook_connect_options'));
|
$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('ul', 'form_data');
|
||||||
$this->elementStart('li');
|
$this->elementStart('li');
|
||||||
$this->element('input', array('type' => 'checkbox',
|
$this->element('input', array('type' => 'checkbox',
|
||||||
@ -159,10 +159,10 @@ class FBConnectauthAction extends Action
|
|||||||
'name' => 'license',
|
'name' => 'license',
|
||||||
'value' => 'true'));
|
'value' => 'true'));
|
||||||
$this->elementStart('label', array('class' => 'checkbox', 'for' => 'license'));
|
$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')),
|
$this->element('a', array('href' => common_config('license', 'url')),
|
||||||
common_config('license', 'title'));
|
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('label');
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
$this->elementEnd('ul');
|
$this->elementEnd('ul');
|
||||||
@ -170,33 +170,33 @@ class FBConnectauthAction extends Action
|
|||||||
$this->elementStart('fieldset');
|
$this->elementStart('fieldset');
|
||||||
$this->hidden('token', common_session_token());
|
$this->hidden('token', common_session_token());
|
||||||
$this->element('legend', null,
|
$this->element('legend', null,
|
||||||
_('Create new account'));
|
_m('Create new account'));
|
||||||
$this->element('p', null,
|
$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('ul', 'form_data');
|
||||||
$this->elementStart('li');
|
$this->elementStart('li');
|
||||||
$this->input('newname', _('New nickname'),
|
$this->input('newname', _m('New nickname'),
|
||||||
($this->username) ? $this->username : '',
|
($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('li');
|
||||||
$this->elementEnd('ul');
|
$this->elementEnd('ul');
|
||||||
$this->submit('create', _('Create'));
|
$this->submit('create', _m('Create'));
|
||||||
$this->elementEnd('fieldset');
|
$this->elementEnd('fieldset');
|
||||||
|
|
||||||
$this->elementStart('fieldset');
|
$this->elementStart('fieldset');
|
||||||
$this->element('legend', null,
|
$this->element('legend', null,
|
||||||
_('Connect existing account'));
|
_m('Connect existing account'));
|
||||||
$this->element('p', null,
|
$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('ul', 'form_data');
|
||||||
$this->elementStart('li');
|
$this->elementStart('li');
|
||||||
$this->input('nickname', _('Existing nickname'));
|
$this->input('nickname', _m('Existing nickname'));
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
$this->elementStart('li');
|
$this->elementStart('li');
|
||||||
$this->password('password', _('Password'));
|
$this->password('password', _m('Password'));
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
$this->elementEnd('ul');
|
$this->elementEnd('ul');
|
||||||
$this->submit('connect', _('Connect'));
|
$this->submit('connect', _m('Connect'));
|
||||||
$this->elementEnd('fieldset');
|
$this->elementEnd('fieldset');
|
||||||
|
|
||||||
$this->elementEnd('fieldset');
|
$this->elementEnd('fieldset');
|
||||||
@ -212,7 +212,7 @@ class FBConnectauthAction extends Action
|
|||||||
function createNewUser()
|
function createNewUser()
|
||||||
{
|
{
|
||||||
if (common_config('site', 'closed')) {
|
if (common_config('site', 'closed')) {
|
||||||
$this->clientError(_('Registration not allowed.'));
|
$this->clientError(_m('Registration not allowed.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -221,14 +221,14 @@ class FBConnectauthAction extends Action
|
|||||||
if (common_config('site', 'inviteonly')) {
|
if (common_config('site', 'inviteonly')) {
|
||||||
$code = $_SESSION['invitecode'];
|
$code = $_SESSION['invitecode'];
|
||||||
if (empty($code)) {
|
if (empty($code)) {
|
||||||
$this->clientError(_('Registration not allowed.'));
|
$this->clientError(_m('Registration not allowed.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$invite = Invitation::staticGet($code);
|
$invite = Invitation::staticGet($code);
|
||||||
|
|
||||||
if (empty($invite)) {
|
if (empty($invite)) {
|
||||||
$this->clientError(_('Not a valid invitation code.'));
|
$this->clientError(_m('Not a valid invitation code.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -238,17 +238,17 @@ class FBConnectauthAction extends Action
|
|||||||
if (!Validate::string($nickname, array('min_length' => 1,
|
if (!Validate::string($nickname, array('min_length' => 1,
|
||||||
'max_length' => 64,
|
'max_length' => 64,
|
||||||
'format' => NICKNAME_FMT))) {
|
'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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!User::allowed_nickname($nickname)) {
|
if (!User::allowed_nickname($nickname)) {
|
||||||
$this->showForm(_('Nickname not allowed.'));
|
$this->showForm(_m('Nickname not allowed.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (User::staticGet('nickname', $nickname)) {
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -266,7 +266,7 @@ class FBConnectauthAction extends Action
|
|||||||
$result = $this->flinkUser($user->id, $this->fbuid);
|
$result = $this->flinkUser($user->id, $this->fbuid);
|
||||||
|
|
||||||
if (!$result) {
|
if (!$result) {
|
||||||
$this->serverError(_('Error connecting user to Facebook.'));
|
$this->serverError(_m('Error connecting user to Facebook.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -286,7 +286,7 @@ class FBConnectauthAction extends Action
|
|||||||
$password = $this->trimmed('password');
|
$password = $this->trimmed('password');
|
||||||
|
|
||||||
if (!common_check_user($nickname, $password)) {
|
if (!common_check_user($nickname, $password)) {
|
||||||
$this->showForm(_('Invalid username or password.'));
|
$this->showForm(_m('Invalid username or password.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -300,7 +300,7 @@ class FBConnectauthAction extends Action
|
|||||||
$result = $this->flinkUser($user->id, $this->fbuid);
|
$result = $this->flinkUser($user->id, $this->fbuid);
|
||||||
|
|
||||||
if (!$result) {
|
if (!$result) {
|
||||||
$this->serverError(_('Error connecting user to Facebook.'));
|
$this->serverError(_m('Error connecting user to Facebook.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -320,7 +320,7 @@ class FBConnectauthAction extends Action
|
|||||||
$result = $this->flinkUser($user->id, $this->fbuid);
|
$result = $this->flinkUser($user->id, $this->fbuid);
|
||||||
|
|
||||||
if (empty($result)) {
|
if (empty($result)) {
|
||||||
$this->serverError(_('Error connecting user to Facebook.'));
|
$this->serverError(_m('Error connecting user to Facebook.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -30,7 +30,7 @@ class FBConnectLoginAction extends Action
|
|||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
|
|
||||||
if (common_is_real_login()) {
|
if (common_is_real_login()) {
|
||||||
$this->clientError(_('Already logged in.'));
|
$this->clientError(_m('Already logged in.'));
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->showPage();
|
$this->showPage();
|
||||||
@ -38,7 +38,7 @@ class FBConnectLoginAction extends Action
|
|||||||
|
|
||||||
function getInstructions()
|
function getInstructions()
|
||||||
{
|
{
|
||||||
return _('Login with your Facebook Account');
|
return _m('Login with your Facebook Account');
|
||||||
}
|
}
|
||||||
|
|
||||||
function showPageNotice()
|
function showPageNotice()
|
||||||
@ -52,7 +52,7 @@ class FBConnectLoginAction extends Action
|
|||||||
|
|
||||||
function title()
|
function title()
|
||||||
{
|
{
|
||||||
return _('Facebook Login');
|
return _m('Facebook Login');
|
||||||
}
|
}
|
||||||
|
|
||||||
function showContent() {
|
function showContent() {
|
||||||
|
@ -53,7 +53,7 @@ class FBConnectSettingsAction extends ConnectSettingsAction
|
|||||||
|
|
||||||
function title()
|
function title()
|
||||||
{
|
{
|
||||||
return _('Facebook Connect Settings');
|
return _m('Facebook Connect Settings');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -64,7 +64,7 @@ class FBConnectSettingsAction extends ConnectSettingsAction
|
|||||||
|
|
||||||
function getInstructions()
|
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) {
|
if (!$flink) {
|
||||||
|
|
||||||
$this->element('p', 'instructions',
|
$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()',
|
$this->element('fb:login-button', array('onlogin' => 'goto_login()',
|
||||||
'length' => 'long'));
|
'length' => 'long'));
|
||||||
@ -97,7 +97,7 @@ class FBConnectSettingsAction extends ConnectSettingsAction
|
|||||||
} else {
|
} else {
|
||||||
|
|
||||||
$this->element('p', 'form_note',
|
$this->element('p', 'form_note',
|
||||||
_('Connected Facebook user'));
|
_m('Connected Facebook user'));
|
||||||
|
|
||||||
$this->elementStart('p', array('class' => 'facebook-user-display'));
|
$this->elementStart('p', array('class' => 'facebook-user-display'));
|
||||||
$this->elementStart('fb:profile-pic',
|
$this->elementStart('fb:profile-pic',
|
||||||
@ -116,18 +116,18 @@ class FBConnectSettingsAction extends ConnectSettingsAction
|
|||||||
|
|
||||||
$this->elementStart('fieldset');
|
$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) {
|
if (!$user->password) {
|
||||||
|
|
||||||
$this->elementStart('p', array('class' => 'form_guide'));
|
$this->elementStart('p', array('class' => 'form_guide'));
|
||||||
$this->text(_('Disconnecting your Faceboook ' .
|
$this->text(_m('Disconnecting your Faceboook ' .
|
||||||
'would make it impossible to log in! Please '));
|
'would make it impossible to log in! Please '));
|
||||||
$this->element('a',
|
$this->element('a',
|
||||||
array('href' => common_local_url('passwordsettings')),
|
array('href' => common_local_url('passwordsettings')),
|
||||||
_('set a password'));
|
_m('set a password'));
|
||||||
|
|
||||||
$this->text(_(' first.'));
|
$this->text(_m(' first.'));
|
||||||
$this->elementEnd('p');
|
$this->elementEnd('p');
|
||||||
} else {
|
} else {
|
||||||
|
|
||||||
@ -139,7 +139,7 @@ class FBConnectSettingsAction extends ConnectSettingsAction
|
|||||||
$this->element('p', 'instructions',
|
$this->element('p', 'instructions',
|
||||||
sprintf($note, $site, $site));
|
sprintf($note, $site, $site));
|
||||||
|
|
||||||
$this->submit('disconnect', _('Disconnect'));
|
$this->submit('disconnect', _m('Disconnect'));
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->elementEnd('fieldset');
|
$this->elementEnd('fieldset');
|
||||||
@ -161,8 +161,8 @@ class FBConnectSettingsAction extends ConnectSettingsAction
|
|||||||
// CSRF protection
|
// CSRF protection
|
||||||
$token = $this->trimmed('token');
|
$token = $this->trimmed('token');
|
||||||
if (!$token || $token != common_session_token()) {
|
if (!$token || $token != common_session_token()) {
|
||||||
$this->showForm(_('There was a problem with your session token. '.
|
$this->showForm(_m('There was a problem with your session token. '.
|
||||||
'Try again, please.'));
|
'Try again, please.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -175,7 +175,7 @@ class FBConnectSettingsAction extends ConnectSettingsAction
|
|||||||
|
|
||||||
if ($result === false) {
|
if ($result === false) {
|
||||||
common_log_db_error($user, 'DELETE', __FILE__);
|
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;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -191,10 +191,10 @@ class FBConnectSettingsAction extends ConnectSettingsAction
|
|||||||
$e->getMessage());
|
$e->getMessage());
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->showForm(_('You have disconnected from Facebook.'), true);
|
$this->showForm(_m('You have disconnected from Facebook.'), true);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
$this->showForm(_('Not sure what you\'re trying to do.'));
|
$this->showForm(_m('Not sure what you\'re trying to do.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -185,7 +185,6 @@ class FacebookPlugin extends Plugin
|
|||||||
// XXX: Facebook says we don't need this FB_RequireFeatures(),
|
// XXX: Facebook says we don't need this FB_RequireFeatures(),
|
||||||
// but we actually do, for IE and Safari. Gar.
|
// but we actually do, for IE and Safari. Gar.
|
||||||
|
|
||||||
$js = '<script type="text/javascript">';
|
|
||||||
$js .= ' $(document).ready(function () {';
|
$js .= ' $(document).ready(function () {';
|
||||||
$js .= ' FB_RequireFeatures(';
|
$js .= ' FB_RequireFeatures(';
|
||||||
$js .= ' ["XFBML"], function() {';
|
$js .= ' ["XFBML"], function() {';
|
||||||
@ -219,7 +218,6 @@ class FacebookPlugin extends Plugin
|
|||||||
$js .= ' }';
|
$js .= ' }';
|
||||||
$js .= ' );';
|
$js .= ' );';
|
||||||
$js .= ' });';
|
$js .= ' });';
|
||||||
$js .= '</script>';
|
|
||||||
|
|
||||||
$js = sprintf($js, $apikey, $login_url, $logout_url);
|
$js = sprintf($js, $apikey, $login_url, $logout_url);
|
||||||
|
|
||||||
@ -227,7 +225,7 @@ class FacebookPlugin extends Plugin
|
|||||||
|
|
||||||
$js = str_replace(' ', '', $js);
|
$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_name = $action->trimmed('action');
|
||||||
|
|
||||||
$action->menuItem(common_local_url('FBConnectLogin'),
|
$action->menuItem(common_local_url('FBConnectLogin'),
|
||||||
_('Facebook'),
|
_m('Facebook'),
|
||||||
_('Login or register using Facebook'),
|
_m('Login or register using Facebook'),
|
||||||
'FBConnectLogin' === $action_name);
|
'FBConnectLogin' === $action_name);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -428,8 +426,8 @@ class FacebookPlugin extends Plugin
|
|||||||
$action_name = $action->trimmed('action');
|
$action_name = $action->trimmed('action');
|
||||||
|
|
||||||
$action->menuItem(common_local_url('FBConnectSettings'),
|
$action->menuItem(common_local_url('FBConnectSettings'),
|
||||||
_('Facebook'),
|
_m('Facebook'),
|
||||||
_('Facebook Connect Settings'),
|
_m('Facebook Connect Settings'),
|
||||||
$action_name === 'FBConnectSettings');
|
$action_name === 'FBConnectSettings');
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
@ -44,7 +44,7 @@ class FacebookAction extends Action
|
|||||||
var $app_uri = null;
|
var $app_uri = null;
|
||||||
var $app_name = 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);
|
parent::__construct($output, $indent);
|
||||||
|
|
||||||
@ -168,7 +168,7 @@ class FacebookAction extends Action
|
|||||||
$this->elementStart('li', array('class' =>
|
$this->elementStart('li', array('class' =>
|
||||||
($this->action == 'facebookhome') ? 'current' : 'facebook_home'));
|
($this->action == 'facebookhome') ? 'current' : 'facebook_home'));
|
||||||
$this->element('a',
|
$this->element('a',
|
||||||
array('href' => 'index.php', 'title' => _('Home')), _('Home'));
|
array('href' => 'index.php', 'title' => _m('Home')), _m('Home'));
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
|
|
||||||
if (common_config('invite', 'enabled')) {
|
if (common_config('invite', 'enabled')) {
|
||||||
@ -176,7 +176,7 @@ class FacebookAction extends Action
|
|||||||
array('class' =>
|
array('class' =>
|
||||||
($this->action == 'facebookinvite') ? 'current' : 'facebook_invite'));
|
($this->action == 'facebookinvite') ? 'current' : 'facebook_invite'));
|
||||||
$this->element('a',
|
$this->element('a',
|
||||||
array('href' => 'invite.php', 'title' => _('Invite')), _('Invite'));
|
array('href' => 'invite.php', 'title' => _m('Invite')), _m('Invite'));
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -185,7 +185,7 @@ class FacebookAction extends Action
|
|||||||
($this->action == 'facebooksettings') ? 'current' : 'facebook_settings'));
|
($this->action == 'facebooksettings') ? 'current' : 'facebook_settings'));
|
||||||
$this->element('a',
|
$this->element('a',
|
||||||
array('href' => 'settings.php',
|
array('href' => 'settings.php',
|
||||||
'title' => _('Settings')), _('Settings'));
|
'title' => _m('Settings')), _m('Settings'));
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
|
|
||||||
$this->elementEnd('ul');
|
$this->elementEnd('ul');
|
||||||
@ -225,15 +225,15 @@ class FacebookAction extends Action
|
|||||||
$this->elementStart('dl', array('class' => 'system_notice'));
|
$this->elementStart('dl', array('class' => 'system_notice'));
|
||||||
$this->element('dt', null, 'Page 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? ');
|
'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('dd');
|
||||||
$this->elementStart('p');
|
$this->elementStart('p');
|
||||||
$this->text(sprintf($loginmsg_part1, common_config('site', 'name')));
|
$this->text(sprintf($loginmsg_part1, common_config('site', 'name')));
|
||||||
$this->element('a',
|
$this->element('a',
|
||||||
array('href' => common_local_url('register')), _('Register'));
|
array('href' => common_local_url('register')), _m('Register'));
|
||||||
$this->text($loginmsg_part2);
|
$this->text($loginmsg_part2);
|
||||||
$this->elementEnd('p');
|
$this->elementEnd('p');
|
||||||
$this->elementEnd('dd');
|
$this->elementEnd('dd');
|
||||||
@ -246,7 +246,7 @@ class FacebookAction extends Action
|
|||||||
{
|
{
|
||||||
|
|
||||||
$this->elementStart('div', array('id' => 'content'));
|
$this->elementStart('div', array('id' => 'content'));
|
||||||
$this->element('h1', null, _('Login'));
|
$this->element('h1', null, _m('Login'));
|
||||||
|
|
||||||
if ($msg) {
|
if ($msg) {
|
||||||
$this->element('fb:error', array('message' => $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('ul', array('class' => 'form_datas'));
|
||||||
$this->elementStart('li');
|
$this->elementStart('li');
|
||||||
$this->input('nickname', _('Nickname'));
|
$this->input('nickname', _m('Nickname'));
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
$this->elementStart('li');
|
$this->elementStart('li');
|
||||||
$this->password('password', _('Password'));
|
$this->password('password', _m('Password'));
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
$this->elementEnd('ul');
|
$this->elementEnd('ul');
|
||||||
|
|
||||||
$this->submit('submit', _('Login'));
|
$this->submit('submit', _m('Login'));
|
||||||
$this->elementEnd('fieldset');
|
$this->elementEnd('fieldset');
|
||||||
$this->elementEnd('form');
|
$this->elementEnd('form');
|
||||||
|
|
||||||
$this->elementStart('p');
|
$this->elementStart('p');
|
||||||
$this->element('a', array('href' => common_local_url('recoverpassword')),
|
$this->element('a', array('href' => common_local_url('recoverpassword')),
|
||||||
_('Lost or forgotten password?'));
|
_m('Lost or forgotten password?'));
|
||||||
$this->elementEnd('p');
|
$this->elementEnd('p');
|
||||||
|
|
||||||
$this->elementEnd('div');
|
$this->elementEnd('div');
|
||||||
@ -383,7 +383,7 @@ class FacebookAction extends Action
|
|||||||
// Does a little before-after block for next/prev page
|
// Does a little before-after block for next/prev page
|
||||||
if ($have_before || $have_after) {
|
if ($have_before || $have_after) {
|
||||||
$this->elementStart('dl', 'pagination');
|
$this->elementStart('dl', 'pagination');
|
||||||
$this->element('dt', null, _('Pagination'));
|
$this->element('dt', null, _m('Pagination'));
|
||||||
$this->elementStart('dd', null);
|
$this->elementStart('dd', null);
|
||||||
$this->elementStart('ul', array('class' => 'nav'));
|
$this->elementStart('ul', array('class' => 'nav'));
|
||||||
}
|
}
|
||||||
@ -392,7 +392,7 @@ class FacebookAction extends Action
|
|||||||
$newargs = $args ? array_merge($args, $pargs) : $pargs;
|
$newargs = $args ? array_merge($args, $pargs) : $pargs;
|
||||||
$this->elementStart('li', array('class' => 'nav_prev'));
|
$this->elementStart('li', array('class' => 'nav_prev'));
|
||||||
$this->element('a', array('href' => "$this->app_uri/$action?page=$newargs[page]", 'rel' => 'prev'),
|
$this->element('a', array('href' => "$this->app_uri/$action?page=$newargs[page]", 'rel' => 'prev'),
|
||||||
_('After'));
|
_m('After'));
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
}
|
}
|
||||||
if ($have_after) {
|
if ($have_after) {
|
||||||
@ -400,7 +400,7 @@ class FacebookAction extends Action
|
|||||||
$newargs = $args ? array_merge($args, $pargs) : $pargs;
|
$newargs = $args ? array_merge($args, $pargs) : $pargs;
|
||||||
$this->elementStart('li', array('class' => 'nav_next'));
|
$this->elementStart('li', array('class' => 'nav_next'));
|
||||||
$this->element('a', array('href' => "$this->app_uri/$action?page=$newargs[page]", 'rel' => 'next'),
|
$this->element('a', array('href' => "$this->app_uri/$action?page=$newargs[page]", 'rel' => 'next'),
|
||||||
_('Before'));
|
_m('Before'));
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
}
|
}
|
||||||
if ($have_before || $have_after) {
|
if ($have_before || $have_after) {
|
||||||
@ -418,13 +418,13 @@ class FacebookAction extends Action
|
|||||||
$content = $this->trimmed('status_textarea');
|
$content = $this->trimmed('status_textarea');
|
||||||
|
|
||||||
if (!$content) {
|
if (!$content) {
|
||||||
$this->showPage(_('No notice content!'));
|
$this->showPage(_m('No notice content!'));
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
$content_shortened = common_shorten_links($content);
|
$content_shortened = common_shorten_links($content);
|
||||||
|
|
||||||
if (Notice::contentTooLong($content_shortened)) {
|
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()));
|
Notice::maxContent()));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@ -520,7 +520,7 @@ class FacebookNoticeList extends NoticeList
|
|||||||
function show()
|
function show()
|
||||||
{
|
{
|
||||||
$this->out->elementStart('div', array('id' =>'notices_primary'));
|
$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'));
|
$this->out->elementStart('ul', array('class' => 'notices'));
|
||||||
|
|
||||||
$cnt = 0;
|
$cnt = 0;
|
||||||
|
@ -108,7 +108,7 @@ class FacebookhomeAction extends FacebookAction
|
|||||||
$user = User::staticGet('nickname', $nickname);
|
$user = User::staticGet('nickname', $nickname);
|
||||||
|
|
||||||
if (!$user) {
|
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');
|
$flink = DB_DataObject::factory('foreign_link');
|
||||||
@ -128,7 +128,7 @@ class FacebookhomeAction extends FacebookAction
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
$msg = _('Incorrect username or password.');
|
$msg = _m('Incorrect username or password.');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -155,9 +155,9 @@ class FacebookhomeAction extends FacebookAction
|
|||||||
function title()
|
function title()
|
||||||
{
|
{
|
||||||
if ($this->page > 1) {
|
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 {
|
} 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'));
|
$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 ' .
|
'your Facebook status with your latest notice, you need ' .
|
||||||
'to give it permission.'), $this->app_name);
|
'to give it permission.'), $this->app_name);
|
||||||
|
|
||||||
@ -210,13 +210,13 @@ class FacebookhomeAction extends FacebookAction
|
|||||||
|
|
||||||
$this->elementStart('span', array('class' => 'facebook-button'));
|
$this->elementStart('span', array('class' => 'facebook-button'));
|
||||||
$this->element('a', array('href' => $auth_url),
|
$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('span');
|
||||||
|
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
|
|
||||||
$this->elementStart('li', array('id' => 'fb-permissions-item'));
|
$this->elementStart('li', array('id' => 'fb-permissions-item'));
|
||||||
$this->submit('skip', _('Skip'));
|
$this->submit('skip', _m('Skip'));
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
$this->elementEnd('ul');
|
$this->elementEnd('ul');
|
||||||
|
|
||||||
@ -245,7 +245,7 @@ class FacebookhomeAction extends FacebookAction
|
|||||||
|
|
||||||
if ($have_before || $have_after) {
|
if ($have_before || $have_after) {
|
||||||
$this->elementStart('dl', 'pagination');
|
$this->elementStart('dl', 'pagination');
|
||||||
$this->element('dt', null, _('Pagination'));
|
$this->element('dt', null, _m('Pagination'));
|
||||||
$this->elementStart('dd', null);
|
$this->elementStart('dd', null);
|
||||||
$this->elementStart('ul', array('class' => 'nav'));
|
$this->elementStart('ul', array('class' => 'nav'));
|
||||||
}
|
}
|
||||||
@ -254,7 +254,7 @@ class FacebookhomeAction extends FacebookAction
|
|||||||
$newargs = $args ? array_merge($args, $pargs) : $pargs;
|
$newargs = $args ? array_merge($args, $pargs) : $pargs;
|
||||||
$this->elementStart('li', array('class' => 'nav_prev'));
|
$this->elementStart('li', array('class' => 'nav_prev'));
|
||||||
$this->element('a', array('href' => "$action?page=$newargs[page]", 'rel' => 'prev'),
|
$this->element('a', array('href' => "$action?page=$newargs[page]", 'rel' => 'prev'),
|
||||||
_('After'));
|
_m('After'));
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
}
|
}
|
||||||
if ($have_after) {
|
if ($have_after) {
|
||||||
@ -262,7 +262,7 @@ class FacebookhomeAction extends FacebookAction
|
|||||||
$newargs = $args ? array_merge($args, $pargs) : $pargs;
|
$newargs = $args ? array_merge($args, $pargs) : $pargs;
|
||||||
$this->elementStart('li', array('class' => 'nav_next'));
|
$this->elementStart('li', array('class' => 'nav_next'));
|
||||||
$this->element('a', array('href' => "$action?page=$newargs[page]", 'rel' => 'next'),
|
$this->element('a', array('href' => "$action?page=$newargs[page]", 'rel' => 'next'),
|
||||||
_('Before'));
|
_m('Before'));
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
}
|
}
|
||||||
if ($have_before || $have_after) {
|
if ($have_before || $have_after) {
|
||||||
|
@ -69,9 +69,9 @@ class FacebookinviteAction extends FacebookAction
|
|||||||
function showSuccessContent()
|
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')));
|
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?
|
$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()
|
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"/>');
|
htmlentities('<fb:req-choice url="' . $this->app_uri . '" label="Add"/>');
|
||||||
|
|
||||||
$this->elementStart('fb:request-form', array('action' => 'invite.php',
|
$this->elementStart('fb:request-form', array('action' => 'invite.php',
|
||||||
@ -100,7 +100,7 @@ class FacebookinviteAction extends FacebookAction
|
|||||||
'type' => common_config('site', 'name'),
|
'type' => common_config('site', 'name'),
|
||||||
'content' => $content));
|
'content' => $content));
|
||||||
$this->hidden('invite', 'true');
|
$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 = array('showborder' => 'false');
|
||||||
$multi_params['actiontext'] = $actiontext;
|
$multi_params['actiontext'] = $actiontext;
|
||||||
@ -122,7 +122,7 @@ class FacebookinviteAction extends FacebookAction
|
|||||||
|
|
||||||
if ($exclude_ids) {
|
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')));
|
common_config('site', 'name')));
|
||||||
$this->elementStart('ul', array('id' => 'facebook-friends'));
|
$this->elementStart('ul', array('id' => 'facebook-friends'));
|
||||||
|
|
||||||
@ -140,7 +140,7 @@ class FacebookinviteAction extends FacebookAction
|
|||||||
|
|
||||||
function title()
|
function title()
|
||||||
{
|
{
|
||||||
return sprintf(_('Send invitations'));
|
return sprintf(_m('Send invitations'));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -88,7 +88,7 @@ class FacebookinviteAction extends FacebookAction
|
|||||||
|
|
||||||
function title()
|
function title()
|
||||||
{
|
{
|
||||||
return sprintf(_('Login'));
|
return sprintf(_m('Login'));
|
||||||
}
|
}
|
||||||
|
|
||||||
function redirectHome()
|
function redirectHome()
|
||||||
|
@ -55,7 +55,7 @@ class FacebookremoveAction extends FacebookAction
|
|||||||
|
|
||||||
if (!$result) {
|
if (!$result) {
|
||||||
common_log_db_error($flink, 'DELETE', __FILE__);
|
common_log_db_error($flink, 'DELETE', __FILE__);
|
||||||
$this->serverError(_('Couldn\'t remove Facebook user.'));
|
$this->serverError(_m('Couldn\'t remove Facebook user.'));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -71,9 +71,9 @@ class FacebooksettingsAction extends FacebookAction
|
|||||||
$trimmed);
|
$trimmed);
|
||||||
|
|
||||||
if ($result === false) {
|
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 {
|
} 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->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->flink) ? ($this->flink->noticesync & FOREIGN_NOTICE_SEND) : true);
|
||||||
|
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
|
|
||||||
$this->elementStart('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->flink) ? ($this->flink->noticesync & FOREIGN_NOTICE_SEND_REPLY) : true);
|
||||||
|
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
@ -112,15 +112,15 @@ class FacebooksettingsAction extends FacebookAction
|
|||||||
|
|
||||||
$prefix = trim($this->facebook->api_client->data_getUserPreference(FACEBOOK_NOTICE_PREFIX));
|
$prefix = trim($this->facebook->api_client->data_getUserPreference(FACEBOOK_NOTICE_PREFIX));
|
||||||
|
|
||||||
$this->input('prefix', _('Prefix'),
|
$this->input('prefix', _m('Prefix'),
|
||||||
($prefix) ? $prefix : null,
|
($prefix) ? $prefix : null,
|
||||||
_('A string to prefix notices with.'));
|
_m('A string to prefix notices with.'));
|
||||||
|
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
|
|
||||||
$this->elementStart('li');
|
$this->elementStart('li');
|
||||||
|
|
||||||
$this->submit('save', _('Save'));
|
$this->submit('save', _m('Save'));
|
||||||
|
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
|
|
||||||
@ -130,7 +130,7 @@ class FacebooksettingsAction extends FacebookAction
|
|||||||
|
|
||||||
} else {
|
} 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 ' .
|
'your Facebook status with your latest notice, you need ' .
|
||||||
'to give it permission.'), $this->app_name);
|
'to give it permission.'), $this->app_name);
|
||||||
|
|
||||||
@ -143,7 +143,7 @@ class FacebooksettingsAction extends FacebookAction
|
|||||||
$this->elementStart('fb:prompt-permission', array('perms' => 'publish_stream',
|
$this->elementStart('fb:prompt-permission', array('perms' => 'publish_stream',
|
||||||
'next_fbjs' => 'document.setLocation(\'' . "$this->app_uri/settings.php" . '\')'));
|
'next_fbjs' => 'document.setLocation(\'' . "$this->app_uri/settings.php" . '\')'));
|
||||||
$this->element('span', array('class' => 'facebook-button'),
|
$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('fb:prompt-permission');
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
$this->elementEnd('ul');
|
$this->elementEnd('ul');
|
||||||
@ -153,7 +153,7 @@ class FacebooksettingsAction extends FacebookAction
|
|||||||
|
|
||||||
function title()
|
function title()
|
||||||
{
|
{
|
||||||
return _('Sync preferences');
|
return _m('Sync preferences');
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -168,7 +168,7 @@ function facebookBroadcastNotice($notice)
|
|||||||
|
|
||||||
function updateProfileBox($facebook, $flink, $notice) {
|
function updateProfileBox($facebook, $flink, $notice) {
|
||||||
$fbaction = new FacebookAction($output = 'php://output',
|
$fbaction = new FacebookAction($output = 'php://output',
|
||||||
$indent = true, $facebook, $flink);
|
$indent = null, $facebook, $flink);
|
||||||
$fbaction->updateProfileBox($notice);
|
$fbaction->updateProfileBox($notice);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -277,10 +277,10 @@ function mail_facebook_app_removed($user)
|
|||||||
$site_name = common_config('site', 'name');
|
$site_name = common_config('site', 'name');
|
||||||
|
|
||||||
$subject = sprintf(
|
$subject = sprintf(
|
||||||
_('Your %1$s Facebook application access has been disabled.',
|
_m('Your %1$s Facebook application access has been disabled.',
|
||||||
$site_name));
|
$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 ' .
|
'unable to update your Facebook status from %2$s, and have disabled ' .
|
||||||
'the Facebook application for your account. This may be because ' .
|
'the Facebook application for your account. This may be because ' .
|
||||||
'you have removed the Facebook application\'s authorization, or ' .
|
'you have removed the Facebook application\'s authorization, or ' .
|
||||||
|
394
plugins/Facebook/locale/Facebook.po
Normal file
394
plugins/Facebook/locale/Facebook.po
Normal 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 ""
|
@ -51,7 +51,6 @@ class FeedSubPlugin extends Plugin
|
|||||||
* @param Net_URL_Mapper $m path-to-action mapper
|
* @param Net_URL_Mapper $m path-to-action mapper
|
||||||
* @return boolean hook return
|
* @return boolean hook return
|
||||||
*/
|
*/
|
||||||
|
|
||||||
function onRouterInitialized($m)
|
function onRouterInitialized($m)
|
||||||
{
|
{
|
||||||
$m->connect('feedsub/callback/:feed',
|
$m->connect('feedsub/callback/:feed',
|
||||||
@ -74,8 +73,8 @@ class FeedSubPlugin extends Plugin
|
|||||||
$action_name = $action->trimmed('action');
|
$action_name = $action->trimmed('action');
|
||||||
|
|
||||||
$action->menuItem(common_local_url('feedsubsettings'),
|
$action->menuItem(common_local_url('feedsubsettings'),
|
||||||
dgettext('FeebSubPlugin', 'Feeds'),
|
_m('Feeds'),
|
||||||
dgettext('FeedSubPlugin', 'Feed subscription options'),
|
_m('Feed subscription options'),
|
||||||
$action_name === 'feedsubsettings');
|
$action_name === 'feedsubsettings');
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
|
@ -38,7 +38,7 @@ class FeedSubSettingsAction extends ConnectSettingsAction
|
|||||||
|
|
||||||
function title()
|
function title()
|
||||||
{
|
{
|
||||||
return dgettext('FeedSubPlugin', 'Feed subscriptions');
|
return _m('Feed subscriptions');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -49,9 +49,8 @@ class FeedSubSettingsAction extends ConnectSettingsAction
|
|||||||
|
|
||||||
function getInstructions()
|
function getInstructions()
|
||||||
{
|
{
|
||||||
return dgettext('FeedSubPlugin',
|
return _m('You can subscribe to feeds from other sites; ' .
|
||||||
'You can subscribe to feeds from other sites; ' .
|
'updates will appear in your personal timeline.');
|
||||||
'updates will appear in your personal timeline.');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -94,9 +93,9 @@ class FeedSubSettingsAction extends ConnectSettingsAction
|
|||||||
$this->elementEnd('ul');
|
$this->elementEnd('ul');
|
||||||
|
|
||||||
if ($this->preview) {
|
if ($this->preview) {
|
||||||
$this->submit('subscribe', dgettext('FeedSubPlugin', 'Subscribe'));
|
$this->submit('subscribe', _m('Subscribe'));
|
||||||
} else {
|
} else {
|
||||||
$this->submit('validate', dgettext('FeedSubPlugin', 'Continue'));
|
$this->submit('validate', _m('Continue'));
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->elementEnd('fieldset');
|
$this->elementEnd('fieldset');
|
||||||
@ -149,8 +148,7 @@ class FeedSubSettingsAction extends ConnectSettingsAction
|
|||||||
$feedurl = trim($this->arg('feedurl'));
|
$feedurl = trim($this->arg('feedurl'));
|
||||||
|
|
||||||
if ($feedurl == '') {
|
if ($feedurl == '') {
|
||||||
$this->showForm(dgettext('FeedSubPlugin',
|
$this->showForm(_m('Empty feed URL!'));
|
||||||
'Empty feed URL!'));
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$this->feedurl = $feedurl;
|
$this->feedurl = $feedurl;
|
||||||
@ -160,26 +158,26 @@ class FeedSubSettingsAction extends ConnectSettingsAction
|
|||||||
$discover = new FeedDiscovery();
|
$discover = new FeedDiscovery();
|
||||||
$uri = $discover->discoverFromURL($feedurl);
|
$uri = $discover->discoverFromURL($feedurl);
|
||||||
} catch (FeedSubBadURLException $e) {
|
} 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;
|
return false;
|
||||||
} catch (FeedSubBadResponseException $e) {
|
} catch (FeedSubBadResponseException $e) {
|
||||||
$this->showForm(dgettext('FeedSubPlugin', 'Cannot read feed; server returned error.'));
|
$this->showForm(_m('Cannot read feed; server returned error.'));
|
||||||
return false;
|
return false;
|
||||||
} catch (FeedSubEmptyException $e) {
|
} 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;
|
return false;
|
||||||
} catch (FeedSubBadHTMLException $e) {
|
} 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;
|
return false;
|
||||||
} catch (FeedSubNoFeedException $e) {
|
} 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;
|
return false;
|
||||||
} catch (FeedSubUnrecognizedTypeException $e) {
|
} catch (FeedSubUnrecognizedTypeException $e) {
|
||||||
$this->showForm(dgettext('FeedSubPlugin', 'Not a recognized feed type.'));
|
$this->showForm(_m('Not a recognized feed type.'));
|
||||||
return false;
|
return false;
|
||||||
} catch (FeedSubException $e) {
|
} catch (FeedSubException $e) {
|
||||||
// Any new ones we forgot about
|
// Any new ones we forgot about
|
||||||
$this->showForm(dgettext('FeedSubPlugin', 'Bad feed URL.'));
|
$this->showForm(_m('Bad feed URL.'));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -187,7 +185,7 @@ class FeedSubSettingsAction extends ConnectSettingsAction
|
|||||||
$this->feedinfo = $this->munger->feedInfo();
|
$this->feedinfo = $this->munger->feedInfo();
|
||||||
|
|
||||||
if ($this->feedinfo->huburi == '') {
|
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;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -207,7 +205,7 @@ class FeedSubSettingsAction extends ConnectSettingsAction
|
|||||||
$ok = $this->feedinfo->subscribe();
|
$ok = $this->feedinfo->subscribe();
|
||||||
common_log(LOG_INFO, __METHOD__ . ": sub was $ok");
|
common_log(LOG_INFO, __METHOD__ . ": sub was $ok");
|
||||||
if (!$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;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -217,11 +215,11 @@ class FeedSubSettingsAction extends ConnectSettingsAction
|
|||||||
$profile = $this->feedinfo->getProfile();
|
$profile = $this->feedinfo->getProfile();
|
||||||
|
|
||||||
if ($user->isSubscribed($profile)) {
|
if ($user->isSubscribed($profile)) {
|
||||||
$this->showForm(dgettext('FeedSubPlugin', 'Already subscribed!'));
|
$this->showForm(_m('Already subscribed!'));
|
||||||
} elseif ($user->subscribeTo($profile)) {
|
} elseif ($user->subscribeTo($profile)) {
|
||||||
$this->showForm(dgettext('FeedSubPlugin', 'Feed subscribed!'));
|
$this->showForm(_m('Feed subscribed!'));
|
||||||
} else {
|
} 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()) {
|
if ($this->validateFeed()) {
|
||||||
$this->preview = true;
|
$this->preview = true;
|
||||||
$this->showForm(dgettext('FeedSubPlugin', 'Previewing feed:'));
|
$this->showForm(_m('Previewing feed:'));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -212,7 +212,7 @@ class FeedMunger
|
|||||||
// try adding #hashtags from the categories/tags on a post.
|
// try adding #hashtags from the categories/tags on a post.
|
||||||
|
|
||||||
// @todo Should we force a language here?
|
// @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;
|
$title = $entry->title;
|
||||||
$link = $this->getAltLink($entry);
|
$link = $this->getAltLink($entry);
|
||||||
$out = sprintf($format, $title, $link);
|
$out = sprintf($format, $title, $link);
|
||||||
|
104
plugins/FeedSub/locale/FeedSub.po
Normal file
104
plugins/FeedSub/locale/FeedSub.po
Normal 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 ""
|
106
plugins/FeedSub/locale/fr/LC_MESSAGES/FeedSub.po
Normal file
106
plugins/FeedSub/locale/fr/LC_MESSAGES/FeedSub.po
Normal 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 ""
|
78
plugins/FeedSub/tests/gettext-speedtest.php
Normal file
78
plugins/FeedSub/tests/gettext-speedtest.php
Normal 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
Loading…
Reference in New Issue
Block a user