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

This commit is contained in:
Brenda Wallace 2010-01-09 21:43:25 +00:00
commit 4de09d6bd4
181 changed files with 15838 additions and 7961 deletions

View File

@ -640,3 +640,18 @@ EndLog: After writing to the logs
- $msg - $msg
- $filename - $filename
StartBlockProfile: when we're about to block
- $user: the person doing the block
- $profile: the person getting blocked, can be remote
EndBlockProfile: when a block has succeeded
- $user: the person doing the block
- $profile: the person blocked, can be remote
StartUnblockProfile: when we're about to unblock
- $user: the person doing the unblock
- $profile: the person getting unblocked, can be remote
EndUnblockProfile: when an unblock has succeeded
- $user: the person doing the unblock
- $profile: the person unblocked, can be remote

21
README
View File

@ -710,11 +710,21 @@ private site, but users of the private site may be able to subscribe
to users on a remote site. (Or not... it's not well tested.) The to users on a remote site. (Or not... it's not well tested.) The
"proper behaviour" hasn't been defined here, so handle with care. "proper behaviour" hasn't been defined here, so handle with care.
If fancy URLs is enabled, access to file attachments can also be Access to file attachments can also be restricted to logged-in users only.
restricted to logged-in users only. Uncomment the appropriate rewrite 1. Add a directory outside the web root where your file uploads will be
rule in .htaccess or your server's httpd.conf. (This most likely will stored. Usually a command like this will work:
not work if you are using a virtual server for attachments, so consider
the performance/security tradeoff.) mkdir /var/www/mublog-files
2. Make the file uploads directory writeable by the web server. An
insecure way to do this is:
chmod a+x /var/www/mublog-files
3. Tell StatusNet to use this directory for file uploads. Add a line
like this to your config.php:
$config['attachments']['dir'] = '/var/www/mublog-files';
Upgrading Upgrading
========= =========
@ -1612,6 +1622,7 @@ if anyone's been overlooked in error.
* Craig Andrews * Craig Andrews
* mEDI * mEDI
* Brett Taylor * Brett Taylor
* Brigitte Schuster
Thanks also to the developers of our upstream library code and to the Thanks also to the developers of our upstream library code and to the
thousands of people who have tried out Identi.ca, installed StatusNet, thousands of people who have tried out Identi.ca, installed StatusNet,

View File

@ -109,9 +109,16 @@ class ApiBlockCreateAction extends ApiAuthAction
return; return;
} }
if ($this->user->hasBlocked($this->other) if (!$this->user->hasBlocked($this->other)) {
|| $this->user->block($this->other) if (Event::handle('StartBlockProfile', array($this->user, $this->other))) {
) { $result = $this->user->block($this->other);
if ($result) {
Event::handle('EndBlockProfile', array($this->user, $this->other));
}
}
}
if ($this->user->hasBlocked($this->other)) {
$this->initDocument($this->format); $this->initDocument($this->format);
$this->showProfile($this->other, $this->format); $this->showProfile($this->other, $this->format);
$this->endDocument($this->format); $this->endDocument($this->format);

View File

@ -97,9 +97,16 @@ class ApiBlockDestroyAction extends ApiAuthAction
return; return;
} }
if (!$this->user->hasBlocked($this->other) if ($this->user->hasBlocked($this->other)) {
|| $this->user->unblock($this->other) if (Event::handle('StartUnblockProfile', array($this->user, $this->other))) {
) { $result = $this->user->unblock($this->other);
if ($result) {
Event::handle('EndUnblockProfile', array($this->user, $this->other));
}
}
}
if (!$this->user->hasBlocked($this->other)) {
$this->initDocument($this->format); $this->initDocument($this->format);
$this->showProfile($this->other, $this->format); $this->showProfile($this->other, $this->format);
$this->endDocument($this->format); $this->endDocument($this->format);

View File

@ -108,7 +108,7 @@ class ApiGroupLeaveAction extends ApiAuthAction
$member = new Group_member(); $member = new Group_member();
$member->group_id = $this->group->id; $member->group_id = $this->group->id;
$member->profile_id = $this->auth->id; $member->profile_id = $this->auth_user->id;
if (!$member->find(true)) { if (!$member->find(true)) {
$this->serverError(_('You are not a member of this group.')); $this->serverError(_('You are not a member of this group.'));
@ -118,12 +118,12 @@ class ApiGroupLeaveAction extends ApiAuthAction
$result = $member->delete(); $result = $member->delete();
if (!$result) { if (!$result) {
common_log_db_error($member, 'INSERT', __FILE__); common_log_db_error($member, 'DELETE', __FILE__);
$this->serverError( $this->serverError(
sprintf( sprintf(
_('Could not remove user %s to group %s.'), _('Could not remove user %s from group %s.'),
$this->user->nickname, $this->user->nickname,
$this->$group->nickname $this->group->nickname
) )
); );
return; return;

View File

@ -203,12 +203,6 @@ class ApiStatusesUpdateAction extends ApiAuthAction
} }
} }
$location = null;
if (!empty($this->lat) && !empty($this->lon)) {
$location = Location::fromLatLon($this->lat, $this->lon);
}
$upload = null; $upload = null;
try { try {
@ -235,11 +229,15 @@ class ApiStatusesUpdateAction extends ApiAuthAction
$options = array('reply_to' => $reply_to); $options = array('reply_to' => $reply_to);
if (!empty($location)) { if ($this->user->shareLocation()) {
$options['lat'] = $location->lat;
$options['lon'] = $location->lon; $locOptions = Notice::locationOptions($this->lat,
$options['location_id'] = $location->location_id; $this->lon,
$options['location_ns'] = $location->location_ns; null,
null,
$this->user->getProfile());
$options = array_merge($options, $locOptions);
} }
$this->notice = $this->notice =

View File

@ -156,7 +156,12 @@ class BlockAction extends ProfileFormAction
{ {
$cur = common_current_user(); $cur = common_current_user();
$result = $cur->block($this->profile); if (Event::handle('StartBlockProfile', array($cur, $this->profile))) {
$result = $cur->block($this->profile);
if ($result) {
Event::handle('EndBlockProfile', array($cur, $this->profile));
}
}
if (!$result) { if (!$result) {
$this->serverError(_('Failed to save block information.')); $this->serverError(_('Failed to save block information.'));
@ -164,4 +169,3 @@ class BlockAction extends ProfileFormAction
} }
} }
} }

View File

@ -185,11 +185,7 @@ class FavoritedAction extends Action
function showContent() function showContent()
{ {
if (common_config('db', 'type') == 'pgsql') { $weightexpr = common_sql_weight('fave.modified', common_config('popular', 'dropoff'));
$weightexpr='sum(exp(-extract(epoch from (now() - fave.modified)) / %s))';
} else {
$weightexpr='sum(exp(-(now() - fave.modified) / %s))';
}
$qry = 'SELECT notice.*, '. $qry = 'SELECT notice.*, '.
$weightexpr . ' as weight ' . $weightexpr . ' as weight ' .
@ -207,7 +203,7 @@ class FavoritedAction extends Action
} }
$notice = Memcached_DataObject::cachedQuery('Notice', $notice = Memcached_DataObject::cachedQuery('Notice',
sprintf($qry, common_config('popular', 'dropoff')), $qry,
600); 600);
$nl = new NoticeList($notice, $this); $nl = new NoticeList($notice, $this);

98
actions/geocode.php Normal file
View File

@ -0,0 +1,98 @@
<?php
/**
* Geocode action class
*
* PHP version 5
*
* @category Action
* @package StatusNet
* @author Craig Andrews <candrews@integralblue.com>
* @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') && !defined('LACONICA')) {
exit(1);
}
/**
* Geocode action class
*
* @category Action
* @package StatusNet
* @author Craig Andrews <candrews@integralblue.com>
* @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
* @link http://status.net/
*/
class GeocodeAction extends Action
{
function prepare($args)
{
parent::prepare($args);
$token = $this->trimmed('token');
if (!$token || $token != common_session_token()) {
$this->clientError(_('There was a problem with your session token. '.
'Try again, please.'));
}
$this->lat = $this->trimmed('lat');
$this->lon = $this->trimmed('lon');
$location = Location::fromLatLon($this->lat, $this->lon);
if ($location) {
$this->location = Location::fromId($location->location_id, $location->location_ns);
$this->lat = $this->location->lat;
$this->lon = $this->location->lon;
}
return true;
}
/**
* Class handler
*
* @param array $args query arguments
*
* @return nothing
*
**/
function handle($args)
{
header('Content-Type: application/json; charset=utf-8');
$location_object = array();
$location_object['lat']=$this->lat;
$location_object['lon']=$this->lon;
if($this->location) {
$location_object['location_id']=$this->location->location_id;
$location_object['location_ns']=$this->location->location_ns;
$location_object['name']=$this->location->getName();
$location_object['url']=$this->location->getUrl();
}
print(json_encode($location_object));
}
/**
* Is this action read-only?
*
* @return boolean true
*/
function isReadOnly($args)
{
return true;
}
}
?>

View File

@ -1,13 +1,13 @@
<?php <?php
/** /**
* StatusNet, the distributed open-source microblogging tool * StatusNet - the distributed open-source microblogging tool
* Copyright (C) 2009, StatusNet, Inc.
* *
* Returns a given file attachment, allowing private sites to only allow * Return a requested file
* access to file attachments after login.
* *
* PHP version 5 * PHP version 5
* *
* LICENCE: This program is free software: you can redistribute it and/or modify * 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 * 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 * the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version. * (at your option) any later version.
@ -20,28 +20,32 @@
* You should have received a copy of the GNU Affero General Public License * 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/>. * along with this program. If not, see <http://www.gnu.org/licenses/>.
* *
* @category Personal * @category PrivateAttachments
* @package StatusNet * @package StatusNet
* @author Jeffery To <jeffery.to@gmail.com> * @author Jeffery To <jeffery.to@gmail.com>
* @copyright 2008-2009 StatusNet, Inc. * @copyright 2009 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://status.net/ * @link http://status.net/
*/ */
if (!defined('STATUSNET') && !defined('LACONICA')) { if (!defined('STATUSNET')) {
exit(1); exit(1);
} }
require_once 'MIME/Type.php'; require_once 'MIME/Type.php';
/** /**
* Action for getting a file attachment * An action for returning a requested file
* *
* @category Personal * The StatusNet system will do an implicit user check if the site is
* @package StatusNet * private before allowing this to continue
* @author Jeffery To <jeffery.to@gmail.com> *
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @category PrivateAttachments
* @link http://status.net/ * @package StatusNet
* @author Jeffery To <jeffery.to@gmail.com>
* @copyright 2009 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://status.net/
*/ */
class GetfileAction extends Action class GetfileAction extends Action
@ -68,7 +72,7 @@ class GetfileAction extends Action
$path = null; $path = null;
if ($filename) { if ($filename) {
$path = common_config('attachments', 'dir') . $filename; $path = File::path($filename);
} }
if (empty($path) or !file_exists($path)) { if (empty($path) or !file_exists($path)) {
@ -103,6 +107,10 @@ class GetfileAction extends Action
function lastModified() function lastModified()
{ {
if (common_config('site', 'use_x_sendfile')) {
return null;
}
return filemtime($this->path); return filemtime($this->path);
} }
@ -114,8 +122,24 @@ class GetfileAction extends Action
* *
* @return string etag http header * @return string etag http header
*/ */
function etag() function etag()
{ {
if (common_config('site', 'use_x_sendfile')) {
return null;
}
$cache = common_memcache();
if($cache) {
$key = common_cache_key('attachments:etag:' . $this->path);
$etag = $cache->get($key);
if($etag === false) {
$etag = crc32(file_get_contents($this->path));
$cache->set($key,$etag);
}
return $etag;
}
$stat = stat($this->path); $stat = stat($this->path);
return '"' . $stat['ino'] . '-' . $stat['size'] . '-' . $stat['mtime'] . '"'; return '"' . $stat['ino'] . '-' . $stat['size'] . '-' . $stat['mtime'] . '"';
} }
@ -133,13 +157,19 @@ class GetfileAction extends Action
// undo headers set by PHP sessions // undo headers set by PHP sessions
$sec = session_cache_expire() * 60; $sec = session_cache_expire() * 60;
header('Expires: ' . date(DATE_RFC1123, time() + $sec)); header('Expires: ' . date(DATE_RFC1123, time() + $sec));
header('Cache-Control: public, max-age=' . $sec); header('Cache-Control: max-age=' . $sec);
header('Pragma: public');
parent::handle($args); parent::handle($args);
$path = $this->path; $path = $this->path;
header('Content-Type: ' . MIME_Type::autoDetect($path)); header('Content-Type: ' . MIME_Type::autoDetect($path));
readfile($path);
if (common_config('site', 'use_x_sendfile')) {
header('X-Sendfile: ' . $path);
} else {
header('Content-Length: ' . filesize($path));
readfile($path);
}
} }
} }

View File

@ -123,8 +123,8 @@ class LeavegroupAction extends Action
$result = $member->delete(); $result = $member->delete();
if (!$result) { if (!$result) {
common_log_db_error($member, 'INSERT', __FILE__); common_log_db_error($member, 'DELETE', __FILE__);
$this->serverError(sprintf(_('Could not remove user %s to group %s'), $this->serverError(sprintf(_('Could not remove user %s from group %s'),
$cur->nickname, $this->group->nickname)); $cur->nickname, $this->group->nickname));
} }

View File

@ -164,19 +164,6 @@ class NewnoticeAction extends Action
$replyto = 'false'; $replyto = 'false';
} }
$lat = $this->trimmed('lat');
$lon = $this->trimmed('lon');
$location_id = $this->trimmed('location_id');
$location_ns = $this->trimmed('location_ns');
if (!empty($lat) && !empty($lon) && empty($location_id)) {
$location = Location::fromLatLon($lat, $lon);
if (!empty($location)) {
$location_id = $location->location_id;
$location_ns = $location->location_ns;
}
}
$upload = null; $upload = null;
$upload = MediaFile::fromUpload('attach'); $upload = MediaFile::fromUpload('attach');
@ -195,12 +182,20 @@ class NewnoticeAction extends Action
} }
} }
$notice = Notice::saveNew($user->id, $content_shortened, 'web', $options = array('reply_to' => ($replyto == 'false') ? null : $replyto);
array('reply_to' => ($replyto == 'false') ? null : $replyto,
'lat' => $lat, if ($user->shareLocation() && $this->arg('notice_data-geo')) {
'lon' => $lon,
'location_id' => $location_id, $locOptions = Notice::locationOptions($this->trimmed('lat'),
'location_ns' => $location_ns)); $this->trimmed('lon'),
$this->trimmed('location_id'),
$this->trimmed('location_ns'),
$user->getProfile());
$options = array_merge($options, $locOptions);
}
$notice = Notice::saveNew($user->id, $content_shortened, 'web', $options);
if (isset($upload)) { if (isset($upload)) {
$upload->attachToNotice($notice); $upload->attachToNotice($notice);

View File

@ -133,6 +133,13 @@ class ProfilesettingsAction extends AccountSettingsAction
($this->arg('location')) ? $this->arg('location') : $profile->location, ($this->arg('location')) ? $this->arg('location') : $profile->location,
_('Where you are, like "City, State (or Region), Country"')); _('Where you are, like "City, State (or Region), Country"'));
$this->elementEnd('li'); $this->elementEnd('li');
if (common_config('location', 'share') == 'user') {
$this->elementStart('li');
$this->checkbox('sharelocation', _('Share my current location when posting notices'),
($this->arg('sharelocation')) ?
$this->arg('sharelocation') : $user->shareLocation());
$this->elementEnd('li');
}
Event::handle('EndProfileFormData', array($this)); Event::handle('EndProfileFormData', array($this));
$this->elementStart('li'); $this->elementStart('li');
$this->input('tags', _('Tags'), $this->input('tags', _('Tags'),
@ -309,7 +316,12 @@ class ProfilesettingsAction extends AccountSettingsAction
$loc = Location::fromName($location); $loc = Location::fromName($location);
if (!empty($loc)) { if (empty($loc)) {
$profile->lat = null;
$profile->lon = null;
$profile->location_id = null;
$profile->location_ns = null;
} else {
$profile->lat = $loc->lat; $profile->lat = $loc->lat;
$profile->lon = $loc->lon; $profile->lon = $loc->lon;
$profile->location_id = $loc->location_id; $profile->location_id = $loc->location_id;
@ -318,6 +330,37 @@ class ProfilesettingsAction extends AccountSettingsAction
$profile->profileurl = common_profile_url($nickname); $profile->profileurl = common_profile_url($nickname);
if (common_config('location', 'share') == 'user') {
$exists = false;
$prefs = User_location_prefs::staticGet('user_id', $user->id);
if (empty($prefs)) {
$prefs = new User_location_prefs();
$prefs->user_id = $user->id;
$prefs->created = common_sql_now();
} else {
$exists = true;
$orig = clone($prefs);
}
$prefs->share_location = $this->boolean('sharelocation');
if ($exists) {
$result = $prefs->update($orig);
} else {
$result = $prefs->insert();
}
if ($result === false) {
common_log_db_error($prefs, ($exists) ? 'UPDATE' : 'INSERT', __FILE__);
$this->serverError(_('Couldn\'t save location prefs.'));
return;
}
}
common_debug('Old profile: ' . common_log_objstring($orig_profile), __FILE__); common_debug('Old profile: ' . common_log_objstring($orig_profile), __FILE__);
common_debug('New profile: ' . common_log_objstring($profile), __FILE__); common_debug('New profile: ' . common_log_objstring($profile), __FILE__);

View File

@ -105,12 +105,8 @@ class PublictagcloudAction extends Action
#Add the aggregated columns... #Add the aggregated columns...
$tags->selectAdd('max(notice_id) as last_notice_id'); $tags->selectAdd('max(notice_id) as last_notice_id');
if(common_config('db','type')=='pgsql') { $calc = common_sql_weight('created', common_config('tag', 'dropoff'));
$calc='sum(exp(-extract(epoch from (now()-created))/%s)) as weight'; $tags->selectAdd($calc . ' as weight');
} else {
$calc='sum(exp(-(now() - created)/%s)) as weight';
}
$tags->selectAdd(sprintf($calc, common_config('tag', 'dropoff')));
$tags->groupBy('tag'); $tags->groupBy('tag');
$tags->orderBy('weight DESC'); $tags->orderBy('weight DESC');
@ -136,7 +132,12 @@ class PublictagcloudAction extends Action
$this->elementStart('dd'); $this->elementStart('dd');
$this->elementStart('ul', 'tags xoxo tag-cloud'); $this->elementStart('ul', 'tags xoxo tag-cloud');
foreach ($tw as $tag => $weight) { foreach ($tw as $tag => $weight) {
$this->showTag($tag, $weight, $weight/$sum); if ($sum) {
$weightedSum = $weight/$sum;
} else {
$weightedSum = 0.5;
}
$this->showTag($tag, $weight, $weightedSum);
} }
$this->elementEnd('ul'); $this->elementEnd('ul');
$this->elementEnd('dd'); $this->elementEnd('dd');

View File

@ -103,7 +103,7 @@ class ShownoticeAction extends OwnerDesignAction
$this->user = User::staticGet('id', $this->profile->id); $this->user = User::staticGet('id', $this->profile->id);
if (! $this->notice->is_local) { if ($this->notice->is_local == Notice::REMOTE_OMB) {
common_redirect($this->notice->uri); common_redirect($this->notice->uri);
return false; return false;
} }

View File

@ -208,7 +208,14 @@ class TwitapisearchatomAction extends ApiAction
$this->showFeed(); $this->showFeed();
foreach ($notices as $n) { foreach ($notices as $n) {
$this->showEntry($n);
$profile = $n->getProfile();
// Don't show notices from deleted users
if (!empty($profile)) {
$this->showEntry($n);
}
} }
$this->endAtom(); $this->endAtom();

View File

@ -71,8 +71,17 @@ class UnblockAction extends ProfileFormAction
function handlePost() function handlePost()
{ {
$cur = common_current_user(); $cur = common_current_user();
$result = $cur->unblock($this->profile);
$result = false;
if (Event::handle('StartUnblockProfile', array($cur, $this->profile))) {
$result = $cur->unblock($this->profile);
if ($result) {
Event::handle('EndUnblockProfile', array($cur, $this->profile));
}
}
if (!$result) { if (!$result) {
$this->serverError(_('Error removing the block.')); $this->serverError(_('Error removing the block.'));
return; return;

270
actions/version.php Normal file
View File

@ -0,0 +1,270 @@
<?php
/**
* StatusNet - the distributed open-source microblogging tool
* Copyright (C) 2008, 2009, StatusNet, Inc.
*
* Show version information for this software and plugins
*
* PHP version 5
*
* 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 Info
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
* @link http://status.net/
*/
if (!defined('STATUSNET')) {
exit(1);
}
/**
* Version info page
*
* A page that shows version information for this site. Helpful for
* debugging, for giving credit to authors, and for linking to more
* complete documentation for admins.
*
* @category Info
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPLv3
* @link http://status.net/
*/
class VersionAction extends Action
{
var $pluginVersions = array();
/**
* Return true since we're read-only.
*
* @param array $args other arguments
*
* @return boolean is read only action?
*/
function isReadOnly($args)
{
return true;
}
/**
* Returns the page title
*
* @return string page title
*/
function title()
{
return sprintf(_("StatusNet %s"), STATUSNET_VERSION);
}
/**
* Prepare to run
*
* Fire off an event to let plugins report their
* versions.
*
* @param array $args array misc. arguments
*
* @return boolean true
*/
function prepare($args)
{
parent::prepare($args);
Event::handle('PluginVersion', array(&$this->pluginVersions));
return true;
}
/**
* Execute the action
*
* Shows a page with the version information in the
* content area.
*
* @param array $args ignored.
*
* @return void
*/
function handle($args)
{
parent::handle($args);
$this->showPage();
}
/*
* Override to add hentry, and content-inner classes
*
* @return void
*/
function showContentBlock()
{
$this->elementStart('div', array('id' => 'content', 'class' => 'hentry'));
$this->showPageTitle();
$this->showPageNoticeBlock();
$this->elementStart('div', array('id' => 'content_inner',
'class' => 'entry-content'));
// show the actual content (forms, lists, whatever)
$this->showContent();
$this->elementEnd('div');
$this->elementEnd('div');
}
/*
* Overrride to add entry-title class
*
* @return void
*/
function showPageTitle() {
$this->element('h1', array('class' => 'entry-title'), $this->title());
}
/**
* Show version information
*
* @return void
*/
function showContent()
{
$this->elementStart('p');
$this->raw(sprintf(_('This site is powered by %s version %s, '.
'Copyright 2008-2010 StatusNet, Inc. '.
'and contributors.'),
XMLStringer::estring('a', array('href' => 'http://status.net/'),
_('StatusNet')),
STATUSNET_VERSION));
$this->elementEnd('p');
$this->element('h2', null, _('Contributors'));
$this->element('p', null, implode(', ', $this->contributors));
$this->element('h2', null, _('License'));
$this->element('p', null,
_('StatusNet 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->element('p', null,
_('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. '));
$this->elementStart('p');
$this->raw(sprintf(_('You should have received a copy of the GNU Affero General Public License '.
'along with this program. If not, see %s.'),
XMLStringer::estring('a', array('href' => 'http://www.gnu.org/licenses/agpl.html'),
'http://www.gnu.org/licenses/agpl.html')));
$this->elementEnd('p');
// XXX: Theme information?
if (count($this->pluginVersions)) {
$this->element('h2', null, _('Plugins'));
$this->elementStart('table', array('id' => 'plugins_enabled'));
$this->elementStart('thead');
$this->elementStart('tr');
$this->element('th', array('id' => 'plugin_name'), _('Name'));
$this->element('th', array('id' => 'plugin_version'), _('Version'));
$this->element('th', array('id' => 'plugin_authors'), _('Author(s)'));
$this->element('th', array('id' => 'plugin_description'), _('Description'));
$this->elementEnd('tr');
$this->elementEnd('thead');
$this->elementStart('tbody');
foreach ($this->pluginVersions as $plugin) {
$this->elementStart('tr');
if (array_key_exists('homepage', $plugin)) {
$this->elementStart('th');
$this->element('a', array('href' => $plugin['homepage']),
$plugin['name']);
$this->elementEnd('th');
} else {
$this->element('th', null, $plugin['name']);
}
$this->element('td', null, $plugin['version']);
if (array_key_exists('author', $plugin)) {
$this->element('td', null, $plugin['author']);
}
if (array_key_exists('rawdescription', $plugin)) {
$this->elementStart('td');
$this->raw($plugin['rawdescription']);
$this->elementEnd('td');
} else if (array_key_exists('description', $plugin)) {
$this->element('td', null, $plugin['description']);
}
$this->elementEnd('tr');
}
$this->elementEnd('tbody');
$this->elementEnd('table');
}
}
var $contributors = array('Evan Prodromou (StatusNet)',
'Zach Copley (StatusNet)',
'Earle Martin (StatusNet)',
'Marie-Claude Doyon (StatusNet)',
'Sarven Capadisli (StatusNet)',
'Robin Millette (StatusNet)',
'Ciaran Gultnieks',
'Michael Landers',
'Ori Avtalion',
'Garret Buell',
'Mike Cochrane',
'Matthew Gregg',
'Florian Biree',
'Erik Stambaugh',
'drry',
'Gina Haeussge',
'Tryggvi Björgvinsson',
'Adrian Lang',
'Meitar Moscovitz',
'Sean Murphy',
'Leslie Michael Orchard',
'Eric Helgeson',
'Ken Sedgwick',
'Brian Hendrickson',
'Tobias Diekershoff',
'Dan Moore',
'Fil',
'Jeff Mitchell',
'Brenda Wallace',
'Jeffery To',
'Federico Marani',
'Craig Andrews',
'mEDI',
'Brett Taylor',
'Brigitte Schuster');
}

View File

@ -37,7 +37,7 @@ class Avatar extends Memcached_DataObject
} }
} }
function &pkeyGet($kv) function pkeyGet($kv)
{ {
return Memcached_DataObject::pkeyGet('Avatar', $kv); return Memcached_DataObject::pkeyGet('Avatar', $kv);
} }

View File

@ -59,7 +59,7 @@ class Config extends Memcached_DataObject
if (!empty($c)) { if (!empty($c)) {
$settings = $c->get(common_cache_key(self::settingsKey)); $settings = $c->get(common_cache_key(self::settingsKey));
if (!empty($settings)) { if ($settings !== false) {
return $settings; return $settings;
} }
} }
@ -120,7 +120,7 @@ class Config extends Memcached_DataObject
return $result; return $result;
} }
function &pkeyGet($kv) function pkeyGet($kv)
{ {
return Memcached_DataObject::pkeyGet('Config', $kv); return Memcached_DataObject::pkeyGet('Config', $kv);
} }

View File

@ -32,7 +32,7 @@ class Fave extends Memcached_DataObject
return $fave; return $fave;
} }
function &pkeyGet($kv) function pkeyGet($kv)
{ {
return Memcached_DataObject::pkeyGet('Fave', $kv); return Memcached_DataObject::pkeyGet('Fave', $kv);
} }

View File

@ -182,25 +182,32 @@ class File extends Memcached_DataObject
static function url($filename) static function url($filename)
{ {
$path = common_config('attachments', 'path'); if(common_config('site','private')) {
if ($path[strlen($path)-1] != '/') { return common_local_url('getfile',
$path .= '/'; array('filename' => $filename));
} else {
$path = common_config('attachments', 'path');
if ($path[strlen($path)-1] != '/') {
$path .= '/';
}
if ($path[0] != '/') {
$path = '/'.$path;
}
$server = common_config('attachments', 'server');
if (empty($server)) {
$server = common_config('site', 'server');
}
// XXX: protocol
return 'http://'.$server.$path.$filename;
} }
if ($path[0] != '/') {
$path = '/'.$path;
}
$server = common_config('attachments', 'server');
if (empty($server)) {
$server = common_config('site', 'server');
}
// XXX: protocol
return 'http://'.$server.$path.$filename;
} }
function getEnclosure(){ function getEnclosure(){

View File

@ -62,7 +62,7 @@ class File_to_post extends Memcached_DataObject
} }
} }
function &pkeyGet($kv) function pkeyGet($kv)
{ {
return Memcached_DataObject::pkeyGet('File_to_post', $kv); return Memcached_DataObject::pkeyGet('File_to_post', $kv);
} }

View File

@ -40,7 +40,7 @@ class Group_block extends Memcached_DataObject
/* the code above is auto generated do not remove the tag below */ /* the code above is auto generated do not remove the tag below */
###END_AUTOCODE ###END_AUTOCODE
function &pkeyGet($kv) function pkeyGet($kv)
{ {
return Memcached_DataObject::pkeyGet('Group_block', $kv); return Memcached_DataObject::pkeyGet('Group_block', $kv);
} }

View File

@ -20,7 +20,7 @@ class Group_inbox extends Memcached_DataObject
/* the code above is auto generated do not remove the tag below */ /* the code above is auto generated do not remove the tag below */
###END_AUTOCODE ###END_AUTOCODE
function &pkeyGet($kv) function pkeyGet($kv)
{ {
return Memcached_DataObject::pkeyGet('Group_inbox', $kv); return Memcached_DataObject::pkeyGet('Group_inbox', $kv);
} }

View File

@ -21,7 +21,7 @@ class Group_member extends Memcached_DataObject
/* the code above is auto generated do not remove the tag below */ /* the code above is auto generated do not remove the tag below */
###END_AUTOCODE ###END_AUTOCODE
function &pkeyGet($kv) function pkeyGet($kv)
{ {
return Memcached_DataObject::pkeyGet('Group_member', $kv); return Memcached_DataObject::pkeyGet('Group_member', $kv);
} }

View File

@ -19,8 +19,6 @@
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
class Memcached_DataObject extends DB_DataObject class Memcached_DataObject extends DB_DataObject
{ {
/** /**
@ -37,6 +35,41 @@ class Memcached_DataObject extends DB_DataObject
} }
} }
/**
* Magic function called at serialize() time.
*
* We use this to drop a couple process-specific references
* from DB_DataObject which can cause trouble in future
* processes.
*
* @return array of variable names to include in serialization.
*/
function __sleep()
{
$vars = array_keys(get_object_vars($this));
$skip = array('_DB_resultid', '_link_loaded');
return array_diff($vars, $skip);
}
/**
* Magic function called at unserialize() time.
*
* Clean out some process-specific variables which might
* be floating around from a previous process's cached
* objects.
*
* Old cached objects may still have them.
*/
function __wakeup()
{
// Refers to global state info from a previous process.
// Clear this out so we don't accidentally break global
// state in *this* process.
$this->_DB_resultid = null;
// We don't have any local DBO refs, so clear these out.
$this->_link_loaded = false;
}
/** /**
* Wrapper for DB_DataObject's static lookup using memcached * Wrapper for DB_DataObject's static lookup using memcached
* as backing instead of an in-process cache array. * as backing instead of an in-process cache array.
@ -57,31 +90,42 @@ class Memcached_DataObject extends DB_DataObject
unset($i); unset($i);
} }
$i = Memcached_DataObject::getcached($cls, $k, $v); $i = Memcached_DataObject::getcached($cls, $k, $v);
if ($i) { if ($i === false) { // false == cache miss
return $i; $i = DB_DataObject::factory($cls);
} else { if (empty($i)) {
$i = DB_DataObject::staticGet($cls, $k, $v); $i = false;
if ($i) { return $i;
// DB_DataObject's in-process lookup cache interferes with GC }
// to cause massive memory leaks in long-running processes. $result = $i->get($k, $v);
if (php_sapi_name() == 'cli') { if ($result) {
$i->_clear_cache(); // Hit!
} $i->encache();
} else {
// Now store it into the shared memcached, if present... // save the fact that no such row exists
$i->encache(); $c = self::memcache();
if (!empty($c)) {
$ck = self::cachekey($cls, $k, $v);
$c->set($ck, null);
}
$i = false;
} }
return $i;
} }
return $i;
} }
function &pkeyGet($cls, $kv) /**
* @fixme Should this return false on lookup fail to match staticGet?
*/
function pkeyGet($cls, $kv)
{ {
$i = Memcached_DataObject::multicache($cls, $kv); $i = Memcached_DataObject::multicache($cls, $kv);
if ($i) { if ($i !== false) { // false == cache miss
return $i; return $i;
} else { } else {
$i = new $cls(); $i = DB_DataObject::factory($cls);
if (empty($i)) {
return false;
}
foreach ($kv as $k => $v) { foreach ($kv as $k => $v) {
$i->$k = $v; $i->$k = $v;
} }
@ -89,6 +133,11 @@ class Memcached_DataObject extends DB_DataObject
$i->encache(); $i->encache();
} else { } else {
$i = null; $i = null;
$c = self::memcache();
if (!empty($c)) {
$ck = self::multicacheKey($cls, $kv);
$c->set($ck, null);
}
} }
return $i; return $i;
} }
@ -97,6 +146,9 @@ class Memcached_DataObject extends DB_DataObject
function insert() function insert()
{ {
$result = parent::insert(); $result = parent::insert();
if ($result) {
$this->encache(); // in case of cached negative lookups
}
return $result; return $result;
} }
@ -123,7 +175,7 @@ class Memcached_DataObject extends DB_DataObject
} }
static function cacheKey($cls, $k, $v) { static function cacheKey($cls, $k, $v) {
if (is_object($cls) || is_object($j) || is_object($v)) { if (is_object($cls) || is_object($k) || is_object($v)) {
$e = new Exception(); $e = new Exception();
common_log(LOG_ERR, __METHOD__ . ' object in param: ' . common_log(LOG_ERR, __METHOD__ . ' object in param: ' .
str_replace("\n", " ", $e->getTraceAsString())); str_replace("\n", " ", $e->getTraceAsString()));
@ -142,6 +194,17 @@ class Memcached_DataObject extends DB_DataObject
function keyTypes() function keyTypes()
{ {
// ini-based classes return number-indexed arrays. handbuilt
// classes return column => keytype. Make this uniform.
$keys = $this->keys();
$keyskeys = array_keys($keys);
if (is_string($keyskeys[0])) {
return $keys;
}
global $_DB_DATAOBJECT; global $_DB_DATAOBJECT;
if (!isset($_DB_DATAOBJECT['INI'][$this->_database][$this->__table."__keys"])) { if (!isset($_DB_DATAOBJECT['INI'][$this->_database][$this->__table."__keys"])) {
$this->databaseStructure(); $this->databaseStructure();
@ -153,67 +216,90 @@ class Memcached_DataObject extends DB_DataObject
function encache() function encache()
{ {
$c = $this->memcache(); $c = $this->memcache();
if (!$c) { if (!$c) {
return false; return false;
} else { }
$pkey = array();
$pval = array(); $keys = $this->_allCacheKeys();
$types = $this->keyTypes();
ksort($types); foreach ($keys as $key) {
foreach ($types as $key => $type) { $c->set($key, $this);
if ($type == 'K') {
$pkey[] = $key;
$pval[] = $this->$key;
} else {
$c->set($this->cacheKey($this->tableName(), $key, $this->$key), $this);
}
}
# XXX: should work for both compound and scalar pkeys
$pvals = implode(',', $pval);
$pkeys = implode(',', $pkey);
$c->set($this->cacheKey($this->tableName(), $pkeys, $pvals), $this);
} }
} }
function decache() function decache()
{ {
$c = $this->memcache(); $c = $this->memcache();
if (!$c) { if (!$c) {
return false; return false;
} else {
$pkey = array();
$pval = array();
$types = $this->keyTypes();
ksort($types);
foreach ($types as $key => $type) {
if ($type == 'K') {
$pkey[] = $key;
$pval[] = $this->$key;
} else {
$c->delete($this->cacheKey($this->tableName(), $key, $this->$key));
}
}
# should work for both compound and scalar pkeys
# XXX: comma works for now but may not be safe separator for future keys
$pvals = implode(',', $pval);
$pkeys = implode(',', $pkey);
$c->delete($this->cacheKey($this->tableName(), $pkeys, $pvals));
} }
$keys = $this->_allCacheKeys();
foreach ($keys as $key) {
$c->delete($key, $this);
}
}
function _allCacheKeys()
{
$ckeys = array();
$types = $this->keyTypes();
ksort($types);
$pkey = array();
$pval = array();
foreach ($types as $key => $type) {
assert(!empty($key));
if ($type == 'U') {
if (empty($this->$key)) {
continue;
}
$ckeys[] = $this->cacheKey($this->tableName(), $key, $this->$key);
} else if ($type == 'K' || $type == 'N') {
$pkey[] = $key;
$pval[] = $this->$key;
} else {
throw new Exception("Unknown key type $key => $type for " . $this->tableName());
}
}
assert(count($pkey) > 0);
// XXX: should work for both compound and scalar pkeys
$pvals = implode(',', $pval);
$pkeys = implode(',', $pkey);
$ckeys[] = $this->cacheKey($this->tableName(), $pkeys, $pvals);
return $ckeys;
} }
function multicache($cls, $kv) function multicache($cls, $kv)
{ {
ksort($kv); ksort($kv);
$c = Memcached_DataObject::memcache(); $c = self::memcache();
if (!$c) { if (!$c) {
return false; return false;
} else { } else {
$pkeys = implode(',', array_keys($kv)); return $c->get(self::multicacheKey($cls, $kv));
$pvals = implode(',', array_values($kv));
return $c->get(Memcached_DataObject::cacheKey($cls, $pkeys, $pvals));
} }
} }
static function multicacheKey($cls, $kv)
{
ksort($kv);
$pkeys = implode(',', array_keys($kv));
$pvals = implode(',', array_values($kv));
return self::cacheKey($cls, $pkeys, $pvals);
}
function getSearchEngine($table) function getSearchEngine($table)
{ {
require_once INSTALLDIR.'/lib/search_engines.php'; require_once INSTALLDIR.'/lib/search_engines.php';
@ -248,7 +334,8 @@ class Memcached_DataObject extends DB_DataObject
$key_part = common_keyize($cls).':'.md5($qry); $key_part = common_keyize($cls).':'.md5($qry);
$ckey = common_cache_key($key_part); $ckey = common_cache_key($key_part);
$stored = $c->get($ckey); $stored = $c->get($ckey);
if ($stored) {
if ($stored !== false) {
return new ArrayWrapper($stored); return new ArrayWrapper($stored);
} }

View File

@ -63,7 +63,7 @@ class Notice extends Memcached_DataObject
public $created; // datetime multiple_key not_null default_0000-00-00%2000%3A00%3A00 public $created; // datetime multiple_key not_null default_0000-00-00%2000%3A00%3A00
public $modified; // timestamp not_null default_CURRENT_TIMESTAMP public $modified; // timestamp not_null default_CURRENT_TIMESTAMP
public $reply_to; // int(4) public $reply_to; // int(4)
public $is_local; // tinyint(1) public $is_local; // int(4)
public $source; // varchar(32) public $source; // varchar(32)
public $conversation; // int(4) public $conversation; // int(4)
public $lat; // decimal(10,7) public $lat; // decimal(10,7)
@ -214,7 +214,7 @@ class Notice extends Memcached_DataObject
extract($options); extract($options);
} }
if (empty($is_local)) { if (!isset($is_local)) {
$is_local = Notice::LOCAL_PUBLIC; $is_local = Notice::LOCAL_PUBLIC;
} }
@ -289,21 +289,11 @@ class Notice extends Memcached_DataObject
if (!empty($lat) && !empty($lon)) { if (!empty($lat) && !empty($lon)) {
$notice->lat = $lat; $notice->lat = $lat;
$notice->lon = $lon; $notice->lon = $lon;
}
if (!empty($location_ns) && !empty($location_id)) {
$notice->location_id = $location_id; $notice->location_id = $location_id;
$notice->location_ns = $location_ns; $notice->location_ns = $location_ns;
} else if (!empty($location_ns) && !empty($location_id)) {
$location = Location::fromId($location_id, $location_ns);
if (!empty($location)) {
$notice->lat = $location->lat;
$notice->lon = $location->lon;
$notice->location_id = $location_id;
$notice->location_ns = $location_ns;
}
} else {
$notice->lat = $profile->lat;
$notice->lon = $profile->lon;
$notice->location_id = $profile->location_id;
$notice->location_ns = $profile->location_ns;
} }
if (Event::handle('StartNoticeSave', array(&$notice))) { if (Event::handle('StartNoticeSave', array(&$notice))) {
@ -1139,7 +1129,7 @@ class Notice extends Memcached_DataObject
$xs->element('id', null, $this->uri); $xs->element('id', null, $this->uri);
$xs->element('published', null, common_date_w3dtf($this->created)); $xs->element('published', null, common_date_w3dtf($this->created));
$xs->element('updated', null, common_date_w3dtf($this->modified)); $xs->element('updated', null, common_date_w3dtf($this->created));
if ($this->reply_to) { if ($this->reply_to) {
$reply_notice = Notice::staticGet('id', $this->reply_to); $reply_notice = Notice::staticGet('id', $this->reply_to);
@ -1217,7 +1207,7 @@ class Notice extends Memcached_DataObject
$idstr = $cache->get($idkey); $idstr = $cache->get($idkey);
if (!empty($idstr)) { if ($idstr !== false) {
// Cache hit! Woohoo! // Cache hit! Woohoo!
$window = explode(',', $idstr); $window = explode(',', $idstr);
$ids = array_slice($window, $offset, $limit); $ids = array_slice($window, $offset, $limit);
@ -1226,7 +1216,7 @@ class Notice extends Memcached_DataObject
$laststr = $cache->get($idkey.';last'); $laststr = $cache->get($idkey.';last');
if (!empty($laststr)) { if ($laststr !== false) {
$window = explode(',', $laststr); $window = explode(',', $laststr);
$last_id = $window[0]; $last_id = $window[0];
$new_ids = call_user_func_array($fn, array_merge($args, array(0, NOTICE_CACHE_WINDOW, $new_ids = call_user_func_array($fn, array_merge($args, array(0, NOTICE_CACHE_WINDOW,
@ -1366,12 +1356,21 @@ class Notice extends Memcached_DataObject
{ {
$author = Profile::staticGet('id', $this->profile_id); $author = Profile::staticGet('id', $this->profile_id);
// FIXME: truncate on long repeats...?
$content = sprintf(_('RT @%1$s %2$s'), $content = sprintf(_('RT @%1$s %2$s'),
$author->nickname, $author->nickname,
$this->content); $this->content);
$maxlen = common_config('site', 'textlimit');
if ($maxlen > 0 && mb_strlen($content) > $maxlen) {
// Web interface and current Twitter API clients will
// pull the original notice's text, but some older
// clients and RSS/Atom feeds will see this trimmed text.
//
// Unfortunately this is likely to lose tags or URLs
// at the end of long notices.
$content = mb_substr($content, 0, $maxlen - 4) . ' ...';
}
return self::saveNew($repeater_id, $content, $source, return self::saveNew($repeater_id, $content, $source,
array('repeat_of' => $this->id)); array('repeat_of' => $this->id));
} }
@ -1386,7 +1385,7 @@ class Notice extends Memcached_DataObject
$ids = $this->_repeatStreamDirect($limit); $ids = $this->_repeatStreamDirect($limit);
} else { } else {
$idstr = $cache->get(common_cache_key('notice:repeats:'.$this->id)); $idstr = $cache->get(common_cache_key('notice:repeats:'.$this->id));
if (!empty($idstr)) { if ($idstr !== false) {
$ids = explode(',', $idstr); $ids = explode(',', $idstr);
} else { } else {
$ids = $this->_repeatStreamDirect(100); $ids = $this->_repeatStreamDirect(100);
@ -1429,4 +1428,47 @@ class Notice extends Memcached_DataObject
return $ids; return $ids;
} }
function locationOptions($lat, $lon, $location_id, $location_ns, $profile = null)
{
$options = array();
if (!empty($location_id) && !empty($location_ns)) {
$options['location_id'] = $location_id;
$options['location_ns'] = $location_ns;
$location = Location::fromId($location_id, $location_ns);
if (!empty($location)) {
$options['lat'] = $location->lat;
$options['lon'] = $location->lon;
}
} else if (!empty($lat) && !empty($lon)) {
$options['lat'] = $lat;
$options['lon'] = $lon;
$location = Location::fromLatLon($lat, $lon);
if (!empty($location)) {
$options['location_id'] = $location->location_id;
$options['location_ns'] = $location->location_ns;
}
} else if (!empty($profile)) {
if (isset($profile->lat) && isset($profile->lon)) {
$options['lat'] = $profile->lat;
$options['lon'] = $profile->lon;
}
if (isset($profile->location_id) && isset($profile->location_ns)) {
$options['location_id'] = $profile->location_id;
$options['location_ns'] = $profile->location_ns;
}
}
return $options;
}
} }

View File

@ -101,11 +101,18 @@ class Notice_inbox extends Memcached_DataObject
return $ids; return $ids;
} }
function &pkeyGet($kv) function pkeyGet($kv)
{ {
return Memcached_DataObject::pkeyGet('Notice_inbox', $kv); return Memcached_DataObject::pkeyGet('Notice_inbox', $kv);
} }
/**
* Trim inbox for a given user to latest NOTICE_INBOX_LIMIT items
* (up to NOTICE_INBOX_GC_MAX will be deleted).
*
* @param int $user_id
* @return int count of notices dropped from the inbox, if any
*/
static function gc($user_id) static function gc($user_id)
{ {
$entry = new Notice_inbox(); $entry = new Notice_inbox();
@ -133,6 +140,8 @@ class Notice_inbox extends Memcached_DataObject
$notices = array(); $notices = array();
} }
} }
return $total;
} }
static function deleteMatching($user_id, $notices) static function deleteMatching($user_id, $notices)

View File

@ -96,7 +96,7 @@ class Notice_tag extends Memcached_DataObject
} }
} }
function &pkeyGet($kv) function pkeyGet($kv)
{ {
return Memcached_DataObject::pkeyGet('Notice_tag', $kv); return Memcached_DataObject::pkeyGet('Notice_tag', $kv);
} }

View File

@ -504,6 +504,7 @@ class Profile extends Memcached_DataObject
'Reply', 'Reply',
'Group_member', 'Group_member',
); );
Event::handle('ProfileDeleteRelated', array($this, &$related));
foreach ($related as $cls) { foreach ($related as $cls) {
$inst = new $cls(); $inst = new $cls();

View File

@ -43,7 +43,7 @@ class Profile_role extends Memcached_DataObject
/* the code above is auto generated do not remove the tag below */ /* the code above is auto generated do not remove the tag below */
###END_AUTOCODE ###END_AUTOCODE
function &pkeyGet($kv) function pkeyGet($kv)
{ {
return Memcached_DataObject::pkeyGet('Profile_role', $kv); return Memcached_DataObject::pkeyGet('Profile_role', $kv);
} }

View File

@ -55,7 +55,7 @@ class Queue_item extends Memcached_DataObject
return null; return null;
} }
function &pkeyGet($kv) function pkeyGet($kv)
{ {
return Memcached_DataObject::pkeyGet('Queue_item', $kv); return Memcached_DataObject::pkeyGet('Queue_item', $kv);
} }

View File

@ -46,7 +46,7 @@ class Subscription extends Memcached_DataObject
/* the code above is auto generated do not remove the tag below */ /* the code above is auto generated do not remove the tag below */
###END_AUTOCODE ###END_AUTOCODE
function &pkeyGet($kv) function pkeyGet($kv)
{ {
return Memcached_DataObject::pkeyGet('Subscription', $kv); return Memcached_DataObject::pkeyGet('Subscription', $kv);
} }

View File

@ -625,7 +625,11 @@ class User extends Memcached_DataObject
// Cancel their subscription, if it exists // Cancel their subscription, if it exists
subs_unsubscribe_to($other->getUser(),$this->getProfile()); $otherUser = User::staticGet('id', $other->id);
if (!empty($otherUser)) {
subs_unsubscribe_to($otherUser, $this->getProfile());
}
$block->query('COMMIT'); $block->query('COMMIT');
@ -992,4 +996,28 @@ class User extends Memcached_DataObject
return $ids; return $ids;
} }
function shareLocation()
{
$cfg = common_config('location', 'share');
if ($cfg == 'always') {
return true;
} else if ($cfg == 'never') {
return false;
} else { // user
$share = true;
$prefs = User_location_prefs::staticGet('user_id', $this->id);
if (empty($prefs)) {
$share = common_config('location', 'sharedefault');
} else {
$share = $prefs->share_location;
$prefs->free();
}
return $share;
}
}
} }

View File

@ -0,0 +1,53 @@
<?php
/**
* StatusNet, the distributed open-source microblogging tool
*
* Data class for user location preferences
*
* 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 Data
* @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/
*/
require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
class User_location_prefs extends Memcached_DataObject
{
###START_AUTOCODE
/* the code below is auto generated do not remove the above tag */
public $__table = 'user_location_prefs'; // table name
public $user_id; // int(4) primary_key not_null
public $share_location; // tinyint(1) default_1
public $created; // datetime not_null default_0000-00-00%2000%3A00%3A00
public $modified; // timestamp not_null default_CURRENT_TIMESTAMP
/* Static get */
function staticGet($k,$v=NULL) { return Memcached_DataObject::staticGet('User_location_prefs',$k,$v); }
/* the code above is auto generated do not remove the tag below */
###END_AUTOCODE
function sequenceKey()
{
return array(false, false, false);
}
}

View File

@ -1,4 +1,3 @@
[avatar] [avatar]
profile_id = 129 profile_id = 129
original = 17 original = 17
@ -93,6 +92,7 @@ modified = 384
[file__keys] [file__keys]
id = N id = N
url = U
[file_oembed] [file_oembed]
file_id = 129 file_id = 129
@ -565,3 +565,13 @@ modified = 384
[user_openid__keys] [user_openid__keys]
trustroot = K trustroot = K
user_id = K user_id = K
[user_location_prefs]
user_id = 129
share_location = 17
created = 142
modified = 384
[user_location_prefs__keys]
user_id = K

View File

@ -41,6 +41,20 @@ $config['site']['path'] = 'statusnet';
// Make the site invisible to non-logged-in users // Make the site invisible to non-logged-in users
// $config['site']['private'] = true; // $config['site']['private'] = true;
// If your web server supports X-Sendfile (Apache with mod_xsendfile,
// lighttpd, nginx), you can enable X-Sendfile support for better
// performance. Presently, only attachment serving when the site is
// in private mode will use X-Sendfile.
// $config['site']['X-Sendfile'] = false;
// You may also need to enable X-Sendfile support for your web server and
// allow it to access files outside of the web root. For Apache with
// mod_xsendfile, you can add these to your .htaccess or server config:
//
// XSendFile on
// XSendFileAllowAbove on
//
// See http://tn123.ath.cx/mod_xsendfile/ for mod_xsendfile.
// If you want logging sent to a file instead of syslog // If you want logging sent to a file instead of syslog
// $config['site']['logfile'] = '/tmp/statusnet.log'; // $config['site']['logfile'] = '/tmp/statusnet.log';
@ -265,6 +279,7 @@ $config['sphinx']['port'] = 3312;
// $config['attachments']['user_quota'] = 50000000; // $config['attachments']['user_quota'] = 50000000;
// $config['attachments']['monthly_quota'] = 15000000; // $config['attachments']['monthly_quota'] = 15000000;
// $config['attachments']['uploads'] = true; // $config['attachments']['uploads'] = true;
// $config['attachments']['path'] = "/file/"; // $config['attachments']['path'] = "/file/"; //ignored if site is private
// $config['attachments']['dir'] = INSTALLDIR . '/file/';
// $config['oohembed']['endpoint'] = 'http://oohembed.com/oohembed/'; // $config['oohembed']['endpoint'] = 'http://oohembed.com/oohembed/';

View File

@ -84,3 +84,13 @@ create table login_token (
constraint primary key (user_id) constraint primary key (user_id)
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
create table user_location_prefs (
user_id integer not null comment 'user who has the preference' references user (id),
share_location tinyint default 1 comment 'Whether to share location data',
created datetime not null comment 'date this record was created',
modified timestamp comment 'date this record was modified',
constraint primary key (user_id)
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;

View File

@ -587,3 +587,12 @@ create table login_token (
constraint primary key (user_id) constraint primary key (user_id)
) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin; ) ENGINE=InnoDB CHARACTER SET utf8 COLLATE utf8_bin;
create table user_location_prefs (
user_id integer not null comment 'user who has the preference' references user (id),
share_location tinyint default 1 comment 'Whether to share location data',
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;

458
extlib/lgpl-2.1.txt Normal file
View File

@ -0,0 +1,458 @@
GNU LESSER GENERAL PUBLIC LICENSE
Version 2.1, February 1999
Copyright (C) 1991, 1999 Free Software Foundation, Inc.
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
[This is the first released version of the Lesser GPL. It also counts
as the successor of the GNU Library Public License, version 2, hence
the version number 2.1.]
Preamble
The licenses for most software are designed to take away your
freedom to share and change it. By contrast, the GNU General Public
Licenses are intended to guarantee your freedom to share and change
free software--to make sure the software is free for all its users.
This license, the Lesser General Public License, applies to some
specially designated software packages--typically libraries--of the
Free Software Foundation and other authors who decide to use it. You
can use it too, but we suggest you first think carefully about whether
this license or the ordinary General Public License is the better
strategy to use in any particular case, based on the explanations below.
When we speak of free software, we are referring to freedom of use,
not price. Our General Public Licenses are designed to make sure that
you have the freedom to distribute copies of free software (and charge
for this service if you wish); that you receive source code or can get
it if you want it; that you can change the software and use pieces of
it in new free programs; and that you are informed that you can do
these things.
To protect your rights, we need to make restrictions that forbid
distributors to deny you these rights or to ask you to surrender these
rights. These restrictions translate to certain responsibilities for
you if you distribute copies of the library or if you modify it.
For example, if you distribute copies of the library, whether gratis
or for a fee, you must give the recipients all the rights that we gave
you. You must make sure that they, too, receive or can get the source
code. If you link other code with the library, you must provide
complete object files to the recipients, so that they can relink them
with the library after making changes to the library and recompiling
it. And you must show them these terms so they know their rights.
We protect your rights with a two-step method: (1) we copyright the
library, and (2) we offer you this license, which gives you legal
permission to copy, distribute and/or modify the library.
To protect each distributor, we want to make it very clear that
there is no warranty for the free library. Also, if the library is
modified by someone else and passed on, the recipients should know
that what they have is not the original version, so that the original
author's reputation will not be affected by problems that might be
introduced by others.
Finally, software patents pose a constant threat to the existence of
any free program. We wish to make sure that a company cannot
effectively restrict the users of a free program by obtaining a
restrictive license from a patent holder. Therefore, we insist that
any patent license obtained for a version of the library must be
consistent with the full freedom of use specified in this license.
Most GNU software, including some libraries, is covered by the
ordinary GNU General Public License. This license, the GNU Lesser
General Public License, applies to certain designated libraries, and
is quite different from the ordinary General Public License. We use
this license for certain libraries in order to permit linking those
libraries into non-free programs.
When a program is linked with a library, whether statically or using
a shared library, the combination of the two is legally speaking a
combined work, a derivative of the original library. The ordinary
General Public License therefore permits such linking only if the
entire combination fits its criteria of freedom. The Lesser General
Public License permits more lax criteria for linking other code with
the library.
We call this license the "Lesser" General Public License because it
does Less to protect the user's freedom than the ordinary General
Public License. It also provides other free software developers Less
of an advantage over competing non-free programs. These disadvantages
are the reason we use the ordinary General Public License for many
libraries. However, the Lesser license provides advantages in certain
special circumstances.
For example, on rare occasions, there may be a special need to
encourage the widest possible use of a certain library, so that it becomes
a de-facto standard. To achieve this, non-free programs must be
allowed to use the library. A more frequent case is that a free
library does the same job as widely used non-free libraries. In this
case, there is little to gain by limiting the free library to free
software only, so we use the Lesser General Public License.
In other cases, permission to use a particular library in non-free
programs enables a greater number of people to use a large body of
free software. For example, permission to use the GNU C Library in
non-free programs enables many more people to use the whole GNU
operating system, as well as its variant, the GNU/Linux operating
system.
Although the Lesser General Public License is Less protective of the
users' freedom, it does ensure that the user of a program that is
linked with the Library has the freedom and the wherewithal to run
that program using a modified version of the Library.
The precise terms and conditions for copying, distribution and
modification follow. Pay close attention to the difference between a
"work based on the library" and a "work that uses the library". The
former contains code derived from the library, whereas the latter must
be combined with the library in order to run.
GNU LESSER GENERAL PUBLIC LICENSE
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License Agreement applies to any software library or other
program which contains a notice placed by the copyright holder or
other authorized party saying it may be distributed under the terms of
this Lesser General Public License (also called "this License").
Each licensee is addressed as "you".
A "library" means a collection of software functions and/or data
prepared so as to be conveniently linked with application programs
(which use some of those functions and data) to form executables.
The "Library", below, refers to any such software library or work
which has been distributed under these terms. A "work based on the
Library" means either the Library or any derivative work under
copyright law: that is to say, a work containing the Library or a
portion of it, either verbatim or with modifications and/or translated
straightforwardly into another language. (Hereinafter, translation is
included without limitation in the term "modification".)
"Source code" for a work means the preferred form of the work for
making modifications to it. For a library, complete source code means
all the source code for all modules it contains, plus any associated
interface definition files, plus the scripts used to control compilation
and installation of the library.
Activities other than copying, distribution and modification are not
covered by this License; they are outside its scope. The act of
running a program using the Library is not restricted, and output from
such a program is covered only if its contents constitute a work based
on the Library (independent of the use of the Library in a tool for
writing it). Whether that is true depends on what the Library does
and what the program that uses the Library does.
1. You may copy and distribute verbatim copies of the Library's
complete source code as you receive it, in any medium, provided that
you conspicuously and appropriately publish on each copy an
appropriate copyright notice and disclaimer of warranty; keep intact
all the notices that refer to this License and to the absence of any
warranty; and distribute a copy of this License along with the
Library.
You may charge a fee for the physical act of transferring a copy,
and you may at your option offer warranty protection in exchange for a
fee.
2. You may modify your copy or copies of the Library or any portion
of it, thus forming a work based on the Library, and copy and
distribute such modifications or work under the terms of Section 1
above, provided that you also meet all of these conditions:
a) The modified work must itself be a software library.
b) You must cause the files modified to carry prominent notices
stating that you changed the files and the date of any change.
c) You must cause the whole of the work to be licensed at no
charge to all third parties under the terms of this License.
d) If a facility in the modified Library refers to a function or a
table of data to be supplied by an application program that uses
the facility, other than as an argument passed when the facility
is invoked, then you must make a good faith effort to ensure that,
in the event an application does not supply such function or
table, the facility still operates, and performs whatever part of
its purpose remains meaningful.
(For example, a function in a library to compute square roots has
a purpose that is entirely well-defined independent of the
application. Therefore, Subsection 2d requires that any
application-supplied function or table used by this function must
be optional: if the application does not supply it, the square
root function must still compute square roots.)
These requirements apply to the modified work as a whole. If
identifiable sections of that work are not derived from the Library,
and can be reasonably considered independent and separate works in
themselves, then this License, and its terms, do not apply to those
sections when you distribute them as separate works. But when you
distribute the same sections as part of a whole which is a work based
on the Library, the distribution of the whole must be on the terms of
this License, whose permissions for other licensees extend to the
entire whole, and thus to each and every part regardless of who wrote
it.
Thus, it is not the intent of this section to claim rights or contest
your rights to work written entirely by you; rather, the intent is to
exercise the right to control the distribution of derivative or
collective works based on the Library.
In addition, mere aggregation of another work not based on the Library
with the Library (or with a work based on the Library) on a volume of
a storage or distribution medium does not bring the other work under
the scope of this License.
3. You may opt to apply the terms of the ordinary GNU General Public
License instead of this License to a given copy of the Library. To do
this, you must alter all the notices that refer to this License, so
that they refer to the ordinary GNU General Public License, version 2,
instead of to this License. (If a newer version than version 2 of the
ordinary GNU General Public License has appeared, then you can specify
that version instead if you wish.) Do not make any other change in
these notices.
Once this change is made in a given copy, it is irreversible for
that copy, so the ordinary GNU General Public License applies to all
subsequent copies and derivative works made from that copy.
This option is useful when you wish to copy part of the code of
the Library into a program that is not a library.
4. You may copy and distribute the Library (or a portion or
derivative of it, under Section 2) in object code or executable form
under the terms of Sections 1 and 2 above provided that you accompany
it with the complete corresponding machine-readable source code, which
must be distributed under the terms of Sections 1 and 2 above on a
medium customarily used for software interchange.
If distribution of object code is made by offering access to copy
from a designated place, then offering equivalent access to copy the
source code from the same place satisfies the requirement to
distribute the source code, even though third parties are not
compelled to copy the source along with the object code.
5. A program that contains no derivative of any portion of the
Library, but is designed to work with the Library by being compiled or
linked with it, is called a "work that uses the Library". Such a
work, in isolation, is not a derivative work of the Library, and
therefore falls outside the scope of this License.
However, linking a "work that uses the Library" with the Library
creates an executable that is a derivative of the Library (because it
contains portions of the Library), rather than a "work that uses the
library". The executable is therefore covered by this License.
Section 6 states terms for distribution of such executables.
When a "work that uses the Library" uses material from a header file
that is part of the Library, the object code for the work may be a
derivative work of the Library even though the source code is not.
Whether this is true is especially significant if the work can be
linked without the Library, or if the work is itself a library. The
threshold for this to be true is not precisely defined by law.
If such an object file uses only numerical parameters, data
structure layouts and accessors, and small macros and small inline
functions (ten lines or less in length), then the use of the object
file is unrestricted, regardless of whether it is legally a derivative
work. (Executables containing this object code plus portions of the
Library will still fall under Section 6.)
Otherwise, if the work is a derivative of the Library, you may
distribute the object code for the work under the terms of Section 6.
Any executables containing that work also fall under Section 6,
whether or not they are linked directly with the Library itself.
6. As an exception to the Sections above, you may also combine or
link a "work that uses the Library" with the Library to produce a
work containing portions of the Library, and distribute that work
under terms of your choice, provided that the terms permit
modification of the work for the customer's own use and reverse
engineering for debugging such modifications.
You must give prominent notice with each copy of the work that the
Library is used in it and that the Library and its use are covered by
this License. You must supply a copy of this License. If the work
during execution displays copyright notices, you must include the
copyright notice for the Library among them, as well as a reference
directing the user to the copy of this License. Also, you must do one
of these things:
a) Accompany the work with the complete corresponding
machine-readable source code for the Library including whatever
changes were used in the work (which must be distributed under
Sections 1 and 2 above); and, if the work is an executable linked
with the Library, with the complete machine-readable "work that
uses the Library", as object code and/or source code, so that the
user can modify the Library and then relink to produce a modified
executable containing the modified Library. (It is understood
that the user who changes the contents of definitions files in the
Library will not necessarily be able to recompile the application
to use the modified definitions.)
b) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (1) uses at run time a
copy of the library already present on the user's computer system,
rather than copying library functions into the executable, and (2)
will operate properly with a modified version of the library, if
the user installs one, as long as the modified version is
interface-compatible with the version that the work was made with.
c) Accompany the work with a written offer, valid for at
least three years, to give the same user the materials
specified in Subsection 6a, above, for a charge no more
than the cost of performing this distribution.
d) If distribution of the work is made by offering access to copy
from a designated place, offer equivalent access to copy the above
specified materials from the same place.
e) Verify that the user has already received a copy of these
materials or that you have already sent this user a copy.
For an executable, the required form of the "work that uses the
Library" must include any data and utility programs needed for
reproducing the executable from it. However, as a special exception,
the materials to be distributed need not include anything that is
normally distributed (in either source or binary form) with the major
components (compiler, kernel, and so on) of the operating system on
which the executable runs, unless that component itself accompanies
the executable.
It may happen that this requirement contradicts the license
restrictions of other proprietary libraries that do not normally
accompany the operating system. Such a contradiction means you cannot
use both them and the Library together in an executable that you
distribute.
7. You may place library facilities that are a work based on the
Library side-by-side in a single library together with other library
facilities not covered by this License, and distribute such a combined
library, provided that the separate distribution of the work based on
the Library and of the other library facilities is otherwise
permitted, and provided that you do these two things:
a) Accompany the combined library with a copy of the same work
based on the Library, uncombined with any other library
facilities. This must be distributed under the terms of the
Sections above.
b) Give prominent notice with the combined library of the fact
that part of it is a work based on the Library, and explaining
where to find the accompanying uncombined form of the same work.
8. You may not copy, modify, sublicense, link with, or distribute
the Library except as expressly provided under this License. Any
attempt otherwise to copy, modify, sublicense, link with, or
distribute the Library is void, and will automatically terminate your
rights under this License. However, parties who have received copies,
or rights, from you under this License will not have their licenses
terminated so long as such parties remain in full compliance.
9. You are not required to accept this License, since you have not
signed it. However, nothing else grants you permission to modify or
distribute the Library or its derivative works. These actions are
prohibited by law if you do not accept this License. Therefore, by
modifying or distributing the Library (or any work based on the
Library), you indicate your acceptance of this License to do so, and
all its terms and conditions for copying, distributing or modifying
the Library or works based on it.
10. Each time you redistribute the Library (or any work based on the
Library), the recipient automatically receives a license from the
original licensor to copy, distribute, link with or modify the Library
subject to these terms and conditions. You may not impose any further
restrictions on the recipients' exercise of the rights granted herein.
You are not responsible for enforcing compliance by third parties with
this License.
11. If, as a consequence of a court judgment or allegation of patent
infringement or for any other reason (not limited to patent issues),
conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot
distribute so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you
may not distribute the Library at all. For example, if a patent
license would not permit royalty-free redistribution of the Library by
all those who receive copies directly or indirectly through you, then
the only way you could satisfy both it and this License would be to
refrain entirely from distribution of the Library.
If any portion of this section is held invalid or unenforceable under any
particular circumstance, the balance of the section is intended to apply,
and the section as a whole is intended to apply in other circumstances.
It is not the purpose of this section to induce you to infringe any
patents or other property right claims or to contest validity of any
such claims; this section has the sole purpose of protecting the
integrity of the free software distribution system which is
implemented by public license practices. Many people have made
generous contributions to the wide range of software distributed
through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing
to distribute software through any other system and a licensee cannot
impose that choice.
This section is intended to make thoroughly clear what is believed to
be a consequence of the rest of this License.
12. If the distribution and/or use of the Library is restricted in
certain countries either by patents or by copyrighted interfaces, the
original copyright holder who places the Library under this License may add
an explicit geographical distribution limitation excluding those countries,
so that distribution is permitted only in or among countries not thus
excluded. In such case, this License incorporates the limitation as if
written in the body of this License.
13. The Free Software Foundation may publish revised and/or new
versions of the Lesser General Public License from time to time.
Such new versions will be similar in spirit to the present version,
but may differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the Library
specifies a version number of this License which applies to it and
"any later version", you have the option of following the terms and
conditions either of that version or of any later version published by
the Free Software Foundation. If the Library does not specify a
license version number, you may choose any version ever published by
the Free Software Foundation.
14. If you wish to incorporate parts of the Library into other free
programs whose distribution conditions are incompatible with these,
write to the author to ask for permission. For software which is
copyrighted by the Free Software Foundation, write to the Free
Software Foundation; we sometimes make exceptions for this. Our
decision will be guided by the two goals of preserving the free status
of all derivatives of our free software and of promoting the sharing
and reuse of software generally.
NO WARRANTY
15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
DAMAGES.
END OF TERMS AND CONDITIONS

View File

@ -5,14 +5,6 @@
RewriteBase /mublog/ RewriteBase /mublog/
# If your site is private and want to only allow logged-in users to
# be able to download file attachments, uncomment this rule.
#
# If you have a custom attachment path
# ($config['attachments']['path']), change "file/" to match.
#
#RewriteRule ^file/(.*) getfile/$1
RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule (.*) index.php?p=$1 [L,QSA] RewriteRule (.*) index.php?p=$1 [L,QSA]

View File

@ -454,7 +454,6 @@ function showForm()
<dd> <dd>
<div class="instructions"> <div class="instructions">
<p>Enter your database connection information below to initialize the database.</p> <p>Enter your database connection information below to initialize the database.</p>
<p>StatusNet bundles a number of libraries for ease of installation. <a href="?checklibs=true">You can see what bundled libraries you are using, versus what libraries are installed on your server.</a>
</div> </div>
</dd> </dd>
</dl> </dl>

View File

@ -1,4 +1,4 @@
// A shim to implement the W3C Geolocation API Specification using Gears or the Ajax API // A shim to implement the W3C Geolocation API Specification using Gears
if (typeof navigator.geolocation == "undefined" || navigator.geolocation.shim ) (function(){ if (typeof navigator.geolocation == "undefined" || navigator.geolocation.shim ) (function(){
// -- BEGIN GEARS_INIT // -- BEGIN GEARS_INIT
@ -96,122 +96,9 @@ var GearsGeoLocation = (function() {
}; };
}); });
var AjaxGeoLocation = (function() { // If you have Gears installed use that
// -- PRIVATE if (window.google && google.gears) {
var loading = false; navigator.geolocation = GearsGeoLocation();
var loadGoogleLoader = function() { }
if (!hasGoogleLoader() && !loading) {
loading = true;
var s = document.createElement('script');
s.src = (document.location.protocol == "https:"?"https://":"http://") + 'www.google.com/jsapi?callback=_google_loader_apiLoaded';
s.type = "text/javascript";
document.getElementsByTagName('body')[0].appendChild(s);
}
};
var queue = [];
var addLocationQueue = function(callback) {
queue.push(callback);
}
var runLocationQueue = function() {
if (hasGoogleLoader()) {
while (queue.length > 0) {
var call = queue.pop();
call();
}
}
}
window['_google_loader_apiLoaded'] = function() {
runLocationQueue();
}
var hasGoogleLoader = function() {
return (window['google'] && google['loader']);
}
var checkGoogleLoader = function(callback) {
if (hasGoogleLoader()) return true;
addLocationQueue(callback);
loadGoogleLoader();
return false;
};
loadGoogleLoader(); // start to load as soon as possible just in case
// -- PUBLIC
return {
shim: true,
type: "ClientLocation",
lastPosition: null,
getCurrentPosition: function(successCallback, errorCallback, options) {
var self = this;
if (!checkGoogleLoader(function() {
self.getCurrentPosition(successCallback, errorCallback, options);
})) return;
if (google.loader.ClientLocation) {
var cl = google.loader.ClientLocation;
var position = {
coords: {
latitude: cl.latitude,
longitude: cl.longitude,
altitude: null,
accuracy: 43000, // same as Gears accuracy over wifi?
altitudeAccuracy: null,
heading: null,
speed: null,
},
// extra info that is outside of the bounds of the core API
address: {
city: cl.address.city,
country: cl.address.country,
country_code: cl.address.country_code,
region: cl.address.region
},
timestamp: new Date()
};
successCallback(position);
this.lastPosition = position;
} else if (errorCallback === "function") {
errorCallback({ code: 3, message: "Using the Google ClientLocation API and it is not able to calculate a location."});
}
},
watchPosition: function(successCallback, errorCallback, options) {
this.getCurrentPosition(successCallback, errorCallback, options);
var self = this;
var watchId = setInterval(function() {
self.getCurrentPosition(successCallback, errorCallback, options);
}, 10000);
return watchId;
},
clearWatch: function(watchId) {
clearInterval(watchId);
},
getPermission: function(siteName, imageUrl, extraMessage) {
// for now just say yes :)
return true;
}
};
});
// If you have Gears installed use that, else use Ajax ClientLocation
navigator.geolocation = (window.google && google.gears) ? GearsGeoLocation() : AjaxGeoLocation();
})(); })();

96
js/jquery.cookie.js Normal file
View File

@ -0,0 +1,96 @@
/**
* Cookie plugin
*
* Copyright (c) 2006 Klaus Hartl (stilbuero.de)
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*
*/
/**
* Create a cookie with the given name and value and other optional parameters.
*
* @example $.cookie('the_cookie', 'the_value');
* @desc Set the value of a cookie.
* @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true });
* @desc Create a cookie with all available options.
* @example $.cookie('the_cookie', 'the_value');
* @desc Create a session cookie.
* @example $.cookie('the_cookie', null);
* @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain
* used when the cookie was set.
*
* @param String name The name of the cookie.
* @param String value The value of the cookie.
* @param Object options An object literal containing key/value pairs to provide optional cookie attributes.
* @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object.
* If a negative value is specified (e.g. a date in the past), the cookie will be deleted.
* If set to null or omitted, the cookie will be a session cookie and will not be retained
* when the the browser exits.
* @option String path The value of the path atribute of the cookie (default: path of page that created the cookie).
* @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie).
* @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will
* require a secure protocol (like HTTPS).
* @type undefined
*
* @name $.cookie
* @cat Plugins/Cookie
* @author Klaus Hartl/klaus.hartl@stilbuero.de
*/
/**
* Get the value of a cookie with the given name.
*
* @example $.cookie('the_cookie');
* @desc Get the value of a cookie.
*
* @param String name The name of the cookie.
* @return The value of the cookie.
* @type String
*
* @name $.cookie
* @cat Plugins/Cookie
* @author Klaus Hartl/klaus.hartl@stilbuero.de
*/
jQuery.cookie = function(name, value, options) {
if (typeof value != 'undefined') { // name and value given, set cookie
options = options || {};
if (value === null) {
value = '';
options.expires = -1;
}
var expires = '';
if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
var date;
if (typeof options.expires == 'number') {
date = new Date();
date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
} else {
date = options.expires;
}
expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
}
// CAUTION: Needed to parenthesize options.path and options.domain
// in the following expressions, otherwise they evaluate to undefined
// in the packed version for some reason...
var path = options.path ? '; path=' + (options.path) : '';
var domain = options.domain ? '; domain=' + (options.domain) : '';
var secure = options.secure ? '; secure' : '';
document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
} else { // only name given, get cookie
var cookieValue = null;
if (document.cookie && document.cookie != '') {
var cookies = document.cookie.split(';');
for (var i = 0; i < cookies.length; i++) {
var cookie = jQuery.trim(cookies[i]);
// Does this cookie string begin with the name we want?
if (cookie.substring(0, name.length + 1) == (name + '=')) {
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
break;
}
}
}
return cookieValue;
}
};

4
js/json2.js Normal file
View File

@ -0,0 +1,4 @@
/*
http://www.JSON.org/json2.js minified
*/
if(!this.JSON){JSON={};}(function(){function f(n){return n<10?'0'+n:n;}if(typeof Date.prototype.toJSON!=='function'){Date.prototype.toJSON=function(key){return this.getUTCFullYear()+'-'+f(this.getUTCMonth()+1)+'-'+f(this.getUTCDate())+'T'+f(this.getUTCHours())+':'+f(this.getUTCMinutes())+':'+f(this.getUTCSeconds())+'Z';};String.prototype.toJSON=Number.prototype.toJSON=Boolean.prototype.toJSON=function(key){return this.valueOf();};}var cx=/[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,escapable=/[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,gap,indent,meta={'\b':'\\b','\t':'\\t','\n':'\\n','\f':'\\f','\r':'\\r','"':'\\"','\\':'\\\\'},rep;function quote(string){escapable.lastIndex=0;return escapable.test(string)?'"'+string.replace(escapable,function(a){var c=meta[a];return typeof c==='string'?c:'\\u'+('0000'+a.charCodeAt(0).toString(16)).slice(-4);})+'"':'"'+string+'"';}function str(key,holder){var i,k,v,length,mind=gap,partial,value=holder[key];if(value&&typeof value==='object'&&typeof value.toJSON==='function'){value=value.toJSON(key);}if(typeof rep==='function'){value=rep.call(holder,key,value);}switch(typeof value){case'string':return quote(value);case'number':return isFinite(value)?String(value):'null';case'boolean':case'null':return String(value);case'object':if(!value){return'null';}gap+=indent;partial=[];if(Object.prototype.toString.apply(value)==='[object Array]'){length=value.length;for(i=0;i<length;i+=1){partial[i]=str(i,value)||'null';}v=partial.length===0?'[]':gap?'[\n'+gap+partial.join(',\n'+gap)+'\n'+mind+']':'['+partial.join(',')+']';gap=mind;return v;}if(rep&&typeof rep==='object'){length=rep.length;for(i=0;i<length;i+=1){k=rep[i];if(typeof k==='string'){v=str(k,value);if(v){partial.push(quote(k)+(gap?': ':':')+v);}}}}else{for(k in value){if(Object.hasOwnProperty.call(value,k)){v=str(k,value);if(v){partial.push(quote(k)+(gap?': ':':')+v);}}}}v=partial.length===0?'{}':gap?'{\n'+gap+partial.join(',\n'+gap)+'\n'+mind+'}':'{'+partial.join(',')+'}';gap=mind;return v;}}if(typeof JSON.stringify!=='function'){JSON.stringify=function(value,replacer,space){var i;gap='';indent='';if(typeof space==='number'){for(i=0;i<space;i+=1){indent+=' ';}}else if(typeof space==='string'){indent=space;}rep=replacer;if(replacer&&typeof replacer!=='function'&&(typeof replacer!=='object'||typeof replacer.length!=='number')){throw new Error('JSON.stringify');}return str('',{'':value});};}if(typeof JSON.parse!=='function'){JSON.parse=function(text,reviver){var j;function walk(holder,key){var k,v,value=holder[key];if(value&&typeof value==='object'){for(k in value){if(Object.hasOwnProperty.call(value,k)){v=walk(value,k);if(v!==undefined){value[k]=v;}else{delete value[k];}}}}return reviver.call(holder,key,value);}cx.lastIndex=0;if(cx.test(text)){text=text.replace(cx,function(a){return'\\u'+('0000'+a.charCodeAt(0).toString(16)).slice(-4);});}if(/^[\],:{}\s]*$/.test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,'@').replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,']').replace(/(?:^|:|,)(?:\s*\[)+/g,''))){j=eval('('+text+')');return typeof reviver==='function'?walk({'':j},''):j;}throw new SyntaxError('JSON.parse');};}}());

View File

@ -50,7 +50,11 @@ var SN = { // StatusNet
NoticeLat: 'notice_data-lat', NoticeLat: 'notice_data-lat',
NoticeLon: 'notice_data-lon', NoticeLon: 'notice_data-lon',
NoticeLocationId: 'notice_data-location_id', NoticeLocationId: 'notice_data-location_id',
NoticeLocationNs: 'notice_data-location_ns' NoticeLocationNs: 'notice_data-location_ns',
NoticeGeoName: 'notice_data-geo_name',
NoticeDataGeo: 'notice_data-geo',
NoticeDataGeoCookie: 'notice_data-geo_cookie',
NoticeDataGeoSelected: 'notice_data-geo_selected'
} }
}, },
@ -174,12 +178,13 @@ var SN = { // StatusNet
}, },
FormNoticeXHR: function(form) { FormNoticeXHR: function(form) {
var NDG, NLat, NLon, NLNS, NLID;
form_id = form.attr('id'); form_id = form.attr('id');
form.append('<input type="hidden" name="ajax" value="1"/>'); form.append('<input type="hidden" name="ajax" value="1"/>');
form.ajaxForm({ form.ajaxForm({
dataType: 'xml', dataType: 'xml',
timeout: '60000', timeout: '60000',
beforeSend: function(xhr) { beforeSend: function(formData) {
if ($('#'+form_id+' #'+SN.C.S.NoticeDataText)[0].value.length === 0) { if ($('#'+form_id+' #'+SN.C.S.NoticeDataText)[0].value.length === 0) {
form.addClass(SN.C.S.Warning); form.addClass(SN.C.S.Warning);
return false; return false;
@ -187,6 +192,29 @@ var SN = { // StatusNet
form.addClass(SN.C.S.Processing); form.addClass(SN.C.S.Processing);
$('#'+form_id+' #'+SN.C.S.NoticeActionSubmit).addClass(SN.C.S.Disabled); $('#'+form_id+' #'+SN.C.S.NoticeActionSubmit).addClass(SN.C.S.Disabled);
$('#'+form_id+' #'+SN.C.S.NoticeActionSubmit).attr(SN.C.S.Disabled, SN.C.S.Disabled); $('#'+form_id+' #'+SN.C.S.NoticeActionSubmit).attr(SN.C.S.Disabled, SN.C.S.Disabled);
NLat = $('#'+SN.C.S.NoticeLat).val();
NLon = $('#'+SN.C.S.NoticeLon).val();
NLNS = $('#'+SN.C.S.NoticeLocationNs).val();
NLID = $('#'+SN.C.S.NoticeLocationId).val();
NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked');
cookieValue = $.cookie(SN.C.S.NoticeDataGeoCookie);
if (cookieValue !== null && cookieValue != 'disabled') {
cookieValue = JSON.parse(cookieValue);
NLat = $('#'+SN.C.S.NoticeLat).val(cookieValue.NLat).val();
NLon = $('#'+SN.C.S.NoticeLon).val(cookieValue.NLon).val();
NLNS = $('#'+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS).val();
NLID = $('#'+SN.C.S.NoticeLocationId).val(cookieValue.NLID).val();
}
if (cookieValue == 'disabled') {
NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked', false).attr('checked');
}
else {
NDG = $('#'+SN.C.S.NoticeDataGeo).attr('checked', true).attr('checked');
}
return true; return true;
}, },
error: function (xhr, textStatus, errorThrown) { error: function (xhr, textStatus, errorThrown) {
@ -269,6 +297,12 @@ var SN = { // StatusNet
form.removeClass(SN.C.S.Processing); form.removeClass(SN.C.S.Processing);
$('#'+form_id+' #'+SN.C.S.NoticeActionSubmit).removeAttr(SN.C.S.Disabled); $('#'+form_id+' #'+SN.C.S.NoticeActionSubmit).removeAttr(SN.C.S.Disabled);
$('#'+form_id+' #'+SN.C.S.NoticeActionSubmit).removeClass(SN.C.S.Disabled); $('#'+form_id+' #'+SN.C.S.NoticeActionSubmit).removeClass(SN.C.S.Disabled);
$('#'+SN.C.S.NoticeLat).val(NLat);
$('#'+SN.C.S.NoticeLon).val(NLon);
$('#'+SN.C.S.NoticeLocationNs).val(NLNS);
$('#'+SN.C.S.NoticeLocationId).val(NLID);
$('#'+SN.C.S.NoticeDataGeo).attr('checked', NDG);
} }
}); });
}, },
@ -431,15 +465,228 @@ var SN = { // StatusNet
$('#'+SN.C.S.NoticeDataAttachSelected+' button').click(function(){ $('#'+SN.C.S.NoticeDataAttachSelected+' button').click(function(){
$('#'+SN.C.S.NoticeDataAttachSelected).remove(); $('#'+SN.C.S.NoticeDataAttachSelected).remove();
NDA.val(''); NDA.val('');
return false;
}); });
}); });
}, },
NoticeLocationAttach: function() { NoticeLocationAttach: function() {
if(navigator.geolocation) navigator.geolocation.watchPosition(function(position) { var NLat = $('#'+SN.C.S.NoticeLat).val();
$('#'+SN.C.S.NoticeLat).val(position.coords.latitude); var NLon = $('#'+SN.C.S.NoticeLon).val();
$('#'+SN.C.S.NoticeLon).val(position.coords.longitude); var NLNS = $('#'+SN.C.S.NoticeLocationNs).val();
}); var NLID = $('#'+SN.C.S.NoticeLocationId).val();
var NLN = $('#'+SN.C.S.NoticeGeoName).text();
var NDGe = $('#'+SN.C.S.NoticeDataGeo);
function removeNoticeDataGeo() {
$('label[for='+SN.C.S.NoticeDataGeo+']').removeClass('checked').attr('title', jQuery.trim($('label[for='+SN.C.S.NoticeDataGeo+']').text()));
$('#'+SN.C.S.NoticeDataGeoSelected).hide();
$('#'+SN.C.S.NoticeLat).val('');
$('#'+SN.C.S.NoticeLon).val('');
$('#'+SN.C.S.NoticeLocationNs).val('');
$('#'+SN.C.S.NoticeLocationId).val('');
$('#'+SN.C.S.NoticeDataGeo).attr('checked', false);
$.cookie(SN.C.S.NoticeDataGeoCookie, 'disabled');
}
function getJSONgeocodeURL(geocodeURL, data) {
$.getJSON(geocodeURL, data, function(location) {
var lns, lid;
if (typeof(location.location_ns) != 'undefined') {
$('#'+SN.C.S.NoticeLocationNs).val(location.location_ns);
lns = location.location_ns;
}
if (typeof(location.location_id) != 'undefined') {
$('#'+SN.C.S.NoticeLocationId).val(location.location_id);
lid = location.location_id;
}
if (typeof(location.name) == 'undefined') {
NLN_text = position.coords.latitude + ';' + position.coords.longitude;
}
else {
NLN_text = location.name;
}
$('#'+SN.C.S.NoticeGeoName)
.replaceWith('<a id="notice_data-geo_name"/>');
$('#'+SN.C.S.NoticeGeoName)
.attr('href', location.url)
.text(NLN_text)
.click(function() {
window.open(location.url);
return false;
});
$('#'+SN.C.S.NoticeLat).val(data.lat);
$('#'+SN.C.S.NoticeLon).val(data.lon);
$('#'+SN.C.S.NoticeLocationNs).val(lns);
$('#'+SN.C.S.NoticeLocationId).val(lid);
$('#'+SN.C.S.NoticeDataGeo).attr('checked', true);
var cookieValue = {
'NLat': data.lat,
'NLon': data.lon,
'NLNS': lns,
'NLID': lid,
'NLN': NLN_text,
'NLNU': location.url,
'NDG': true,
'NDGSM': false
};
$.cookie(SN.C.S.NoticeDataGeoCookie, JSON.stringify(cookieValue));
});
}
if (NDGe.length > 0) {
if ($.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
NDGe.attr('checked', false);
}
else {
NDGe.attr('checked', true);
}
var NGW = $('#notice_data-geo_wrap');
var geocodeURL = NGW.attr('title');
NGW.removeAttr('title');
$('label[for='+SN.C.S.NoticeDataGeo+']').attr('title', jQuery.trim($('label[for='+SN.C.S.NoticeDataGeo+']').text()));
NDGe.change(function() {
var NLN = $('#'+SN.C.S.NoticeGeoName);
if (NLN.length > 0) {
NLN.remove();
}
if ($('#'+SN.C.S.NoticeDataGeo).attr('checked') === true || $.cookie(SN.C.S.NoticeDataGeoCookie) === null) {
$('label[for='+SN.C.S.NoticeDataGeo+']').addClass('checked').attr('title', NoticeDataGeoShareDisable_text);
var S = '<div id="'+SN.C.S.NoticeDataGeoSelected+'" class="'+SN.C.S.Success+'"/>';
var NDGS = $('#'+SN.C.S.NoticeDataGeoSelected);
if (NDGS.length > 0) {
NDGS.replaceWith(S);
}
else {
$('#'+SN.C.S.FormNotice).append(S);
}
NDGS = $('#'+SN.C.S.NoticeDataGeoSelected);
NDGS.prepend('<span id="'+SN.C.S.NoticeGeoName+'">Geo</span> <button class="minimize" title="'+NoticeDataGeoInfoMinimize_text+'">&#95;</button> <button class="close" title="'+NoticeDataGeoShareDisable_text+'">&#215;</button>');
var NLN = $('#'+SN.C.S.NoticeGeoName);
NLN.addClass('processing');
$('#'+SN.C.S.NoticeDataGeoSelected+' button.close').click(function(){
removeNoticeDataGeo();
$('#'+SN.C.S.NoticeDataGeoSelected).remove();
$('#'+SN.C.S.NoticeDataText).focus();
return false;
});
$('#'+SN.C.S.NoticeDataGeoSelected+' button.minimize').click(function(){
$('#'+SN.C.S.NoticeDataGeoSelected).hide();
var cookieValue = {
'NLat': $('#'+SN.C.S.NoticeLat).val(),
'NLon': $('#'+SN.C.S.NoticeLat).val(),
'NLNS': $('#'+SN.C.S.NoticeLocationNs).val(),
'NLID': $('#'+SN.C.S.NoticeLocationId).val(),
'NLN': $('#'+SN.C.S.NoticeGeoName).text(),
'NLNU': $('#'+SN.C.S.NoticeGeoName).attr('href'),
'NDG': true,
'NDGSM': true
};
$.cookie(SN.C.S.NoticeDataGeoCookie, JSON.stringify(cookieValue));
$('#'+SN.C.S.NoticeDataText).focus();
return false;
});
if ($.cookie(SN.C.S.NoticeDataGeoCookie) === null || $.cookie(SN.C.S.NoticeDataGeoCookie) == 'disabled') {
if (navigator.geolocation) {
navigator.geolocation.getCurrentPosition(
function(position) {
$('#'+SN.C.S.NoticeLat).val(position.coords.latitude);
$('#'+SN.C.S.NoticeLon).val(position.coords.longitude);
var data = {
'lat': position.coords.latitude,
'lon': position.coords.longitude,
'token': $('#token').val()
};
getJSONgeocodeURL(geocodeURL, data);
},
function(error) {
if (error.PERMISSION_DENIED == 1) {
removeNoticeDataGeo();
}
}
);
}
else {
if (NLat.length > 0 && NLon.length > 0) {
var data = {
'lat': NLat,
'lon': NLon,
'token': $('#token').val()
};
getJSONgeocodeURL(geocodeURL, data);
}
else {
removeNoticeDataGeo();
$('#'+SN.C.S.NoticeDataGeo).remove();
$('label[for='+SN.C.S.NoticeDataGeo+']').remove();
}
}
}
else {
var cookieValue = JSON.parse($.cookie(SN.C.S.NoticeDataGeoCookie));
if (cookieValue.NDGSM === true) {
$('#'+SN.C.S.NoticeDataGeoSelected).hide();
}
$('#'+SN.C.S.NoticeLat).val(cookieValue.NLat);
$('#'+SN.C.S.NoticeLon).val(cookieValue.NLon);
$('#'+SN.C.S.NoticeLocationNs).val(cookieValue.NLNS);
$('#'+SN.C.S.NoticeLocationId).val(cookieValue.NLID);
$('#'+SN.C.S.NoticeDataGeo).attr('checked', cookieValue.NDG);
$('#'+SN.C.S.NoticeGeoName)
.replaceWith('<a id="notice_data-geo_name"/>');
$('#'+SN.C.S.NoticeGeoName)
.attr('href', cookieValue.NLNU)
.text(cookieValue.NLN)
.click(function() {
window.open($(this).attr('href'));
return false;
});
}
}
else {
removeNoticeDataGeo();
}
$('#'+SN.C.S.NoticeDataText).focus();
}).change();
}
}, },
NewDirectMessage: function() { NewDirectMessage: function() {
@ -474,13 +721,14 @@ var SN = { // StatusNet
Init: { Init: {
NoticeForm: function() { NoticeForm: function() {
if ($('body.user_in').length > 0) { if ($('body.user_in').length > 0) {
SN.U.NoticeLocationAttach();
$('.'+SN.C.S.FormNotice).each(function() { $('.'+SN.C.S.FormNotice).each(function() {
SN.U.FormNoticeXHR($(this)); SN.U.FormNoticeXHR($(this));
SN.U.FormNoticeEnhancements($(this)); SN.U.FormNoticeEnhancements($(this));
}); });
SN.U.NoticeDataAttach(); SN.U.NoticeDataAttach();
SN.U.NoticeLocationAttach();
} }
}, },

View File

@ -252,6 +252,8 @@ class Action extends HTMLOutputter // lawsuit
if (Event::handle('StartShowJQueryScripts', array($this))) { if (Event::handle('StartShowJQueryScripts', array($this))) {
$this->script('js/jquery.min.js'); $this->script('js/jquery.min.js');
$this->script('js/jquery.form.js'); $this->script('js/jquery.form.js');
$this->script('js/jquery.cookie.js');
$this->script('js/json2.js');
$this->script('js/jquery.joverlay.min.js'); $this->script('js/jquery.joverlay.min.js');
Event::handle('EndShowJQueryScripts', array($this)); Event::handle('EndShowJQueryScripts', array($this));
} }
@ -735,6 +737,8 @@ class Action extends HTMLOutputter // lawsuit
_('Privacy')); _('Privacy'));
$this->menuItem(common_local_url('doc', array('title' => 'source')), $this->menuItem(common_local_url('doc', array('title' => 'source')),
_('Source')); _('Source'));
$this->menuItem(common_local_url('version'),
_('Version'));
$this->menuItem(common_local_url('doc', array('title' => 'contact')), $this->menuItem(common_local_url('doc', array('title' => 'contact')),
_('Contact')); _('Contact'));
$this->menuItem(common_local_url('doc', array('title' => 'badge')), $this->menuItem(common_local_url('doc', array('title' => 'badge')),

View File

@ -70,7 +70,7 @@ class AdminPanelAction extends Action
if (!common_logged_in()) { if (!common_logged_in()) {
$this->clientError(_('Not logged in.')); $this->clientError(_('Not logged in.'));
return; return false;
} }
$user = common_current_user(); $user = common_current_user();
@ -94,7 +94,18 @@ class AdminPanelAction extends Action
if (!$user->hasRight(Right::CONFIGURESITE)) { if (!$user->hasRight(Right::CONFIGURESITE)) {
$this->clientError(_('You cannot make changes to this site.')); $this->clientError(_('You cannot make changes to this site.'));
return; return false;
}
// This panel must be enabled
$name = $this->trimmed('action');
$name = mb_substr($name, 0, -10);
if (!in_array($name, common_config('admin', 'panels'))) {
$this->clientError(_('Changes to that panel are not allowed.'), 403);
return false;
} }
return true; return true;
@ -296,20 +307,33 @@ class AdminPanelNav extends Widget
if (Event::handle('StartAdminPanelNav', array($this))) { if (Event::handle('StartAdminPanelNav', array($this))) {
$this->out->menuItem(common_local_url('siteadminpanel'), _('Site'), if ($this->canAdmin('site')) {
_('Basic site configuration'), $action_name == 'siteadminpanel', 'nav_site_admin_panel'); $this->out->menuItem(common_local_url('siteadminpanel'), _('Site'),
_('Basic site configuration'), $action_name == 'siteadminpanel', 'nav_site_admin_panel');
}
$this->out->menuItem(common_local_url('designadminpanel'), _('Design'), if ($this->canAdmin('design')) {
_('Design configuration'), $action_name == 'designadminpanel', 'nav_design_admin_panel'); $this->out->menuItem(common_local_url('designadminpanel'), _('Design'),
_('Design configuration'), $action_name == 'designadminpanel', 'nav_design_admin_panel');
}
$this->out->menuItem(common_local_url('useradminpanel'), _('User'), if ($this->canAdmin('user')) {
_('Paths configuration'), $action_name == 'useradminpanel', 'nav_design_admin_panel'); $this->out->menuItem(common_local_url('useradminpanel'), _('User'),
_('Paths configuration'), $action_name == 'useradminpanel', 'nav_design_admin_panel');
}
$this->out->menuItem(common_local_url('pathsadminpanel'), _('Paths'), if ($this->canAdmin('paths')) {
_('Paths configuration'), $action_name == 'pathsadminpanel', 'nav_design_admin_panel'); $this->out->menuItem(common_local_url('pathsadminpanel'), _('Paths'),
_('Paths configuration'), $action_name == 'pathsadminpanel', 'nav_design_admin_panel');
}
Event::handle('EndAdminPanelNav', array($this)); Event::handle('EndAdminPanelNav', array($this));
} }
$this->action->elementEnd('ul'); $this->action->elementEnd('ul');
} }
function canAdmin($name)
{
return in_array($name, common_config('admin', 'panels'));
}
} }

View File

@ -99,6 +99,23 @@ abstract class AuthenticationPlugin extends Plugin
} }
} }
/**
* Internal AutoRegister event handler
* @param nickname
* @param provider_name
* @param user - the newly registered user
*/
function onAutoRegister($nickname, $provider_name, &$user)
{
if($provider_name == $this->provider_name && $this->autoregistration){
$user = $this->autoregister($nickname);
if($user){
User_username::register($user,$nickname,$this->provider_name);
return false;
}
}
}
function onStartCheckPassword($nickname, $password, &$authenticatedUser){ function onStartCheckPassword($nickname, $password, &$authenticatedUser){
//map the nickname to a username //map the nickname to a username
$user_username = new User_username(); $user_username = new User_username();
@ -127,13 +144,13 @@ abstract class AuthenticationPlugin extends Plugin
} }
} }
}else{ }else{
if($this->autoregistration){ $authenticated = $this->checkPassword($nickname, $password);
$authenticated = $this->checkPassword($nickname, $password); if($authenticated){
if($authenticated){ if(! Event::handle('AutoRegister', array($nickname, $this->provider_name, &$authenticatedUser))){
$user = $this->autoregister($nickname); //unlike most Event::handle lines of code, this one has a ! (not)
if($user){ //we want to do this if the event *was* handled - this isn't a "default" implementation
$authenticatedUser = $user; //like most code of this form.
User_username::register($authenticatedUser,$nickname,$this->provider_name); if($authenticatedUser){
return false; return false;
} }
} }
@ -190,18 +207,6 @@ abstract class AuthenticationPlugin extends Plugin
} }
} }
function onAutoload($cls)
{
switch ($cls)
{
case 'User_username':
require_once(INSTALLDIR.'/plugins/Authentication/User_username.php');
return false;
default:
return true;
}
}
function onCheckSchema() { function onCheckSchema() {
$schema = Schema::get(); $schema = Schema::get();
$schema->ensureTable('user_username', $schema->ensureTable('user_username',

View File

@ -66,9 +66,6 @@ abstract class AuthorizationPlugin extends Plugin
} }
//------------Below are the methods that connect StatusNet to the implementing Auth plugin------------\\ //------------Below are the methods that connect StatusNet to the implementing Auth plugin------------\\
function onInitializePlugin(){
}
function onStartSetUser(&$user) { function onStartSetUser(&$user) {
$loginAllowed = $this->loginAllowed($user); $loginAllowed = $this->loginAllowed($user);

182
lib/cache.php Normal file
View File

@ -0,0 +1,182 @@
<?php
/**
* StatusNet, the distributed open-source microblogging tool
*
* Cache interface plus default in-memory cache implementation
*
* 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 Cache
* @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/
*/
/**
* Interface for caching
*
* An abstract interface for caching. Because we originally used the
* Memcache plugin directly, the interface uses a small subset of the
* Memcache interface.
*
* @category Cache
* @package StatusNet
* @author Evan Prodromou <evan@status.net>
* @copyright 2009 StatusNet, Inc.
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
* @link http://status.net/
*/
class Cache
{
var $_items = array();
static $_inst = null;
/**
* Singleton constructor
*
* Use this to get the singleton instance of Cache.
*
* @return Cache cache object
*/
static function instance()
{
if (is_null(self::$_inst)) {
self::$_inst = new Cache();
}
return self::$_inst;
}
/**
* Create a cache key from input text
*
* Builds a cache key from input text. Helps to namespace
* the cache area (if shared with other applications or sites)
* and prevent conflicts.
*
* @param string $extra the real part of the key
*
* @return string full key
*/
static function key($extra)
{
$base_key = common_config('cache', 'base');
if (empty($base_key)) {
$base_key = common_keyize(common_config('site', 'name'));
}
return 'statusnet:' . $base_key . ':' . $extra;
}
/**
* Make a string suitable for use as a key
*
* Useful for turning primary keys of tables into cache keys.
*
* @param string $str string to turn into a key
*
* @return string keyized string
*/
static function keyize($str)
{
$str = strtolower($str);
$str = preg_replace('/\s/', '_', $str);
return $str;
}
/**
* Get a value associated with a key
*
* The value should have been set previously.
*
* @param string $key Lookup key
*
* @return string retrieved value or null if unfound
*/
function get($key)
{
$value = false;
if (Event::handle('StartCacheGet', array(&$key, &$value))) {
if (array_key_exists($key, $this->_items)) {
$value = unserialize($this->_items[$key]);
}
Event::handle('EndCacheGet', array($key, &$value));
}
return $value;
}
/**
* Set the value associated with a key
*
* @param string $key The key to use for lookups
* @param string $value The value to store
* @param integer $flag Flags to use, mostly ignored
* @param integer $expiry Expiry value, mostly ignored
*
* @return boolean success flag
*/
function set($key, $value, $flag=null, $expiry=null)
{
$success = false;
if (Event::handle('StartCacheSet', array(&$key, &$value, &$flag,
&$expiry, &$success))) {
$this->_items[$key] = serialize($value);
$success = true;
Event::handle('EndCacheSet', array($key, $value, $flag,
$expiry));
}
return $success;
}
/**
* Delete the value associated with a key
*
* @param string $key Key to delete
*
* @return boolean success flag
*/
function delete($key)
{
$success = false;
if (Event::handle('StartCacheDelete', array(&$key, &$success))) {
if (array_key_exists($key, $this->_items)) {
unset($this->_items[$key]);
}
$success = true;
Event::handle('EndCacheDelete', array($key));
}
return $success;
}
}

View File

@ -74,6 +74,7 @@ class ColumnDef
* @param string $key type of key * @param string $key type of key
* @param value $default default value * @param value $default default value
* @param value $extra unused * @param value $extra unused
* @param boolean $auto_increment
*/ */
function __construct($name=null, $type=null, $size=null, function __construct($name=null, $type=null, $size=null,

View File

@ -210,6 +210,18 @@ if ($_db_name != 'statusnet' && !array_key_exists('ini_'.$_db_name, $config['db'
$config['db']['ini_'.$_db_name] = INSTALLDIR.'/classes/statusnet.ini'; $config['db']['ini_'.$_db_name] = INSTALLDIR.'/classes/statusnet.ini';
} }
// Backwards compatibility
if (array_key_exists('memcached', $config)) {
if ($config['memcached']['enabled']) {
addPlugin('Memcache', array('servers' => $config['memcached']['server']));
}
if (!empty($config['memcached']['base'])) {
$config['cache']['base'] = $config['memcached']['base'];
}
}
function __autoload($cls) function __autoload($cls)
{ {
if (file_exists(INSTALLDIR.'/classes/' . $cls . '.php')) { if (file_exists(INSTALLDIR.'/classes/' . $cls . '.php')) {
@ -226,6 +238,27 @@ function __autoload($cls)
} }
} }
// Load default plugins
foreach ($config['plugins']['default'] as $name => $params) {
if (is_null($params)) {
addPlugin($name);
} else if (is_array($params)) {
if (count($params) == 0) {
addPlugin($name);
} else {
$keys = array_keys($params);
if (is_string($keys[0])) {
addPlugin($name, $params);
} else {
foreach ($params as $paramset) {
addPlugin($name, $paramset);
}
}
}
}
}
// XXX: how many of these could be auto-loaded on use? // XXX: how many of these could be auto-loaded on use?
// XXX: note that these files should not use config options // XXX: note that these files should not use config options
// at compile time since DB config options are not yet loaded. // at compile time since DB config options are not yet loaded.

View File

@ -54,6 +54,7 @@ $default =
'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, 'indent' => true,
'use_x_sendfile' => false,
), ),
'db' => 'db' =>
array('database' => 'YOU HAVE TO SET THIS IN config.php', array('database' => 'YOU HAVE TO SET THIS IN config.php',
@ -147,11 +148,8 @@ $default =
array('enabled' => true, array('enabled' => true,
'consumer_key' => null, 'consumer_key' => null,
'consumer_secret' => null), 'consumer_secret' => null),
'memcached' => 'cache' =>
array('enabled' => false, array('base' => null),
'server' => 'localhost',
'base' => null,
'port' => 11211),
'ping' => 'ping' =>
array('notify' => array()), array('notify' => array()),
'inboxes' => 'inboxes' =>
@ -226,9 +224,29 @@ $default =
'message' => 'message' =>
array('contentlimit' => null), array('contentlimit' => null),
'location' => 'location' =>
array('namespace' => 1), // 1 = geonames, 2 = Yahoo Where on Earth array('share' => 'user', // whether to share location; 'always', 'user', 'never'
'sharedefault' => true),
'omb' => 'omb' =>
array('timeout' => 5), // HTTP request timeout in seconds when contacting remote hosts for OMB updates array('timeout' => 5), // HTTP request timeout in seconds when contacting remote hosts for OMB updates
'logincommand' => 'logincommand' =>
array('disabled' => true), array('disabled' => true),
'plugins' =>
array('default' => array('LilUrl' => array('shortenerName'=>'ur1.ca',
'freeService' => true,
'serviceUrl'=>'http://ur1.ca/'),
'PtitUrl' => array('shortenerName' => 'ptiturl.com',
'serviceUrl' => 'http://ptiturl.com/?creer=oui&action=Reduire&url=%1$s'),
'SimpleUrl' => array(array('shortenerName' => 'is.gd', 'serviceUrl' => 'http://is.gd/api.php?longurl=%1$s'),
array('shortenerName' => 'snipr.com', 'serviceUrl' => 'http://snipr.com/site/snip?r=simple&link=%1$s'),
array('shortenerName' => 'metamark.net', 'serviceUrl' => 'http://metamark.net/api/rest/simple?long_url=%1$s'),
array('shortenerName' => 'tinyurl.com', 'serviceUrl' => 'http://tinyurl.com/api-create.php?url=%1$s')),
'TightUrl' => array('shortenerName' => '2tu.us', 'freeService' => true,'serviceUrl'=>'http://2tu.us/?save=y&url=%1$s'),
'Geonames' => null,
'Mapstraction' => null,
'Linkback' => null,
'WikiHashtags' => null,
'OpenID' => null),
),
'admin' =>
array('panels' => array('design', 'site', 'user', 'paths')),
); );

View File

@ -58,11 +58,7 @@ class GroupTagCloudSection extends TagCloudSection
function getTags() function getTags()
{ {
if (common_config('db', 'type') == 'pgsql') { $weightexpr = common_sql_weight('notice_tag.created', common_config('tag', 'dropoff'));
$weightexpr='sum(exp(-extract(epoch from (now() - notice_tag.created)) / %s))';
} else {
$weightexpr='sum(exp(-(now() - notice_tag.created) / %s))';
}
$names = $this->group->getAliases(); $names = $this->group->getAliases();
@ -99,7 +95,6 @@ class GroupTagCloudSection extends TagCloudSection
$tag = Memcached_DataObject::cachedQuery('Notice_tag', $tag = Memcached_DataObject::cachedQuery('Notice_tag',
sprintf($qry, sprintf($qry,
common_config('tag', 'dropoff'),
$this->group->id, $this->group->id,
$namestring), $namestring),
3600); 3600);

View File

@ -352,7 +352,7 @@ class HTMLOutputter extends XMLOutputter
{ {
if(Event::handle('StartScriptElement', array($this,&$src,&$type))) { if(Event::handle('StartScriptElement', array($this,&$src,&$type))) {
$url = parse_url($src); $url = parse_url($src);
if( empty($url->scheme) && empty($url->host) && empty($url->query) && empty($url->fragment)) 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;
} }

View File

@ -440,7 +440,7 @@ function jabber_public_notice($notice)
// XXX: should we send out non-local messages if public,localonly // XXX: should we send out non-local messages if public,localonly
// = false? I think not // = false? I think not
if ($public && $notice->is_local) { if ($public && $notice->is_local == Notice::LOCAL_PUBLIC) {
$profile = Profile::staticGet($notice->profile_id); $profile = Profile::staticGet($notice->profile_id);
if (!$profile) { if (!$profile) {

View File

@ -105,8 +105,14 @@ class JSONSearchResultsList
break; break;
} }
$item = new ResultItem($this->notice); $profile = $this->notice->getProfile();
array_push($this->results, $item);
// Don't show notices from deleted users
if (!empty($profile)) {
$item = new ResultItem($this->notice);
array_push($this->results, $item);
}
} }
$time_end = microtime(true); $time_end = microtime(true);

275
lib/mailhandler.php Normal file
View File

@ -0,0 +1,275 @@
<?php
/*
* StatusNet - the distributed open-source microblogging tool
* Copyright (C) 2008, 2009, StatusNet, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
require_once(INSTALLDIR . '/lib/mail.php');
require_once(INSTALLDIR . '/lib/mediafile.php');
require_once('Mail/mimeDecode.php');
# FIXME: we use both Mail_mimeDecode and mailparse
# Need to move everything to mailparse
class MailHandler
{
function __construct()
{
}
function handle_message($rawmessage)
{
list($from, $to, $msg, $attachments) = $this->parse_message($rawmessage);
if (!$from || !$to || !$msg) {
$this->error(null, _('Could not parse message.'));
}
common_log(LOG_INFO, "Mail from $from to $to with ".count($attachments) .' attachment(s): ' .substr($msg, 0, 20));
$user = $this->user_from_header($from);
if (!$user) {
$this->error($from, _('Not a registered user.'));
return false;
}
if (!$this->user_match_to($user, $to)) {
$this->error($from, _('Sorry, that is not your incoming email address.'));
return false;
}
if (!$user->emailpost) {
$this->error($from, _('Sorry, no incoming email allowed.'));
return false;
}
$response = $this->handle_command($user, $from, $msg);
if ($response) {
return true;
}
$msg = $this->cleanup_msg($msg);
$msg = common_shorten_links($msg);
if (Notice::contentTooLong($msg)) {
$this->error($from, sprintf(_('That\'s too long. '.
'Max notice size is %d chars.'),
Notice::maxContent()));
}
$mediafiles = array();
foreach($attachments as $attachment){
$mf = null;
try {
$mf = MediaFile::fromFileHandle($attachment, $user);
} catch(ClientException $ce) {
$this->error($from, $ce->getMessage());
}
$msg .= ' ' . $mf->shortUrl();
array_push($mediafiles, $mf);
fclose($attachment);
}
$err = $this->add_notice($user, $msg, $mediafiles);
if (is_string($err)) {
$this->error($from, $err);
return false;
} else {
return true;
}
}
function error($from, $msg)
{
file_put_contents("php://stderr", $msg . "\n");
exit(1);
}
function user_from_header($from_hdr)
{
$froms = mailparse_rfc822_parse_addresses($from_hdr);
if (!$froms) {
return null;
}
$from = $froms[0];
$addr = common_canonical_email($from['address']);
$user = User::staticGet('email', $addr);
if (!$user) {
$user = User::staticGet('smsemail', $addr);
}
return $user;
}
function user_match_to($user, $to_hdr)
{
$incoming = $user->incomingemail;
$tos = mailparse_rfc822_parse_addresses($to_hdr);
foreach ($tos as $to) {
if (strcasecmp($incoming, $to['address']) == 0) {
return true;
}
}
return false;
}
function handle_command($user, $from, $msg)
{
$inter = new CommandInterpreter();
$cmd = $inter->handle_command($user, $msg);
if ($cmd) {
$cmd->execute(new MailChannel($from));
return true;
}
return false;
}
function respond($from, $to, $response)
{
$headers['From'] = $to;
$headers['To'] = $from;
$headers['Subject'] = "Command complete";
return mail_send(array($from), $headers, $response);
}
function log($level, $msg)
{
common_log($level, 'MailDaemon: '.$msg);
}
function add_notice($user, $msg, $mediafiles)
{
try {
$notice = Notice::saveNew($user->id, $msg, 'mail');
} catch (Exception $e) {
$this->log(LOG_ERR, $e->getMessage());
return $e->getMessage();
}
foreach($mediafiles as $mf){
$mf->attachToNotice($notice);
}
common_broadcast_notice($notice);
$this->log(LOG_INFO,
'Added notice ' . $notice->id . ' from user ' . $user->nickname);
return true;
}
function parse_message($contents)
{
$parsed = Mail_mimeDecode::decode(array('input' => $contents,
'include_bodies' => true,
'decode_headers' => true,
'decode_bodies' => true));
if (!$parsed) {
return null;
}
$from = $parsed->headers['from'];
$to = $parsed->headers['to'];
$type = $parsed->ctype_primary . '/' . $parsed->ctype_secondary;
$attachments = array();
$this->extract_part($parsed,$msg,$attachments);
return array($from, $to, $msg, $attachments);
}
function extract_part($parsed,&$msg,&$attachments){
if ($parsed->ctype_primary == 'multipart') {
if($parsed->ctype_secondary == 'alternative'){
$altmsg = $this->extract_msg_from_multipart_alternative_part($parsed);
if(!empty($altmsg)) $msg = $altmsg;
}else{
foreach($parsed->parts as $part){
$this->extract_part($part,$msg,$attachments);
}
}
} else if ($parsed->ctype_primary == 'text'
&& $parsed->ctype_secondary=='plain') {
$msg = $parsed->body;
if(strtolower($parsed->ctype_parameters['charset']) != "utf-8"){
$msg = utf8_encode($msg);
}
}else if(!empty($parsed->body)){
if(common_config('attachments', 'uploads')){
//only save attachments if uploads are enabled
$attachment = tmpfile();
fwrite($attachment, $parsed->body);
$attachments[] = $attachment;
}
}
}
function extract_msg_from_multipart_alternative_part($parsed){
foreach ($parsed->parts as $part) {
$this->extract_part($part,$msg,$attachments);
}
//we don't want any attachments that are a result of this parsing
return $msg;
}
function unsupported_type($type)
{
$this->error(null, "Unsupported message type: " . $type);
}
function cleanup_msg($msg)
{
$lines = explode("\n", $msg);
$output = '';
foreach ($lines as $line) {
// skip quotes
if (preg_match('/^\s*>.*$/', $line)) {
continue;
}
// skip start of quote
if (preg_match('/^\s*On.*wrote:\s*$/', $line)) {
continue;
}
// probably interesting to someone, not us
if (preg_match('/^\s*Sent via/', $line)) {
continue;
}
if (preg_match('/^\s*Sent from my/', $line)) {
continue;
}
// skip everything after a sig
if (preg_match('/^\s*--+\s*$/', $line) ||
preg_match('/^\s*__+\s*$/', $line))
{
break;
}
// skip everything after Outlook quote
if (preg_match('/^\s*-+\s*Original Message\s*-+\s*$/', $line)) {
break;
}
// skip everything after weird forward
if (preg_match('/^\s*Begin\s+forward/', $line)) {
break;
}
$output .= ' ' . $line;
}
preg_replace('/\s+/', ' ', $output);
return trim($output);
}
}

View File

@ -110,6 +110,8 @@ class NoticeForm extends Form
$this->user = common_current_user(); $this->user = common_current_user();
} }
$this->profile = $this->user->getProfile();
if (common_config('attachments', 'uploads')) { if (common_config('attachments', 'uploads')) {
$this->enctype = 'multipart/form-data'; $this->enctype = 'multipart/form-data';
} }
@ -198,12 +200,22 @@ class NoticeForm extends Form
$this->out->hidden('notice_return-to', $this->action, 'returnto'); $this->out->hidden('notice_return-to', $this->action, 'returnto');
} }
$this->out->hidden('notice_in-reply-to', $this->inreplyto, 'inreplyto'); $this->out->hidden('notice_in-reply-to', $this->inreplyto, 'inreplyto');
$this->out->hidden('notice_data-lat', empty($this->lat) ? null : $this->lat, 'lat');
$this->out->hidden('notice_data-lon', empty($this->lon) ? null : $this->lon, 'lon');
$this->out->hidden('notice_data-location_id', empty($this->location_id) ? null : $this->location_id, 'location_id');
$this->out->hidden('notice_data-location_ns', empty($this->location_ns) ? null : $this->location_ns, 'location_ns');
Event::handle('StartShowNoticeFormData', array($this)); if ($this->user->shareLocation()) {
$this->out->hidden('notice_data-lat', empty($this->lat) ? (empty($this->profile->lat) ? null : $this->profile->lat) : $this->lat, 'lat');
$this->out->hidden('notice_data-lon', empty($this->lon) ? (empty($this->profile->lon) ? null : $this->profile->lon) : $this->lon, 'lon');
$this->out->hidden('notice_data-location_id', empty($this->location_id) ? (empty($this->profile->location_id) ? null : $this->profile->location_id) : $this->location_id, 'location_id');
$this->out->hidden('notice_data-location_ns', empty($this->location_ns) ? (empty($this->profile->location_ns) ? null : $this->profile->location_ns) : $this->location_ns, 'location_ns');
$this->out->elementStart('div', array('id' => 'notice_data-geo_wrap',
'title' => common_local_url('geocode')));
$this->out->checkbox('notice_data-geo', _('Share my location'), true);
$this->out->elementEnd('div');
$this->out->inlineScript(' var NoticeDataGeoShareDisable_text = "'._('Do not share my location.').'";'.
' var NoticeDataGeoInfoMinimize_text = "'._('Hide this info').'";');
}
Event::handle('EndShowNoticeFormData', array($this));
} }
} }

View File

@ -191,6 +191,14 @@ class NoticeListItem extends Widget
function show() function show()
{ {
if (empty($this->notice)) {
common_log(LOG_WARNING, "Trying to show missing notice; skipping.");
return;
} else if (empty($this->profile)) {
common_log(LOG_WARNING, "Trying to show missing profile (" . $this->notice->profile_id . "); skipping.");
return;
}
$this->showStart(); $this->showStart();
if (Event::handle('StartShowNoticeItem', array($this))) { if (Event::handle('StartShowNoticeItem', array($this))) {
$this->showNotice(); $this->showNotice();
@ -371,7 +379,7 @@ class NoticeListItem extends Widget
function showNoticeLink() function showNoticeLink()
{ {
if($this->notice->is_local){ if($this->notice->is_local == Notice::LOCAL_PUBLIC || $this->notice->is_local == Notice::LOCAL_NONPUBLIC){
$noticeurl = common_local_url('shownotice', $noticeurl = common_local_url('shownotice',
array('notice' => $this->notice->id)); array('notice' => $this->notice->id));
}else{ }else{

View File

@ -58,13 +58,9 @@ class PersonalTagCloudSection extends TagCloudSection
function getTags() function getTags()
{ {
if (common_config('db', 'type') == 'pgsql') { $weightexpr = common_sql_weight('notice_tag.created', common_config('tag', 'dropoff'));
$weightexpr='sum(exp(-extract(epoch from (now() - notice_tag.created)) / %s))';
} else {
$weightexpr='sum(exp(-(now() - notice_tag.created) / %s))';
}
$qry = 'SELECT notice_tag.tag, '. $qry = 'SELECT notice_tag.tag, '.
$weightexpr . ' as weight ' . $weightexpr . ' as weight ' .
'FROM notice_tag JOIN notice ' . 'FROM notice_tag JOIN notice ' .
'ON notice_tag.notice_id = notice.id ' . 'ON notice_tag.notice_id = notice.id ' .
@ -83,7 +79,6 @@ class PersonalTagCloudSection extends TagCloudSection
$tag = Memcached_DataObject::cachedQuery('Notice_tag', $tag = Memcached_DataObject::cachedQuery('Notice_tag',
sprintf($qry, sprintf($qry,
common_config('tag', 'dropoff'),
$this->user->id), $this->user->id),
3600); 3600);
return $tag; return $tag;

View File

@ -21,7 +21,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
function ping_broadcast_notice($notice) { function ping_broadcast_notice($notice) {
if (!$notice->is_local) { if ($notice->is_local != Notice::LOCAL_PUBLIC && $notice->is_local != Notice::LOCAL_NONPUBLIC) {
return true; return true;
} }

View File

@ -104,5 +104,16 @@ class Plugin
{ {
$this->log(LOG_DEBUG, $msg); $this->log(LOG_DEBUG, $msg);
} }
function onPluginVersion(&$versions)
{
$cls = get_class($this);
$name = mb_substr($cls, 0, -6);
$versions[] = array('name' => $name,
'version' => _('Unknown'));
return true;
}
} }

View File

@ -48,17 +48,17 @@ class PopularNoticeSection extends NoticeSection
{ {
function getNotices() function getNotices()
{ {
// @fixme there should be a common func for this
if (common_config('db', 'type') == 'pgsql') { if (common_config('db', 'type') == 'pgsql') {
$weightexpr='sum(exp(-extract(epoch from (now() - fave.modified)) / %s))';
if (!empty($this->out->tag)) { if (!empty($this->out->tag)) {
$tag = pg_escape_string($this->out->tag); $tag = pg_escape_string($this->out->tag);
} }
} else { } else {
$weightexpr='sum(exp(-(now() - fave.modified) / %s))';
if (!empty($this->out->tag)) { if (!empty($this->out->tag)) {
$tag = mysql_escape_string($this->out->tag); $tag = mysql_escape_string($this->out->tag);
} }
} }
$weightexpr = common_sql_weight('fave.modified', common_config('popular', 'dropoff'));
$qry = "SELECT notice.*, $weightexpr as weight "; $qry = "SELECT notice.*, $weightexpr as weight ";
if(isset($tag)) { if(isset($tag)) {
$qry .= 'FROM notice_tag, notice JOIN fave ON notice.id = fave.notice_id ' . $qry .= 'FROM notice_tag, notice JOIN fave ON notice.id = fave.notice_id ' .
@ -78,7 +78,7 @@ class PopularNoticeSection extends NoticeSection
$qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset; $qry .= ' LIMIT ' . $limit . ' OFFSET ' . $offset;
$notice = Memcached_DataObject::cachedQuery('Notice', $notice = Memcached_DataObject::cachedQuery('Notice',
sprintf($qry, common_config('popular', 'dropoff')), $qry,
1200); 1200);
return $notice; return $notice;
} }

View File

@ -100,7 +100,10 @@ class Router
'sandbox', 'unsandbox', 'sandbox', 'unsandbox',
'silence', 'unsilence', 'silence', 'unsilence',
'repeat', 'repeat',
'deleteuser'); 'deleteuser',
'geocode',
'version',
);
foreach ($main as $a) { foreach ($main as $a) {
$m->connect('main/'.$a, array('action' => $a)); $m->connect('main/'.$a, array('action' => $a));

View File

@ -524,6 +524,14 @@ class Schema
$sql .= ($cd->nullable) ? "null " : "not null "; $sql .= ($cd->nullable) ? "null " : "not null ";
} }
if (!empty($cd->auto_increment)) {
$sql .= " auto_increment ";
}
if (!empty($cd->extra)) {
$sql .= "{$cd->extra} ";
}
return $sql; return $sql;
} }
} }

View File

@ -908,6 +908,26 @@ function common_sql_date($datetime)
return strftime('%Y-%m-%d %H:%M:%S', $datetime); return strftime('%Y-%m-%d %H:%M:%S', $datetime);
} }
/**
* Return an SQL fragment to calculate an age-based weight from a given
* timestamp or datetime column.
*
* @param string $column name of field we're comparing against current time
* @param integer $dropoff divisor for age in seconds before exponentiation
* @return string SQL fragment
*/
function common_sql_weight($column, $dropoff)
{
if (common_config('db', 'type') == 'pgsql') {
// PostgreSQL doesn't support timestampdiff function.
// @fixme will this use the right time zone?
// @fixme does this handle cross-year subtraction correctly?
return "sum(exp(-extract(epoch from (now() - $column)) / $dropoff))";
} else {
return "sum(exp(timestampdiff(second, utc_timestamp(), $column) / $dropoff))";
}
}
function common_redirect($url, $code=307) function common_redirect($url, $code=307)
{ {
static $status = array(301 => "Moved Permanently", static $status = array(301 => "Moved Permanently",
@ -1384,41 +1404,17 @@ function common_session_token()
function common_cache_key($extra) function common_cache_key($extra)
{ {
$base_key = common_config('memcached', 'base'); return Cache::key($extra);
if (empty($base_key)) {
$base_key = common_keyize(common_config('site', 'name'));
}
return 'statusnet:' . $base_key . ':' . $extra;
} }
function common_keyize($str) function common_keyize($str)
{ {
$str = strtolower($str); return Cache::keyize($str);
$str = preg_replace('/\s/', '_', $str);
return $str;
} }
function common_memcache() function common_memcache()
{ {
static $cache = null; return Cache::instance();
if (!common_config('memcached', 'enabled')) {
return null;
} else {
if (!$cache) {
$cache = new Memcache();
$servers = common_config('memcached', 'server');
if (is_array($servers)) {
foreach($servers as $server) {
$cache->addServer($server);
}
} else {
$cache->addServer($servers);
}
}
return $cache;
}
} }
function common_license_terms($uri) function common_license_terms($uri)

View File

@ -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-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:42:09+0000\n" "PO-Revision-Date: 2010-01-05 22:10:28+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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\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"
@ -121,9 +121,8 @@ msgstr ""
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "لم يوجد رمز التأكيد." msgstr "لم يتم العثور على وسيلة API."
#: actions/apiaccountupdatedeliverydevice.php:85 #: actions/apiaccountupdatedeliverydevice.php:85
#: actions/apiaccountupdateprofile.php:89 #: actions/apiaccountupdateprofile.php:89
@ -159,9 +158,8 @@ msgid "User has no profile."
msgstr "ليس للمستخدم ملف شخصي." msgstr "ليس للمستخدم ملف شخصي."
#: actions/apiaccountupdateprofile.php:147 #: actions/apiaccountupdateprofile.php:147
#, fuzzy
msgid "Could not save profile." msgid "Could not save profile."
msgstr "تعذّر حفظ الملف الشخصي." msgstr "لم يمكن حفظ الملف."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 #: actions/apiaccountupdateprofileimage.php:97
@ -190,11 +188,11 @@ msgstr "تعذّر تحديث تصميمك."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "لا يمكنك منع نفسك!" msgstr "لا يمكنك منع نفسك!"
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "فشل منع المستخدم." msgstr "فشل منع المستخدم."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "فشل إلغاء منع المستخدم." msgstr "فشل إلغاء منع المستخدم."
@ -306,31 +304,31 @@ msgid "Could not find target user."
msgstr "تعذّر إيجاد المستخدم الهدف." msgstr "تعذّر إيجاد المستخدم الهدف."
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 ""
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "" msgstr ""
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "ليس اسمًا مستعارًا صحيحًا." msgstr "ليس اسمًا مستعارًا صحيحًا."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "الصفحة الرئيسية ليست عنونًا صالحًا." msgstr "الصفحة الرئيسية ليست عنونًا صالحًا."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)"
@ -341,7 +339,7 @@ msgid "Description is too long (max %d chars)."
msgstr "" msgstr ""
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "" msgstr ""
@ -456,7 +454,7 @@ msgstr ""
msgid "Not found" msgid "Not found"
msgstr "لم يوجد" msgstr "لم يوجد"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -585,7 +583,7 @@ msgid "Preview"
msgstr "عاين" msgstr "عاين"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "احذف" msgstr "احذف"
@ -598,13 +596,13 @@ msgid "Crop"
msgstr "" msgstr ""
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -674,7 +672,7 @@ msgstr "نعم"
msgid "Block this user" msgid "Block this user"
msgstr "امنع هذا المستخدم" msgstr "امنع هذا المستخدم"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "فشل حفظ معلومات المنع." msgstr "فشل حفظ معلومات المنع."
@ -746,7 +744,7 @@ msgstr ""
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "تعذّر تحديث المستخدم." msgstr "تعذّر تحديث المستخدم."
@ -806,7 +804,7 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "لا تحذف هذا الإشعار" msgstr "لا تحذف هذا الإشعار"
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "احذف هذا الإشعار" msgstr "احذف هذا الإشعار"
@ -940,7 +938,7 @@ msgstr "ارجع إلى المبدئي"
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1422,7 +1420,7 @@ msgstr ""
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "قائمة بمستخدمي هذه المجموعة." msgstr "قائمة بمستخدمي هذه المجموعة."
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "إداري" msgstr "إداري"
@ -1509,7 +1507,7 @@ msgstr ""
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "المستخدم ليس ممنوعًا من المجموعة." msgstr "المستخدم ليس ممنوعًا من المجموعة."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "خطأ أثناء منع الحجب." msgstr "خطأ أثناء منع الحجب."
@ -1678,7 +1676,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "أرسل" msgstr "أرسل"
@ -1774,7 +1772,7 @@ msgstr "اسم المستخدم أو كلمة السر غير صحيحان."
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "خطأ أثناء ضبط المستخدم. لست مُصرحًا على الأرجح." msgstr "خطأ أثناء ضبط المستخدم. لست مُصرحًا على الأرجح."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "لُج" msgstr "لُج"
@ -1881,7 +1879,7 @@ msgstr "أُرسلت الرسالة"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "" msgstr ""
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "خطأ أجاكس" msgstr "خطأ أجاكس"
@ -1889,7 +1887,7 @@ msgstr "خطأ أجاكس"
msgid "New notice" msgid "New notice"
msgstr "إشعار جديد" msgstr "إشعار جديد"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "أُرسل الإشعار" msgstr "أُرسل الإشعار"
@ -2306,69 +2304,77 @@ msgstr "الموقع"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "" msgstr ""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "الوسوم" msgstr "الوسوم"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "اللغة" msgstr "اللغة"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "اللغة المفضلة" msgstr "اللغة المفضلة"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "المنطقة الزمنية" msgstr "المنطقة الزمنية"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "ما المنطقة الزمنية التي تتواجد فيها عادة؟" msgstr "ما المنطقة الزمنية التي تتواجد فيها عادة؟"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, php-format #, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "" msgstr ""
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "لم تُختر المنطقة الزمنية." msgstr "لم تُختر المنطقة الزمنية."
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "" msgstr ""
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "وسم غير صالح: \"%s\"" msgstr "وسم غير صالح: \"%s\""
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
msgid "Couldn't save location prefs."
msgstr "لم يمكن حفظ تفضيلات الموقع."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "تعذّر حفظ الملف الشخصي." msgstr "تعذّر حفظ الملف الشخصي."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "تعذّر حفظ الوسوم." msgstr "تعذّر حفظ الوسوم."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "حُفظت الإعدادات." msgstr "حُفظت الإعدادات."
@ -2467,7 +2473,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "سحابة الوسوم" msgstr "سحابة الوسوم"
@ -2603,7 +2609,7 @@ msgstr "عذرا، رمز دعوة غير صالح."
msgid "Registration successful" msgid "Registration successful"
msgstr "نجح التسجيل" msgstr "نجح التسجيل"
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "سجّل" msgstr "سجّل"
@ -2767,7 +2773,7 @@ msgstr "لا يمكنك تكرار ملاحظتك الشخصية."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "أنت كررت هذه الملاحظة بالفعل." msgstr "أنت كررت هذه الملاحظة بالفعل."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
msgid "Repeated" msgid "Repeated"
msgstr "مكرر" msgstr "مكرر"
@ -3509,7 +3515,7 @@ msgstr "صورة"
#: actions/tagother.php:141 #: actions/tagother.php:141
msgid "Tag user" msgid "Tag user"
msgstr "" msgstr "اوسم المستخدم"
#: actions/tagother.php:151 #: actions/tagother.php:151
msgid "" msgid ""
@ -3841,16 +3847,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "مشكلة أثناء حفظ الإشعار." msgstr "مشكلة أثناء حفظ الإشعار."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "" msgstr ""
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "آر تي @%1$s %2$s" msgstr "آر تي @%1$s %2$s"
@ -3905,128 +3911,128 @@ msgstr "%s - %s"
msgid "Untitled page" msgid "Untitled page"
msgstr "صفحة غير مُعنونة" msgstr "صفحة غير مُعنونة"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "" msgstr ""
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "الرئيسية" msgstr "الرئيسية"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "الملف الشخصي ومسار الأصدقاء الزمني" msgstr "الملف الشخصي ومسار الأصدقاء الزمني"
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "الحساب" msgstr "الحساب"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "" msgstr ""
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "اتصل" msgstr "اتصل"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect to services" msgid "Connect to services"
msgstr "" msgstr ""
#: lib/action.php:440 #: lib/action.php:441
msgid "Change site configuration" msgid "Change site configuration"
msgstr "غيّر ضبط الموقع" msgstr "غيّر ضبط الموقع"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "ادعُ" msgstr "ادعُ"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "" msgstr ""
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "اخرج" msgstr "اخرج"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "اخرج من الموقع" msgstr "اخرج من الموقع"
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "أنشئ حسابًا" msgstr "أنشئ حسابًا"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "لُج إلى الموقع" msgstr "لُج إلى الموقع"
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "مساعدة" msgstr "مساعدة"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "ساعدني!" msgstr "ساعدني!"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "ابحث" msgstr "ابحث"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "ابحث عن أشخاص أو نص" msgstr "ابحث عن أشخاص أو نص"
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "إشعار الموقع" msgstr "إشعار الموقع"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "المشاهدات المحلية" msgstr "المشاهدات المحلية"
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "إشعار الصفحة" msgstr "إشعار الصفحة"
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "" msgstr ""
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "عن" msgstr "عن"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "الأسئلة المكررة" msgstr "الأسئلة المكررة"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "الشروط" msgstr "الشروط"
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "خصوصية" msgstr "خصوصية"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "المصدر" msgstr "المصدر"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "اتصل" msgstr "اتصل"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "" msgstr ""
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "" msgstr ""
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4035,12 +4041,12 @@ msgstr ""
"**%%site.name%%** خدمة تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site." "**%%site.name%%** خدمة تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site."
"broughtbyurl%%). " "broughtbyurl%%). "
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "" msgstr ""
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4051,31 +4057,31 @@ msgstr ""
"المتوفر تحت [رخصة غنو أفيرو العمومية](http://www.fsf.org/licensing/licenses/" "المتوفر تحت [رخصة غنو أفيرو العمومية](http://www.fsf.org/licensing/licenses/"
"agpl-3.0.html)." "agpl-3.0.html)."
#: lib/action.php:790 #: lib/action.php:791
msgid "Site content license" msgid "Site content license"
msgstr "رخصة محتوى الموقع" msgstr "رخصة محتوى الموقع"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "الرخصة." msgstr "الرخصة."
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "بعد" msgstr "بعد"
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "قبل" msgstr "قبل"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -4127,6 +4133,16 @@ msgstr ""
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "وسوم هذا المرفق" msgstr "وسوم هذا المرفق"
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "تغيير كلمة السر"
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "تغيير كلمة السر"
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "نتائج الأمر" msgstr "نتائج الأمر"
@ -4221,7 +4237,7 @@ msgstr ""
#: lib/command.php:427 #: lib/command.php:427
msgid "Already repeated that notice" msgid "Already repeated that notice"
msgstr "كرر بالفعل هذه الإشعار" msgstr "كرر بالفعل هذا الإشعار"
#: lib/command.php:435 #: lib/command.php:435
#, php-format #, php-format
@ -4589,11 +4605,11 @@ msgstr "نوع ملف غير معروف"
#: lib/imagefile.php:217 #: lib/imagefile.php:217
msgid "MB" msgid "MB"
msgstr "" msgstr "ميجابايت"
#: lib/imagefile.php:219 #: lib/imagefile.php:219
msgid "kB" msgid "kB"
msgstr "" msgstr "كيلوبايت"
#: lib/jabber.php:191 #: lib/jabber.php:191
#, php-format #, php-format
@ -4802,7 +4818,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
msgid "from" msgid "from"
msgstr "من" msgstr "من"
@ -4866,69 +4882,73 @@ msgstr "أرسل إشعارًا مباشرًا"
msgid "To" msgid "To"
msgstr "إلى" msgstr "إلى"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "المحارف المتوفرة" msgstr "المحارف المتوفرة"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "أرسل إشعارًا" msgstr "أرسل إشعارًا"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "ما الأخبار يا %s؟" msgstr "ما الأخبار يا %s؟"
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "أرفق" msgstr "أرفق"
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "أرفق ملفًا" msgstr "أرفق ملفًا"
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "N" msgid "N"
msgstr "ش" msgstr "ش"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "ج" msgstr "ج"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "ر" msgstr "ر"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "غ" msgstr "غ"
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "في" msgstr "في"
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "في السياق" msgstr "في السياق"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
msgid "Repeated by" msgid "Repeated by"
msgstr "مكرر بواسطة" msgstr "مكرر بواسطة"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "رُد على هذا الإشعار" msgstr "رُد على هذا الإشعار"
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "رُد" msgstr "رُد"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
msgid "Notice repeated" msgid "Notice repeated"
msgstr "الإشعار مكرر" msgstr "الإشعار مكرر"
@ -5058,9 +5078,8 @@ msgid "Popular"
msgstr "مشهورة" msgstr "مشهورة"
#: lib/repeatform.php:107 #: lib/repeatform.php:107
#, fuzzy
msgid "Repeat this notice?" msgid "Repeat this notice?"
msgstr "كرر هذا الإشعار" msgstr "كرر هذا الإشعار؟"
#: lib/repeatform.php:132 #: lib/repeatform.php:132
msgid "Repeat this notice" msgid "Repeat this notice"
@ -5150,9 +5169,8 @@ msgid "Could not subscribe other to you."
msgstr "" msgstr ""
#: lib/subs.php:128 #: lib/subs.php:128
#, fuzzy
msgid "Not subscribed!" msgid "Not subscribed!"
msgstr "لست مُشتركًا!" msgstr "غير مشترك!"
#: lib/subs.php:133 #: lib/subs.php:133
msgid "Couldn't delete self-subscription." msgid "Couldn't delete self-subscription."

View File

@ -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-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:42:12+0000\n" "PO-Revision-Date: 2010-01-05 22:10:34+0000\n"
"Language-Team: Egyptian Spoken Arabic\n" "Language-Team: Egyptian Spoken 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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: arz\n" "X-Language-Code: arz\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -120,9 +120,8 @@ msgstr ""
#: actions/apiaccountupdateprofile.php:97 #: actions/apiaccountupdateprofile.php:97
#: actions/apiaccountupdateprofilebackgroundimage.php:94 #: actions/apiaccountupdateprofilebackgroundimage.php:94
#: actions/apiaccountupdateprofilecolors.php:118 #: actions/apiaccountupdateprofilecolors.php:118
#, fuzzy
msgid "API method not found." msgid "API method not found."
msgstr "لم يوجد رمز التأكيد." msgstr "لم يتم العثور على وسيله API."
#: actions/apiaccountupdatedeliverydevice.php:85 #: actions/apiaccountupdatedeliverydevice.php:85
#: actions/apiaccountupdateprofile.php:89 #: actions/apiaccountupdateprofile.php:89
@ -158,9 +157,8 @@ msgid "User has no profile."
msgstr "ليس للمستخدم ملف شخصى." msgstr "ليس للمستخدم ملف شخصى."
#: actions/apiaccountupdateprofile.php:147 #: actions/apiaccountupdateprofile.php:147
#, fuzzy
msgid "Could not save profile." msgid "Could not save profile."
msgstr "تعذّر حفظ الملف الشخصى." msgstr "لم يمكن حفظ الملف."
#: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofilebackgroundimage.php:108
#: actions/apiaccountupdateprofileimage.php:97 #: actions/apiaccountupdateprofileimage.php:97
@ -186,15 +184,14 @@ msgid "Could not update your design."
msgstr "تعذّر تحديث تصميمك." msgstr "تعذّر تحديث تصميمك."
#: actions/apiblockcreate.php:105 #: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "لا يمكنك حذف المستخدمين." msgstr "لا يمكنك منع نفسك!"
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "فشل منع المستخدم." msgstr "فشل منع المستخدم."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "فشل إلغاء منع المستخدم." msgstr "فشل إلغاء منع المستخدم."
@ -306,31 +303,31 @@ msgid "Could not find target user."
msgstr "تعذّر إيجاد المستخدم الهدف." msgstr "تعذّر إيجاد المستخدم الهدف."
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 ""
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "" msgstr ""
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "ليس اسمًا مستعارًا صحيحًا." msgstr "ليس اسمًا مستعارًا صحيحًا."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "الصفحه الرئيسيه ليست عنونًا صالحًا." msgstr "الصفحه الرئيسيه ليست عنونًا صالحًا."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)" msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)"
@ -341,7 +338,7 @@ msgid "Description is too long (max %d chars)."
msgstr "" msgstr ""
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "" msgstr ""
@ -431,14 +428,12 @@ msgid "No such notice."
msgstr "لا إشعار كهذا." msgstr "لا إشعار كهذا."
#: actions/apistatusesretweet.php:83 #: actions/apistatusesretweet.php:83
#, fuzzy
msgid "Cannot repeat your own notice." msgid "Cannot repeat your own notice."
msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." msgstr "لا يمكنك تكرار ملحوظتك الخاصه."
#: actions/apistatusesretweet.php:91 #: actions/apistatusesretweet.php:91
#, fuzzy
msgid "Already repeated that notice." msgid "Already repeated that notice."
msgstr "احذف هذا الإشعار" msgstr "كرر بالفعل هذه الملاحظه."
#: actions/apistatusesshow.php:138 #: actions/apistatusesshow.php:138
msgid "Status deleted." msgid "Status deleted."
@ -458,7 +453,7 @@ msgstr ""
msgid "Not found" msgid "Not found"
msgstr "لم يوجد" msgstr "لم يوجد"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -515,14 +510,14 @@ msgid "Repeated by %s"
msgstr "" msgstr ""
#: actions/apitimelineretweetedtome.php:111 #: actions/apitimelineretweetedtome.php:111
#, fuzzy, php-format #, php-format
msgid "Repeated to %s" msgid "Repeated to %s"
msgstr "الردود على %s" msgstr "كرر إلى %s"
#: actions/apitimelineretweetsofme.php:112 #: actions/apitimelineretweetsofme.php:112
#, fuzzy, php-format #, php-format
msgid "Repeats of %s" msgid "Repeats of %s"
msgstr "الردود على %s" msgstr "تكرارات %s"
#: actions/apitimelinetag.php:102 actions/tag.php:66 #: actions/apitimelinetag.php:102 actions/tag.php:66
#, php-format #, php-format
@ -587,7 +582,7 @@ msgid "Preview"
msgstr "عاين" msgstr "عاين"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "احذف" msgstr "احذف"
@ -600,13 +595,13 @@ msgid "Crop"
msgstr "" msgstr ""
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -676,7 +671,7 @@ msgstr "نعم"
msgid "Block this user" msgid "Block this user"
msgstr "امنع هذا المستخدم" msgstr "امنع هذا المستخدم"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "فشل حفظ معلومات المنع." msgstr "فشل حفظ معلومات المنع."
@ -748,7 +743,7 @@ msgstr ""
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "تعذّر تحديث المستخدم." msgstr "تعذّر تحديث المستخدم."
@ -808,7 +803,7 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "لا تحذف هذا الإشعار" msgstr "لا تحذف هذا الإشعار"
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "احذف هذا الإشعار" msgstr "احذف هذا الإشعار"
@ -942,7 +937,7 @@ msgstr "ارجع إلى المبدئي"
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1235,29 +1230,25 @@ msgid "Featured users, page %d"
msgstr "مستخدمون مختارون، صفحه %d" msgstr "مستخدمون مختارون، صفحه %d"
#: actions/featured.php:99 #: actions/featured.php:99
#, fuzzy, php-format #, php-format
msgid "A selection of some great users on %s" msgid "A selection of some great users on %s"
msgstr "قسم للمستخدمين المتميزين على %s" msgstr "اختيار لبعض المستخدمين المتميزين على %s"
#: actions/file.php:34 #: actions/file.php:34
#, fuzzy
msgid "No notice ID." msgid "No notice ID."
msgstr "لا إشعار" msgstr "لا رقم ملاحظه."
#: actions/file.php:38 #: actions/file.php:38
#, fuzzy
msgid "No notice." msgid "No notice."
msgstr "لا إشعار" msgstr "لا ملاحظه."
#: actions/file.php:42 #: actions/file.php:42
#, fuzzy
msgid "No attachments." msgid "No attachments."
msgstr "لا مرفقات" msgstr "لا مرفقات."
#: actions/file.php:51 #: actions/file.php:51
#, fuzzy
msgid "No uploaded attachments." msgid "No uploaded attachments."
msgstr "لا مرفقات مرفوعة" msgstr "لا مرفقات مرفوعه."
#: actions/finishremotesubscribe.php:69 #: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!" msgid "Not expecting this response!"
@ -1428,7 +1419,7 @@ msgstr ""
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "قائمه بمستخدمى هذه المجموعه." msgstr "قائمه بمستخدمى هذه المجموعه."
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "إداري" msgstr "إداري"
@ -1515,7 +1506,7 @@ msgstr ""
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "المستخدم ليس ممنوعًا من المجموعه." msgstr "المستخدم ليس ممنوعًا من المجموعه."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "خطأ أثناء منع الحجب." msgstr "خطأ أثناء منع الحجب."
@ -1684,7 +1675,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "أرسل" msgstr "أرسل"
@ -1780,7 +1771,7 @@ msgstr "اسم المستخدم أو كلمه السر غير صحيحان."
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "خطأ أثناء ضبط المستخدم. لست مُصرحًا على الأرجح." msgstr "خطأ أثناء ضبط المستخدم. لست مُصرحًا على الأرجح."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "لُج" msgstr "لُج"
@ -1887,7 +1878,7 @@ msgstr "أُرسلت الرسالة"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "" msgstr ""
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "خطأ أجاكس" msgstr "خطأ أجاكس"
@ -1895,7 +1886,7 @@ msgstr "خطأ أجاكس"
msgid "New notice" msgid "New notice"
msgstr "إشعار جديد" msgstr "إشعار جديد"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "أُرسل الإشعار" msgstr "أُرسل الإشعار"
@ -2312,69 +2303,77 @@ msgstr "الموقع"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "" msgstr ""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "الوسوم" msgstr "الوسوم"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "اللغة" msgstr "اللغة"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "اللغه المفضلة" msgstr "اللغه المفضلة"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "المنطقه الزمنية" msgstr "المنطقه الزمنية"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "ما المنطقه الزمنيه التى تتواجد فيها عادة؟" msgstr "ما المنطقه الزمنيه التى تتواجد فيها عادة؟"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, php-format #, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "" msgstr ""
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "لم تُختر المنطقه الزمنيه." msgstr "لم تُختر المنطقه الزمنيه."
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "" msgstr ""
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "وسم غير صالح: \"%s\"" msgstr "وسم غير صالح: \"%s\""
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
msgid "Couldn't save location prefs."
msgstr "لم يمكن حفظ تفضيلات الموقع."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "تعذّر حفظ الملف الشخصى." msgstr "تعذّر حفظ الملف الشخصى."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "تعذّر حفظ الوسوم." msgstr "تعذّر حفظ الوسوم."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "حُفظت الإعدادات." msgstr "حُفظت الإعدادات."
@ -2473,7 +2472,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "سحابه الوسوم" msgstr "سحابه الوسوم"
@ -2609,7 +2608,7 @@ msgstr "عذرا، رمز دعوه غير صالح."
msgid "Registration successful" msgid "Registration successful"
msgstr "نجح التسجيل" msgstr "نجح التسجيل"
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "سجّل" msgstr "سجّل"
@ -2762,29 +2761,24 @@ msgid "Only logged-in users can repeat notices."
msgstr "" msgstr ""
#: actions/repeat.php:64 actions/repeat.php:71 #: actions/repeat.php:64 actions/repeat.php:71
#, fuzzy
msgid "No notice specified." msgid "No notice specified."
msgstr "لا ملف شخصى مُحدّد." msgstr "لا ملاحظه محدده."
#: actions/repeat.php:76 #: actions/repeat.php:76
#, fuzzy
msgid "You can't repeat your own notice." msgid "You can't repeat your own notice."
msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع." msgstr "لا يمكنك تكرار ملاحظتك الشخصيه."
#: actions/repeat.php:90 #: actions/repeat.php:90
#, fuzzy
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "لقد منعت مسبقا هذا المستخدم." msgstr "أنت كررت هذه الملاحظه بالفعل."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
#, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "أنشئ" msgstr "مكرر"
#: actions/repeat.php:119 #: actions/repeat.php:119
#, fuzzy
msgid "Repeated!" msgid "Repeated!"
msgstr "أنشئ" msgstr "مكرر!"
#: actions/replies.php:125 actions/repliesrss.php:68 #: actions/replies.php:125 actions/repliesrss.php:68
#: lib/personalgroupnav.php:105 #: lib/personalgroupnav.php:105
@ -3089,9 +3083,9 @@ msgid ""
msgstr "" msgstr ""
#: actions/showstream.php:313 #: actions/showstream.php:313
#, fuzzy, php-format #, php-format
msgid "Repeat of %s" msgid "Repeat of %s"
msgstr "الردود على %s" msgstr "تكرارات %s"
#: actions/silence.php:65 actions/unsilence.php:65 #: actions/silence.php:65 actions/unsilence.php:65
msgid "You cannot silence users on this site." msgid "You cannot silence users on this site."
@ -3219,9 +3213,8 @@ msgid "Prohibit anonymous users (not logged in) from viewing site?"
msgstr "أأمنع المستخدمين المجهولين (غير الوالجين) من عرض الموقع؟" msgstr "أأمنع المستخدمين المجهولين (غير الوالجين) من عرض الموقع؟"
#: actions/siteadminpanel.php:327 #: actions/siteadminpanel.php:327
#, fuzzy
msgid "Invite only" msgid "Invite only"
msgstr "ادعُ" msgstr "بالدعوه فقط"
#: actions/siteadminpanel.php:329 #: actions/siteadminpanel.php:329
msgid "Make registration invitation only." msgid "Make registration invitation only."
@ -3503,9 +3496,8 @@ msgid "Notice feed for tag %s (Atom)"
msgstr "" msgstr ""
#: actions/tagother.php:39 #: actions/tagother.php:39
#, fuzzy
msgid "No ID argument." msgid "No ID argument."
msgstr "لا مُدخل هويه." msgstr "لا مدخل هويه."
#: actions/tagother.php:65 #: actions/tagother.php:65
#, php-format #, php-format
@ -3522,7 +3514,7 @@ msgstr "صورة"
#: actions/tagother.php:141 #: actions/tagother.php:141
msgid "Tag user" msgid "Tag user"
msgstr "" msgstr "اوسم المستخدم"
#: actions/tagother.php:151 #: actions/tagother.php:151
msgid "" msgid ""
@ -3556,9 +3548,8 @@ msgid "You haven't blocked that user."
msgstr "لم تمنع هذا المستخدم." msgstr "لم تمنع هذا المستخدم."
#: actions/unsandbox.php:72 #: actions/unsandbox.php:72
#, fuzzy
msgid "User is not sandboxed." msgid "User is not sandboxed."
msgstr "ليس للمستخدم إشعار أخير" msgstr "المستخدم ليس فى صندوق الرمل."
#: actions/unsilence.php:72 #: actions/unsilence.php:72
msgid "User is not silenced." msgid "User is not silenced."
@ -3762,9 +3753,8 @@ msgid "Wrong image type for avatar URL %s."
msgstr "" msgstr ""
#: actions/userbyid.php:70 #: actions/userbyid.php:70
#, fuzzy
msgid "No ID." msgid "No ID."
msgstr "لا هوية" msgstr "لا هويه."
#: actions/userdesignsettings.php:76 lib/designsettings.php:65 #: actions/userdesignsettings.php:76 lib/designsettings.php:65
msgid "Profile design" msgid "Profile design"
@ -3856,19 +3846,19 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "مشكله أثناء حفظ الإشعار." msgstr "مشكله أثناء حفظ الإشعار."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "" msgstr ""
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, fuzzy, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "آر تى @%1$s %2$s"
#: classes/User.php:368 #: classes/User.php:368
#, php-format #, php-format
@ -3920,128 +3910,128 @@ msgstr "%s - %s"
msgid "Untitled page" msgid "Untitled page"
msgstr "صفحه غير مُعنونة" msgstr "صفحه غير مُعنونة"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "" msgstr ""
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "الرئيسية" msgstr "الرئيسية"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "الملف الشخصى ومسار الأصدقاء الزمني" msgstr "الملف الشخصى ومسار الأصدقاء الزمني"
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "الحساب" msgstr "الحساب"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "" msgstr ""
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "اتصل" msgstr "اتصل"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect to services" msgid "Connect to services"
msgstr "" msgstr ""
#: lib/action.php:440 #: lib/action.php:441
msgid "Change site configuration" msgid "Change site configuration"
msgstr "غيّر ضبط الموقع" msgstr "غيّر ضبط الموقع"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "ادعُ" msgstr "ادعُ"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "" msgstr ""
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "اخرج" msgstr "اخرج"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "اخرج من الموقع" msgstr "اخرج من الموقع"
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "أنشئ حسابًا" msgstr "أنشئ حسابًا"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "لُج إلى الموقع" msgstr "لُج إلى الموقع"
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "مساعدة" msgstr "مساعدة"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "ساعدني!" msgstr "ساعدني!"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "ابحث" msgstr "ابحث"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "ابحث عن أشخاص أو نص" msgstr "ابحث عن أشخاص أو نص"
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "إشعار الموقع" msgstr "إشعار الموقع"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "المشاهدات المحلية" msgstr "المشاهدات المحلية"
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "إشعار الصفحة" msgstr "إشعار الصفحة"
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "" msgstr ""
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "عن" msgstr "عن"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "الأسئله المكررة" msgstr "الأسئله المكررة"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "الشروط" msgstr "الشروط"
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "خصوصية" msgstr "خصوصية"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "المصدر" msgstr "المصدر"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "اتصل" msgstr "اتصل"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "" msgstr ""
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "" msgstr ""
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4050,12 +4040,12 @@ msgstr ""
"**%%site.name%%** خدمه تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site." "**%%site.name%%** خدمه تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site."
"broughtbyurl%%). " "broughtbyurl%%). "
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "" msgstr ""
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4066,31 +4056,31 @@ msgstr ""
"المتوفر تحت [رخصه غنو أفيرو العمومية](http://www.fsf.org/licensing/licenses/" "المتوفر تحت [رخصه غنو أفيرو العمومية](http://www.fsf.org/licensing/licenses/"
"agpl-3.0.html)." "agpl-3.0.html)."
#: lib/action.php:790 #: lib/action.php:791
msgid "Site content license" msgid "Site content license"
msgstr "رخصه محتوى الموقع" msgstr "رخصه محتوى الموقع"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "الرخصه." msgstr "الرخصه."
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "بعد" msgstr "بعد"
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "قبل" msgstr "قبل"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -4142,6 +4132,16 @@ msgstr ""
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "وسوم هذا المرفق" msgstr "وسوم هذا المرفق"
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "تغيير كلمه السر"
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "تغيير كلمه السر"
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "نتائج الأمر" msgstr "نتائج الأمر"
@ -4235,19 +4235,17 @@ msgid "Cannot repeat your own notice"
msgstr "" msgstr ""
#: lib/command.php:427 #: lib/command.php:427
#, fuzzy
msgid "Already repeated that notice" msgid "Already repeated that notice"
msgstr "احذف هذا الإشعار" msgstr "كرر بالفعل هذا الإشعار"
#: lib/command.php:435 #: lib/command.php:435
#, fuzzy, php-format #, php-format
msgid "Notice from %s repeated" msgid "Notice from %s repeated"
msgstr "أُرسل الإشعار" msgstr "الإشعار من %s مكرر"
#: lib/command.php:437 #: lib/command.php:437
#, fuzzy
msgid "Error repeating notice." msgid "Error repeating notice."
msgstr "خطأ أثناء حفظ الإشعار." msgstr "خطأ تكرار الإشعار."
#: lib/command.php:491 #: lib/command.php:491
#, php-format #, php-format
@ -4308,7 +4306,7 @@ msgstr ""
#: lib/command.php:664 #: lib/command.php:664
#, php-format #, php-format
msgid "Could not create login token for %s" msgid "Could not create login token for %s"
msgstr "" msgstr "لم يمكن إنشاء توكن الولوج ل%s"
#: lib/command.php:669 #: lib/command.php:669
#, php-format #, php-format
@ -4606,11 +4604,11 @@ msgstr "نوع ملف غير معروف"
#: lib/imagefile.php:217 #: lib/imagefile.php:217
msgid "MB" msgid "MB"
msgstr "" msgstr "ميجابايت"
#: lib/imagefile.php:219 #: lib/imagefile.php:219
msgid "kB" msgid "kB"
msgstr "" msgstr "كيلوبايت"
#: lib/jabber.php:191 #: lib/jabber.php:191
#, php-format #, php-format
@ -4819,7 +4817,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
msgid "from" msgid "from"
msgstr "من" msgstr "من"
@ -4883,73 +4881,75 @@ msgstr "أرسل إشعارًا مباشرًا"
msgid "To" msgid "To"
msgstr "إلى" msgstr "إلى"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "المحارف المتوفرة" msgstr "المحارف المتوفرة"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "أرسل إشعارًا" msgstr "أرسل إشعارًا"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "ما الأخبار يا %s؟" msgstr "ما الأخبار يا %s؟"
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "أرفق" msgstr "أرفق"
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "أرفق ملفًا" msgstr "أرفق ملفًا"
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "N" msgid "N"
msgstr "ش" msgstr "ش"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "ج" msgstr "ج"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "ر" msgstr "ر"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "غ" msgstr "غ"
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "في" msgstr "في"
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "فى السياق" msgstr "فى السياق"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
#, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "أنشئ" msgstr "مكرر بواسطة"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "رُد على هذا الإشعار" msgstr "رُد على هذا الإشعار"
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "رُد" msgstr "رُد"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
#, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "حُذف الإشعار." msgstr "الإشعار مكرر"
#: lib/nudgeform.php:116 #: lib/nudgeform.php:116
msgid "Nudge this user" msgid "Nudge this user"
@ -5049,9 +5049,8 @@ msgid "All groups"
msgstr "كل المجموعات" msgstr "كل المجموعات"
#: lib/profileformaction.php:123 #: lib/profileformaction.php:123
#, fuzzy
msgid "No return-to arguments." msgid "No return-to arguments."
msgstr "لا مُدخل هويه." msgstr "لا مدخلات رجوع إلى."
#: lib/profileformaction.php:137 #: lib/profileformaction.php:137
msgid "Unimplemented method." msgid "Unimplemented method."
@ -5078,23 +5077,20 @@ msgid "Popular"
msgstr "مشهورة" msgstr "مشهورة"
#: lib/repeatform.php:107 #: lib/repeatform.php:107
#, fuzzy
msgid "Repeat this notice?" msgid "Repeat this notice?"
msgstr "رُد على هذا الإشعار" msgstr "كرر هذا الإشعار؟"
#: lib/repeatform.php:132 #: lib/repeatform.php:132
#, fuzzy
msgid "Repeat this notice" msgid "Repeat this notice"
msgstr "رُد على هذا الإشعار" msgstr "كرر هذا الإشعار"
#: lib/sandboxform.php:67 #: lib/sandboxform.php:67
msgid "Sandbox" msgid "Sandbox"
msgstr "" msgstr ""
#: lib/sandboxform.php:78 #: lib/sandboxform.php:78
#, fuzzy
msgid "Sandbox this user" msgid "Sandbox this user"
msgstr "ألغِ منع هذا المستخدم" msgstr "أضف هذا المستخدم إلى صندوق الرمل"
#: lib/searchaction.php:120 #: lib/searchaction.php:120
msgid "Search site" msgid "Search site"
@ -5172,14 +5168,12 @@ msgid "Could not subscribe other to you."
msgstr "" msgstr ""
#: lib/subs.php:128 #: lib/subs.php:128
#, fuzzy
msgid "Not subscribed!" msgid "Not subscribed!"
msgstr "لست مُشتركًا!" msgstr "غير مشترك!"
#: lib/subs.php:133 #: lib/subs.php:133
#, fuzzy
msgid "Couldn't delete self-subscription." msgid "Couldn't delete self-subscription."
msgstr "تعذّر حذف الاشتراك." msgstr "لم يمكن حذف اشتراك ذاتى."
#: lib/subs.php:146 #: lib/subs.php:146
msgid "Couldn't delete subscription." msgid "Couldn't delete subscription."
@ -5212,9 +5206,8 @@ msgid "Unsandbox"
msgstr "" msgstr ""
#: lib/unsandboxform.php:80 #: lib/unsandboxform.php:80
#, fuzzy
msgid "Unsandbox this user" msgid "Unsandbox this user"
msgstr "ألغِ منع هذا المستخدم" msgstr "أزل هذا المستخدم من صندوق الرمل"
#: lib/unsilenceform.php:67 #: lib/unsilenceform.php:67
msgid "Unsilence" msgid "Unsilence"

View File

@ -1,5 +1,6 @@
# Translation of StatusNet to Bulgarian # Translation of StatusNet to Bulgarian
# #
# Author@translatewiki.net: DCLXVI
# Author@translatewiki.net: Turin # Author@translatewiki.net: Turin
# -- # --
# This file is distributed under the same license as the StatusNet package. # This file is distributed under the same license as the StatusNet package.
@ -8,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-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:42:15+0000\n" "PO-Revision-Date: 2010-01-05 22:10:40+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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\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"
@ -188,11 +189,11 @@ msgstr "Грешка при обновяване на потребителя."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "Не можете да блокирате себе си!" msgstr "Не можете да блокирате себе си!"
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "Грешка при блокиране на потребителя." msgstr "Грешка при блокиране на потребителя."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "Грешка при разблокиране на потребителя." msgstr "Грешка при разблокиране на потребителя."
@ -303,12 +304,11 @@ msgid "Could not determine source user."
msgstr "Грешка при изтегляне на общия поток" msgstr "Грешка при изтегляне на общия поток"
#: actions/apifriendshipsshow.php:143 #: actions/apifriendshipsshow.php:143
#, fuzzy
msgid "Could not find target user." msgid "Could not find target user."
msgstr "Не са открити бележки." msgstr "Целевият потребител не беше открит."
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 ""
@ -316,25 +316,25 @@ msgstr ""
"между тях." "между тях."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "Опитайте друг псевдоним, този вече е зает." msgstr "Опитайте друг псевдоним, този вече е зает."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "Неправилен псевдоним." msgstr "Неправилен псевдоним."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "Адресът на личната страница не е правилен URL." msgstr "Адресът на личната страница не е правилен URL."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "Пълното име е твърде дълго (макс. 255 знака)" msgstr "Пълното име е твърде дълго (макс. 255 знака)"
@ -345,7 +345,7 @@ msgid "Description is too long (max %d chars)."
msgstr "Описанието е твърде дълго (до %d символа)." msgstr "Описанието е твърде дълго (до %d символа)."
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "Името на местоположението е твърде дълго (макс. 255 знака)." msgstr "Името на местоположението е твърде дълго (макс. 255 знака)."
@ -460,7 +460,7 @@ msgstr "Твърде дълга бележка. Трябва да е най-мн
msgid "Not found" msgid "Not found"
msgstr "Не е открито." msgstr "Не е открито."
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -591,7 +591,7 @@ msgid "Preview"
msgstr "Преглед" msgstr "Преглед"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "Изтриване" msgstr "Изтриване"
@ -604,13 +604,13 @@ msgid "Crop"
msgstr "Изрязване" msgstr "Изрязване"
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -680,7 +680,7 @@ msgstr "Да"
msgid "Block this user" msgid "Block this user"
msgstr "Блокиране на потребителя" msgstr "Блокиране на потребителя"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "Грешка при записване данните за блокирането." msgstr "Грешка при записване данните за блокирането."
@ -754,7 +754,7 @@ msgstr "Този адрес е вече потвърден."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "Грешка при обновяване на потребителя." msgstr "Грешка при обновяване на потребителя."
@ -814,7 +814,7 @@ msgstr "Наистина ли искате да изтриете тази бел
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Да не се изтрива бележката" msgstr "Да не се изтрива бележката"
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Изтриване на бележката" msgstr "Изтриване на бележката"
@ -954,7 +954,7 @@ msgstr ""
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1268,9 +1268,8 @@ msgid "No notice."
msgstr "Липсва бележка." msgstr "Липсва бележка."
#: actions/file.php:42 #: actions/file.php:42
#, fuzzy
msgid "No attachments." msgid "No attachments."
msgstr "Няма такъв документ." msgstr "Няма прикачени файлове."
#: actions/file.php:51 #: actions/file.php:51
#, fuzzy #, fuzzy
@ -1350,14 +1349,12 @@ msgid "Only an admin can block group members."
msgstr "Само администратор може да блокира членове от групата." msgstr "Само администратор може да блокира членове от групата."
#: actions/groupblock.php:95 #: actions/groupblock.php:95
#, fuzzy
msgid "User is already blocked from group." msgid "User is already blocked from group."
msgstr "Потребителят ви е блокирал." msgstr "Потребителят вече е блокиран за групата."
#: actions/groupblock.php:100 #: actions/groupblock.php:100
#, fuzzy
msgid "User is not a member of group." msgid "User is not a member of group."
msgstr "Не членувате в тази група." msgstr "Потребителят не членува в групата."
#: actions/groupblock.php:136 actions/groupmembers.php:314 #: actions/groupblock.php:136 actions/groupmembers.php:314
#, fuzzy #, fuzzy
@ -1460,7 +1457,7 @@ msgstr "Членове на групата %s, страница %d"
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "Списък с потребителите в тази група." msgstr "Списък с потребителите в тази група."
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "Настройки" msgstr "Настройки"
@ -1551,7 +1548,7 @@ msgstr ""
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "Потребителят ви е блокирал." msgstr "Потребителят ви е блокирал."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
#, fuzzy #, fuzzy
msgid "Error removing the block." msgid "Error removing the block."
msgstr "Грешка при запазване на потребител." msgstr "Грешка при запазване на потребител."
@ -1734,7 +1731,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "Прати" msgstr "Прати"
@ -1859,7 +1856,7 @@ msgstr "Грешно име или парола."
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "Забранено." msgstr "Забранено."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Вход" msgstr "Вход"
@ -1972,7 +1969,7 @@ msgstr "Съобщението е изпратено"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "Прякото съобщение до %s е изпратено." msgstr "Прякото съобщение до %s е изпратено."
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "Грешка в Ajax" msgstr "Грешка в Ajax"
@ -1980,7 +1977,7 @@ msgstr "Грешка в Ajax"
msgid "New notice" msgid "New notice"
msgstr "Нова бележка" msgstr "Нова бележка"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "Бележката е публикувана" msgstr "Бележката е публикувана"
@ -2054,7 +2051,7 @@ msgstr "вид съдържание "
#: actions/oembed.php:160 #: actions/oembed.php:160
msgid "Only " msgid "Only "
msgstr "" msgstr "Само "
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1031 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1031
#: lib/api.php:1059 lib/api.php:1169 #: lib/api.php:1059 lib/api.php:1169
@ -2403,71 +2400,80 @@ msgstr "Местоположение"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Къде се намирате (град, община, държава и т.н.)" msgstr "Къде се намирате (град, община, държава и т.н.)"
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "Етикети" msgstr "Етикети"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Език" msgstr "Език"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "Предпочитан език" msgstr "Предпочитан език"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "Часови пояс" msgstr "Часови пояс"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "В кой часови пояс сте обикновено?" msgstr "В кой часови пояс сте обикновено?"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
"Автоматично абониране за всеки, който се абонира за мен (подходящо за " "Автоматично абониране за всеки, който се абонира за мен (подходящо за "
"ботове)." "ботове)."
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, php-format #, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "Биографията е твърде дълга (до %d символа)." msgstr "Биографията е твърде дълга (до %d символа)."
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "Не е избран часови пояс" msgstr "Не е избран часови пояс"
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "Името на езика е твърде дълго (може да е до 50 знака)." msgstr "Името на езика е твърде дълго (може да е до 50 знака)."
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Неправилен етикет: \"%s\"" msgstr "Неправилен етикет: \"%s\""
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
#, fuzzy
msgid "Couldn't save location prefs."
msgstr "Грешка при запазване етикетите."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Грешка при запазване на профила." msgstr "Грешка при запазване на профила."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Грешка при запазване етикетите." msgstr "Грешка при запазване етикетите."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "Настройките са запазени." msgstr "Настройките са запазени."
@ -2561,7 +2567,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -2700,7 +2706,7 @@ msgstr "Грешка в кода за потвърждение."
msgid "Registration successful" msgid "Registration successful"
msgstr "Записването е успешно." msgstr "Записването е успешно."
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "Регистриране" msgstr "Регистриране"
@ -2889,7 +2895,7 @@ msgstr "Не можете да повтаряте собствена бележ
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Вече сте повторили тази бележка." msgstr "Вече сте повторили тази бележка."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
msgid "Repeated" msgid "Repeated"
msgstr "Повторено" msgstr "Повторено"
@ -4002,16 +4008,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Забранено ви е да публикувате бележки в този сайт." msgstr "Забранено ви е да публикувате бележки в този сайт."
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Проблем при записване на бележката." msgstr "Проблем при записване на бележката."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Грешка в базата от данни — отговор при вмъкването: %s" msgstr "Грешка в базата от данни — отговор при вмъкването: %s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -4068,132 +4074,132 @@ msgstr "%s - %s"
msgid "Untitled page" msgid "Untitled page"
msgstr "Неозаглавена страница" msgstr "Неозаглавена страница"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "" msgstr ""
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "Начало" msgstr "Начало"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "" msgstr ""
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "Сметка" msgstr "Сметка"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "Промяна на поща, аватар, парола, профил" msgstr "Промяна на поща, аватар, парола, профил"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Свързване" msgstr "Свързване"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect to services" msgid "Connect to services"
msgstr "Свързване към услуги" msgstr "Свързване към услуги"
#: lib/action.php:440 #: lib/action.php:441
msgid "Change site configuration" msgid "Change site configuration"
msgstr "Промяна настройките на сайта" msgstr "Промяна настройките на сайта"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "Покани" msgstr "Покани"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "Поканете приятели и колеги да се присъединят към вас в %s" msgstr "Поканете приятели и колеги да се присъединят към вас в %s"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "Изход" msgstr "Изход"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "Излизане от сайта" msgstr "Излизане от сайта"
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "Създаване на нова сметка" msgstr "Създаване на нова сметка"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "Влизане в сайта" msgstr "Влизане в сайта"
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Помощ" msgstr "Помощ"
#: lib/action.php:461 #: lib/action.php:462
#, fuzzy #, fuzzy
msgid "Help me!" msgid "Help me!"
msgstr "Помощ" msgstr "Помощ"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "Търсене" msgstr "Търсене"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "Търсене за хора или бележки" msgstr "Търсене за хора или бележки"
#: lib/action.php:485 #: lib/action.php:486
#, fuzzy #, fuzzy
msgid "Site notice" msgid "Site notice"
msgstr "Нова бележка" msgstr "Нова бележка"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "" msgstr ""
#: lib/action.php:617 #: lib/action.php:618
#, fuzzy #, fuzzy
msgid "Page notice" msgid "Page notice"
msgstr "Нова бележка" msgstr "Нова бележка"
#: lib/action.php:719 #: lib/action.php:720
#, fuzzy #, fuzzy
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "Абонаменти" msgstr "Абонаменти"
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "Относно" msgstr "Относно"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "Въпроси" msgstr "Въпроси"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "Условия" msgstr "Условия"
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "Поверителност" msgstr "Поверителност"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "Изходен код" msgstr "Изходен код"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Контакт" msgstr "Контакт"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "Табелка" msgstr "Табелка"
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "Лиценз на програмата StatusNet" msgstr "Лиценз на програмата StatusNet"
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4202,12 +4208,12 @@ msgstr ""
"**%%site.name%%** е услуга за микроблогване, предоставена ви от [%%site." "**%%site.name%%** е услуга за микроблогване, предоставена ви от [%%site."
"broughtby%%](%%site.broughtbyurl%%). " "broughtby%%](%%site.broughtbyurl%%). "
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** е услуга за микроблогване. " msgstr "**%%site.name%%** е услуга за микроблогване. "
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4218,31 +4224,31 @@ msgstr ""
"достъпна под [GNU Affero General Public License](http://www.fsf.org/" "достъпна под [GNU Affero General Public License](http://www.fsf.org/"
"licensing/licenses/agpl-3.0.html)." "licensing/licenses/agpl-3.0.html)."
#: lib/action.php:790 #: lib/action.php:791
msgid "Site content license" msgid "Site content license"
msgstr "Лиценз на съдържанието" msgstr "Лиценз на съдържанието"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "Всички " msgstr "Всички "
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "лиценз." msgstr "лиценз."
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "Страниране" msgstr "Страниране"
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "След" msgstr "След"
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "Преди" msgstr "Преди"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Имаше проблем със сесията ви в сайта." msgstr "Имаше проблем със сесията ви в сайта."
@ -4297,6 +4303,16 @@ msgstr ""
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "" msgstr ""
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Паролата е записана."
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Паролата е записана."
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "Резултат от командата" msgstr "Резултат от командата"
@ -4981,7 +4997,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
msgid "from" msgid "from"
msgstr "от" msgstr "от"
@ -5045,69 +5061,73 @@ msgstr "Изпращане на пряко съобщеие"
msgid "To" msgid "To"
msgstr "До" msgstr "До"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "Налични знаци" msgstr "Налични знаци"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "Изпращане на бележка" msgstr "Изпращане на бележка"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "Какво става, %s?" msgstr "Какво става, %s?"
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "Прикрепяне" msgstr "Прикрепяне"
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "Прикрепяне на файл" msgstr "Прикрепяне на файл"
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "N" msgid "N"
msgstr "С" msgstr "С"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "Ю" msgstr "Ю"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "И" msgstr "И"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "З" msgstr "З"
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "в контекст" msgstr "в контекст"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
msgid "Repeated by" msgid "Repeated by"
msgstr "Повторено от" msgstr "Повторено от"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Отговаряне на тази бележка" msgstr "Отговаряне на тази бележка"
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "Отговор" msgstr "Отговор"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Бележката е повторена." msgstr "Бележката е повторена."

View File

@ -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-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:42:19+0000\n" "PO-Revision-Date: 2010-01-05 22:10:44+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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\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"
@ -195,11 +195,11 @@ msgstr "No s'ha pogut actualitzar l'usuari."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "No podeu suprimir els usuaris." msgstr "No podeu suprimir els usuaris."
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "Ha fallat el bloqueig d'usuari." msgstr "Ha fallat el bloqueig d'usuari."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "Ha fallat el desbloqueig d'usuari." msgstr "Ha fallat el desbloqueig d'usuari."
@ -316,7 +316,7 @@ msgid "Could not find target user."
msgstr "No es pot trobar cap estatus." msgstr "No es pot trobar cap estatus."
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 ""
@ -324,25 +324,25 @@ msgstr ""
"espais." "espais."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "Aquest sobrenom ja existeix. Prova un altre. " msgstr "Aquest sobrenom ja existeix. Prova un altre. "
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "Sobrenom no vàlid." msgstr "Sobrenom no vàlid."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "La pàgina personal no és un URL vàlid." msgstr "La pàgina personal no és un URL vàlid."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "El teu nom és massa llarg (màx. 255 caràcters)." msgstr "El teu nom és massa llarg (màx. 255 caràcters)."
@ -353,7 +353,7 @@ msgid "Description is too long (max %d chars)."
msgstr "La descripció és massa llarga (màx. %d caràcters)." msgstr "La descripció és massa llarga (màx. %d caràcters)."
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "La ubicació és massa llarga (màx. 255 caràcters)." msgstr "La ubicació és massa llarga (màx. 255 caràcters)."
@ -470,7 +470,7 @@ msgstr "Massa llarg. La longitud màxima és de %d caràcters."
msgid "Not found" msgid "Not found"
msgstr "No s'ha trobat" msgstr "No s'ha trobat"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -600,7 +600,7 @@ msgid "Preview"
msgstr "Vista prèvia" msgstr "Vista prèvia"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "Suprimeix" msgstr "Suprimeix"
@ -613,13 +613,13 @@ msgid "Crop"
msgstr "Retalla" msgstr "Retalla"
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -693,7 +693,7 @@ msgstr "Sí"
msgid "Block this user" msgid "Block this user"
msgstr "Bloquejar aquest usuari" msgstr "Bloquejar aquest usuari"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "Error al guardar la informació del block." msgstr "Error al guardar la informació del block."
@ -767,7 +767,7 @@ msgstr "Aquesta adreça ja ha estat confirmada."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "No s'ha pogut actualitzar l'usuari." msgstr "No s'ha pogut actualitzar l'usuari."
@ -831,7 +831,7 @@ msgstr "N'estàs segur que vols eliminar aquesta notificació?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "No es pot esborrar la notificació." msgstr "No es pot esborrar la notificació."
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Eliminar aquesta nota" msgstr "Eliminar aquesta nota"
@ -969,7 +969,7 @@ msgstr ""
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1471,7 +1471,7 @@ msgstr "%s membre/s en el grup, pàgina %d"
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "La llista dels usuaris d'aquest grup." msgstr "La llista dels usuaris d'aquest grup."
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "Admin" msgstr "Admin"
@ -1560,7 +1560,7 @@ msgstr "Només un administrador pot desblocar els membres del grup."
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "L'usuari no està blocat del grup." msgstr "L'usuari no està blocat del grup."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "S'ha produït un error en suprimir el bloc." msgstr "S'ha produït un error en suprimir el bloc."
@ -1750,7 +1750,7 @@ 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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "Envia" msgstr "Envia"
@ -1874,7 +1874,7 @@ msgstr "Nom d'usuari o contrasenya incorrectes."
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "No autoritzat." msgstr "No autoritzat."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Inici de sessió" msgstr "Inici de sessió"
@ -1988,7 +1988,7 @@ msgstr "S'ha enviat el missatge"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "Missatge directe per a %s enviat" msgstr "Missatge directe per a %s enviat"
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "Ajax Error" msgstr "Ajax Error"
@ -1996,7 +1996,7 @@ msgstr "Ajax Error"
msgid "New notice" msgid "New notice"
msgstr "Nou avís" msgstr "Nou avís"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "Notificació publicada" msgstr "Notificació publicada"
@ -2428,73 +2428,82 @@ msgstr "Ubicació"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "On ets, per exemple \"Ciutat, Estat (o Regió), País\"" msgstr "On ets, per exemple \"Ciutat, Estat (o Regió), País\""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "Etiquetes" msgstr "Etiquetes"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
"Etiquetes per a tu mateix (lletres, números, -, ., i _), per comes o separat " "Etiquetes per a tu mateix (lletres, números, -, ., i _), per comes o separat "
"por espais" "por espais"
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Idioma" msgstr "Idioma"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "Preferència d'idioma" msgstr "Preferència d'idioma"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "Franja horària" msgstr "Franja horària"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "Quina franja horària seria normal ser?" msgstr "Quina franja horària seria normal ser?"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
"Automàticament subscriure's a qualsevol que ho estigui a tu mateix (ideal " "Automàticament subscriure's a qualsevol que ho estigui a tu mateix (ideal "
"per no-humans)" "per no-humans)"
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, php-format #, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "La biografia és massa llarga (màx. %d caràcters)." msgstr "La biografia és massa llarga (màx. %d caràcters)."
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "Franja horària no seleccionada." msgstr "Franja horària no seleccionada."
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "L'idioma és massa llarg (màx 50 caràcters)." msgstr "L'idioma és massa llarg (màx 50 caràcters)."
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Etiqueta no vàlida: \"%s\"" msgstr "Etiqueta no vàlida: \"%s\""
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "No es pot actualitzar l'usuari per autosubscriure." msgstr "No es pot actualitzar l'usuari per autosubscriure."
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
#, fuzzy
msgid "Couldn't save location prefs."
msgstr "No s'han pogut guardar les etiquetes."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "No s'ha pogut guardar el perfil." msgstr "No s'ha pogut guardar el perfil."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "No s'han pogut guardar les etiquetes." msgstr "No s'han pogut guardar les etiquetes."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "Configuració guardada." msgstr "Configuració guardada."
@ -2591,7 +2600,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Núvol d'etiquetes" msgstr "Núvol d'etiquetes"
@ -2731,7 +2740,7 @@ msgstr "El codi d'invitació no és vàlid."
msgid "Registration successful" msgid "Registration successful"
msgstr "Registre satisfactori" msgstr "Registre satisfactori"
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "Registre" msgstr "Registre"
@ -2928,7 +2937,7 @@ msgstr "No pots registrar-te si no estàs d'acord amb la llicència."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Ja heu blocat l'usuari." msgstr "Ja heu blocat l'usuari."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
msgid "Repeated" msgid "Repeated"
msgstr "Repetit" msgstr "Repetit"
@ -4052,16 +4061,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Ha estat bandejat de publicar notificacions en aquest lloc." msgstr "Ha estat bandejat de publicar notificacions en aquest lloc."
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Problema en guardar l'avís." msgstr "Problema en guardar l'avís."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Error de BD en inserir resposta: %s" msgstr "Error de BD en inserir resposta: %s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -4117,129 +4126,129 @@ msgstr "%s - %s"
msgid "Untitled page" msgid "Untitled page"
msgstr "Pàgina sense titol" msgstr "Pàgina sense titol"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "Navegació primària del lloc" msgstr "Navegació primària del lloc"
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "Inici" msgstr "Inici"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "Perfil personal i línia temporal dels amics" msgstr "Perfil personal i línia temporal dels amics"
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "Compte" msgstr "Compte"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "Canviar correu electrònic, avatar, contrasenya, perfil" msgstr "Canviar correu electrònic, avatar, contrasenya, perfil"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Connexió" msgstr "Connexió"
#: lib/action.php:436 #: lib/action.php:437
#, fuzzy #, fuzzy
msgid "Connect to services" 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:441
msgid "Change site configuration" msgid "Change site configuration"
msgstr "Canvia la configuració del lloc" msgstr "Canvia la configuració del lloc"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "Convida" msgstr "Convida"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "Convidar amics i companys perquè participin a %s" msgstr "Convidar amics i companys perquè participin a %s"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "Finalitza la sessió" msgstr "Finalitza la sessió"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "Finalitza la sessió del lloc" msgstr "Finalitza la sessió del lloc"
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "Crea un compte" msgstr "Crea un compte"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "Inicia una sessió al lloc" msgstr "Inicia una sessió al lloc"
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Ajuda" msgstr "Ajuda"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "Ajuda'm" msgstr "Ajuda'm"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "Cerca" msgstr "Cerca"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "Cerca gent o text" msgstr "Cerca gent o text"
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "Avís del lloc" msgstr "Avís del lloc"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "Vistes locals" msgstr "Vistes locals"
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "Notificació pàgina" msgstr "Notificació pàgina"
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "Navegació del lloc secundària" msgstr "Navegació del lloc secundària"
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "Quant a" msgstr "Quant a"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "Preguntes més freqüents" msgstr "Preguntes més freqüents"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "" msgstr ""
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "Privadesa" msgstr "Privadesa"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "Font" msgstr "Font"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Contacte" msgstr "Contacte"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "Insígnia" msgstr "Insígnia"
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "Llicència del programari StatusNet" msgstr "Llicència del programari StatusNet"
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4248,12 +4257,12 @@ msgstr ""
"**%%site.name%%** és un servei de microblogging de [%%site.broughtby%%**](%%" "**%%site.name%%** és un servei de microblogging de [%%site.broughtby%%**](%%"
"site.broughtbyurl%%)." "site.broughtbyurl%%)."
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** és un servei de microblogging." msgstr "**%%site.name%%** és un servei de microblogging."
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4264,32 +4273,32 @@ msgstr ""
"%s, disponible sota la [GNU Affero General Public License](http://www.fsf." "%s, disponible sota la [GNU Affero General Public License](http://www.fsf."
"org/licensing/licenses/agpl-3.0.html)." "org/licensing/licenses/agpl-3.0.html)."
#: lib/action.php:790 #: lib/action.php:791
#, fuzzy #, fuzzy
msgid "Site content license" msgid "Site content license"
msgstr "Llicència del programari StatusNet" msgstr "Llicència del programari StatusNet"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "Tot " msgstr "Tot "
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "llicència." msgstr "llicència."
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "Paginació" msgstr "Paginació"
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "Posteriors" msgstr "Posteriors"
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "Anteriors" msgstr "Anteriors"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Ha ocorregut algun problema amb la teva sessió." msgstr "Ha ocorregut algun problema amb la teva sessió."
@ -4345,6 +4354,16 @@ msgstr ""
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "Etiquetes de l'adjunció" msgstr "Etiquetes de l'adjunció"
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Contrasenya canviada."
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Contrasenya canviada."
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "Resultats de les comandes" msgstr "Resultats de les comandes"
@ -5031,7 +5050,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
msgid "from" msgid "from"
msgstr "de" msgstr "de"
@ -5095,72 +5114,76 @@ msgstr "Enviar notificació directa"
msgid "To" msgid "To"
msgstr "A" msgstr "A"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "Caràcters disponibles" msgstr "Caràcters disponibles"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "Enviar notificació" msgstr "Enviar notificació"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "Què tal, %s?" msgstr "Què tal, %s?"
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "Adjunta" msgstr "Adjunta"
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "Adjunta un fitxer" msgstr "Adjunta un fitxer"
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "No" msgstr "No"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:523 #: lib/noticelist.php:531
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "Cap contingut!" msgstr "Cap contingut!"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "S'ha creat" msgstr "S'ha creat"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "respondre a aquesta nota" msgstr "respondre a aquesta nota"
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "Respon" msgstr "Respon"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Notificació publicada" msgstr "Notificació publicada"

View File

@ -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-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:42:25+0000\n" "PO-Revision-Date: 2010-01-05 22:10:48+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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\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"
@ -194,11 +194,11 @@ msgstr "Nelze aktualizovat uživatele"
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "Nelze aktualizovat uživatele" msgstr "Nelze aktualizovat uživatele"
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "" msgstr ""
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "" msgstr ""
@ -313,31 +313,31 @@ msgid "Could not find target user."
msgstr "Nelze aktualizovat uživatele" msgstr "Nelze aktualizovat uživatele"
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 "Přezdívka může obsahovat pouze malá písmena a čísla bez mezer" msgstr "Přezdívka může obsahovat pouze malá písmena a čísla bez mezer"
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "Přezdívku již někdo používá. Zkuste jinou" msgstr "Přezdívku již někdo používá. Zkuste jinou"
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "Není platnou přezdívkou." msgstr "Není platnou přezdívkou."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "Stránka není platnou URL." msgstr "Stránka není platnou URL."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "Jméno je moc dlouhé (maximální délka je 255 znaků)" msgstr "Jméno je moc dlouhé (maximální délka je 255 znaků)"
@ -348,7 +348,7 @@ msgid "Description is too long (max %d chars)."
msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)"
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "Umístění příliš dlouhé (maximálně 255 znaků)" msgstr "Umístění příliš dlouhé (maximálně 255 znaků)"
@ -469,7 +469,7 @@ msgstr "Je to příliš dlouhé. Maximální sdělení délka je 140 znaků"
msgid "Not found" msgid "Not found"
msgstr "" msgstr ""
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -602,7 +602,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "Odstranit" msgstr "Odstranit"
@ -615,13 +615,13 @@ msgid "Crop"
msgstr "" msgstr ""
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -694,7 +694,7 @@ msgstr "Ano"
msgid "Block this user" msgid "Block this user"
msgstr "Zablokovat tohoto uživatele" msgstr "Zablokovat tohoto uživatele"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "" msgstr ""
@ -768,7 +768,7 @@ msgstr "Adresa již byla potvrzena"
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "Nelze aktualizovat uživatele" msgstr "Nelze aktualizovat uživatele"
@ -830,7 +830,7 @@ msgstr ""
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Žádné takové oznámení." msgstr "Žádné takové oznámení."
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Odstranit toto oznámení" msgstr "Odstranit toto oznámení"
@ -972,7 +972,7 @@ msgstr ""
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1477,7 +1477,7 @@ msgstr ""
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "" msgstr ""
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
@ -1570,7 +1570,7 @@ msgstr ""
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "Uživatel nemá profil." msgstr "Uživatel nemá profil."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
#, fuzzy #, fuzzy
msgid "Error removing the block." msgid "Error removing the block."
msgstr "Chyba při ukládaní uživatele" msgstr "Chyba při ukládaní uživatele"
@ -1749,7 +1749,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "Odeslat" msgstr "Odeslat"
@ -1849,7 +1849,7 @@ msgstr "Neplatné jméno nebo heslo"
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "Neautorizován." msgstr "Neautorizován."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Přihlásit" msgstr "Přihlásit"
@ -1959,7 +1959,7 @@ msgstr ""
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "" msgstr ""
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "" msgstr ""
@ -1967,7 +1967,7 @@ msgstr ""
msgid "New notice" msgid "New notice"
msgstr "Nové sdělení" msgstr "Nové sdělení"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
#, fuzzy #, fuzzy
msgid "Notice posted" msgid "Notice posted"
msgstr "Sdělení" msgstr "Sdělení"
@ -2406,70 +2406,79 @@ msgstr "Umístění"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Místo. Město, stát." msgstr "Místo. Město, stát."
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "" msgstr ""
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Jazyk" msgstr "Jazyk"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "" msgstr ""
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "" msgstr ""
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "" msgstr ""
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, fuzzy, php-format #, fuzzy, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)" msgstr "Text je příliš dlouhý (maximální délka je 140 zanků)"
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "" msgstr ""
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "" msgstr ""
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, fuzzy, php-format #, fuzzy, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Neplatná adresa '%s'" msgstr "Neplatná adresa '%s'"
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
#, fuzzy
msgid "Couldn't save location prefs."
msgstr "Nelze uložit profil"
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Nelze uložit profil" msgstr "Nelze uložit profil"
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
#, fuzzy #, fuzzy
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Nelze uložit profil" msgstr "Nelze uložit profil"
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "Nastavení uloženo" msgstr "Nastavení uloženo"
@ -2566,7 +2575,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -2705,7 +2714,7 @@ msgstr "Chyba v ověřovacím kódu"
msgid "Registration successful" msgid "Registration successful"
msgstr "Registrace úspěšná" 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:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "Registrovat" msgstr "Registrovat"
@ -2881,7 +2890,7 @@ msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Již jste přihlášen" msgstr "Již jste přihlášen"
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Vytvořit" msgstr "Vytvořit"
@ -4006,16 +4015,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Problém při ukládání sdělení" msgstr "Problém při ukládání sdělení"
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Chyba v DB při vkládání odpovědi: %s" msgstr "Chyba v DB při vkládání odpovědi: %s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -4074,135 +4083,135 @@ msgstr ""
msgid "Untitled page" msgid "Untitled page"
msgstr "" msgstr ""
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "" msgstr ""
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "Domů" msgstr "Domů"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "" msgstr ""
#: lib/action.php:433 #: lib/action.php:434
#, fuzzy #, fuzzy
msgid "Account" msgid "Account"
msgstr "O nás" msgstr "O nás"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "" msgstr ""
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Připojit" msgstr "Připojit"
#: lib/action.php:436 #: lib/action.php:437
#, fuzzy #, fuzzy
msgid "Connect to services" msgid "Connect to services"
msgstr "Nelze přesměrovat na server: %s" msgstr "Nelze přesměrovat na server: %s"
#: lib/action.php:440 #: lib/action.php:441
#, fuzzy #, fuzzy
msgid "Change site configuration" msgid "Change site configuration"
msgstr "Odběry" msgstr "Odběry"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "" msgstr ""
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "" msgstr ""
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "Odhlásit" msgstr "Odhlásit"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "" msgstr ""
#: lib/action.php:455 #: lib/action.php:456
#, fuzzy #, fuzzy
msgid "Create an account" msgid "Create an account"
msgstr "Vytvořit nový účet" msgstr "Vytvořit nový účet"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "" msgstr ""
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Nápověda" msgstr "Nápověda"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "Pomoci mi!" msgstr "Pomoci mi!"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "Hledat" msgstr "Hledat"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "" msgstr ""
#: lib/action.php:485 #: lib/action.php:486
#, fuzzy #, fuzzy
msgid "Site notice" msgid "Site notice"
msgstr "Nové sdělení" msgstr "Nové sdělení"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "" msgstr ""
#: lib/action.php:617 #: lib/action.php:618
#, fuzzy #, fuzzy
msgid "Page notice" msgid "Page notice"
msgstr "Nové sdělení" msgstr "Nové sdělení"
#: lib/action.php:719 #: lib/action.php:720
#, fuzzy #, fuzzy
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "Odběry" msgstr "Odběry"
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "O nás" msgstr "O nás"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "FAQ" msgstr "FAQ"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "" msgstr ""
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "Soukromí" msgstr "Soukromí"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "Zdroj" msgstr "Zdroj"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Kontakt" msgstr "Kontakt"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "" msgstr ""
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "" msgstr ""
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4211,12 +4220,12 @@ msgstr ""
"**%%site.name%%** je služba microblogů, kterou pro vás poskytuje [%%site." "**%%site.name%%** je služba microblogů, kterou pro vás poskytuje [%%site."
"broughtby%%](%%site.broughtbyurl%%). " "broughtby%%](%%site.broughtbyurl%%). "
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** je služba mikroblogů." msgstr "**%%site.name%%** je služba mikroblogů."
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4227,34 +4236,34 @@ msgstr ""
"dostupná pod [GNU Affero General Public License](http://www.fsf.org/" "dostupná pod [GNU Affero General Public License](http://www.fsf.org/"
"licensing/licenses/agpl-3.0.html)." "licensing/licenses/agpl-3.0.html)."
#: lib/action.php:790 #: lib/action.php:791
#, fuzzy #, fuzzy
msgid "Site content license" msgid "Site content license"
msgstr "Nové sdělení" msgstr "Nové sdělení"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1107 #: lib/action.php:1108
#, fuzzy #, fuzzy
msgid "After" msgid "After"
msgstr "« Novější" msgstr "« Novější"
#: lib/action.php:1115 #: lib/action.php:1116
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "Starší »" msgstr "Starší »"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -4309,6 +4318,16 @@ msgstr ""
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "" msgstr ""
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Heslo uloženo"
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Heslo uloženo"
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "" msgstr ""
@ -4997,7 +5016,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr " od " msgstr " od "
@ -5063,74 +5082,78 @@ msgstr ""
msgid "To" msgid "To"
msgstr "" msgstr ""
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
#, fuzzy #, fuzzy
msgid "Available characters" msgid "Available characters"
msgstr "6 a více znaků" msgstr "6 a více znaků"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
#, fuzzy #, fuzzy
msgid "Send a notice" msgid "Send a notice"
msgstr "Nové sdělení" msgstr "Nové sdělení"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
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:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "" msgstr ""
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "" msgstr ""
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "N" msgid "N"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:523 #: lib/noticelist.php:531
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "Žádný obsah!" msgstr "Žádný obsah!"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Vytvořit" msgstr "Vytvořit"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:578 #: lib/noticelist.php:586
#, fuzzy #, fuzzy
msgid "Reply" msgid "Reply"
msgstr "odpověď" msgstr "odpověď"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Sdělení" msgstr "Sdělení"

View File

@ -11,12 +11,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:42:29+0000\n" "PO-Revision-Date: 2010-01-05 22:10:52+0000\n"
"Language-Team: German\n" "Language-Team: German\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: de\n" "X-Language-Code: de\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -196,15 +196,14 @@ msgid "Could not update your design."
msgstr "Konnte Benutzerdesign nicht aktualisieren." msgstr "Konnte Benutzerdesign nicht aktualisieren."
#: actions/apiblockcreate.php:105 #: actions/apiblockcreate.php:105
#, fuzzy
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "Du kannst dich nicht selbst entfolgen!" msgstr "Du kannst dich nicht selbst sperren!"
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "Blockieren des Benutzers fehlgeschlagen." msgstr "Blockieren des Benutzers fehlgeschlagen."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "Freigeben des Benutzers fehlgeschlagen." msgstr "Freigeben des Benutzers fehlgeschlagen."
@ -319,7 +318,7 @@ msgid "Could not find target user."
msgstr "Konnte keine Statusmeldungen finden." msgstr "Konnte keine Statusmeldungen finden."
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 ""
@ -327,26 +326,26 @@ msgstr ""
"Leerzeichen sind nicht erlaubt." "Leerzeichen sind nicht erlaubt."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus." msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "Ungültiger Nutzername." msgstr "Ungültiger Nutzername."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "" msgstr ""
"Homepage ist keine gültige URL. URLs müssen ein Präfix wie http enthalten." "Homepage ist keine gültige URL. URLs müssen ein Präfix wie http enthalten."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "Der vollständige Name ist zu lang (maximal 255 Zeichen)." msgstr "Der vollständige Name ist zu lang (maximal 255 Zeichen)."
@ -357,7 +356,7 @@ msgid "Description is too long (max %d chars)."
msgstr "Die Beschreibung ist zu lang (max. %d Zeichen)." msgstr "Die Beschreibung ist zu lang (max. %d Zeichen)."
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)." msgstr "Der eingegebene Aufenthaltsort ist zu lang (maximal 255 Zeichen)."
@ -383,7 +382,7 @@ msgstr "Nutzername „%s“ wird bereits verwendet. Suche dir einen anderen aus.
#: actions/apigroupcreate.php:286 actions/editgroup.php:234 #: actions/apigroupcreate.php:286 actions/editgroup.php:234
#: actions/newgroup.php:178 #: actions/newgroup.php:178
msgid "Alias can't be the same as nickname." msgid "Alias can't be the same as nickname."
msgstr "" msgstr "Alias kann nicht das gleiche wie der Spitznamen sein."
#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 #: actions/apigroupismember.php:95 actions/apigroupjoin.php:104
#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 #: actions/apigroupleave.php:104 actions/apigroupmembership.php:91
@ -452,9 +451,8 @@ msgid "Cannot repeat your own notice."
msgstr "Konnte Benachrichtigung nicht aktivieren." msgstr "Konnte Benachrichtigung nicht aktivieren."
#: actions/apistatusesretweet.php:91 #: actions/apistatusesretweet.php:91
#, fuzzy
msgid "Already repeated that notice." msgid "Already repeated that notice."
msgstr "Nachricht löschen" msgstr "Nachricht bereits wiederholt"
#: actions/apistatusesshow.php:138 #: actions/apistatusesshow.php:138
msgid "Status deleted." msgid "Status deleted."
@ -475,7 +473,7 @@ msgstr ""
msgid "Not found" msgid "Not found"
msgstr "Nicht gefunden" msgstr "Nicht gefunden"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -531,7 +529,7 @@ msgstr "%s Nachrichten von allen!"
#: actions/apitimelineretweetedbyme.php:112 #: actions/apitimelineretweetedbyme.php:112
#, php-format #, php-format
msgid "Repeated by %s" msgid "Repeated by %s"
msgstr "" msgstr "Von %s wiederholt"
#: actions/apitimelineretweetedtome.php:111 #: actions/apitimelineretweetedtome.php:111
#, fuzzy, php-format #, fuzzy, php-format
@ -607,7 +605,7 @@ msgid "Preview"
msgstr "Vorschau" msgstr "Vorschau"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "Löschen" msgstr "Löschen"
@ -620,13 +618,13 @@ msgid "Crop"
msgstr "Zuschneiden" msgstr "Zuschneiden"
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -697,7 +695,7 @@ msgstr "Ja"
msgid "Block this user" msgid "Block this user"
msgstr "Diesen Benutzer blockieren" msgstr "Diesen Benutzer blockieren"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "Konnte Blockierungsdaten nicht speichern." msgstr "Konnte Blockierungsdaten nicht speichern."
@ -769,7 +767,7 @@ msgstr "Diese Adresse wurde bereits bestätigt."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "Konnte Benutzerdaten nicht aktualisieren." msgstr "Konnte Benutzerdaten nicht aktualisieren."
@ -831,7 +829,7 @@ msgstr "Bist du sicher, dass du diese Nachricht löschen möchtest?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Diese Nachricht nicht löschen" msgstr "Diese Nachricht nicht löschen"
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Nachricht löschen" msgstr "Nachricht löschen"
@ -967,7 +965,7 @@ msgstr "Standard wiederherstellen"
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1274,24 +1272,20 @@ msgid "A selection of some great users on %s"
msgstr "Eine Auswahl der tollen Benutzer auf %s" msgstr "Eine Auswahl der tollen Benutzer auf %s"
#: actions/file.php:34 #: actions/file.php:34
#, fuzzy
msgid "No notice ID." msgid "No notice ID."
msgstr "Keine Nachricht" msgstr "Keine Nachrichten ID"
#: actions/file.php:38 #: actions/file.php:38
#, fuzzy
msgid "No notice." msgid "No notice."
msgstr "Keine Nachricht" msgstr "Keine Nachricht"
#: actions/file.php:42 #: actions/file.php:42
#, fuzzy
msgid "No attachments." msgid "No attachments."
msgstr "Keine Anhänge vorhanden" msgstr "Keine Anhänge vorhanden"
#: actions/file.php:51 #: actions/file.php:51
#, fuzzy
msgid "No uploaded attachments." msgid "No uploaded attachments."
msgstr "Kein solcher Anhang." msgstr "Kein Anhang geladen."
#: actions/finishremotesubscribe.php:69 #: actions/finishremotesubscribe.php:69
msgid "Not expecting this response!" msgid "Not expecting this response!"
@ -1464,7 +1458,7 @@ msgstr "%s Gruppen-Mitglieder, Seite %d"
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "Liste der Benutzer in dieser Gruppe." msgstr "Liste der Benutzer in dieser Gruppe."
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "Admin" msgstr "Admin"
@ -1558,7 +1552,7 @@ msgstr "Nur Administratoren können Gruppenmitglieder entsperren."
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "Dieser Nutzer ist nicht von der Gruppe gesperrt." msgstr "Dieser Nutzer ist nicht von der Gruppe gesperrt."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "Fehler beim Freigeben des Benutzers." msgstr "Fehler beim Freigeben des Benutzers."
@ -1750,7 +1744,7 @@ msgstr ""
"Wenn du möchtest kannst du zu der Einladung eine persönliche Nachricht " "Wenn du möchtest kannst du zu der Einladung eine persönliche Nachricht "
"anfügen." "anfügen."
#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "Senden" msgstr "Senden"
@ -1872,7 +1866,7 @@ msgid "Error setting user. You are probably not authorized."
msgstr "" msgstr ""
"Fehler beim setzen des Benutzers. Du bist vermutlich nicht autorisiert." "Fehler beim setzen des Benutzers. Du bist vermutlich nicht autorisiert."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Anmelden" msgstr "Anmelden"
@ -1984,7 +1978,7 @@ msgstr "Nachricht gesendet"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "Direkte Nachricht an %s abgeschickt" msgstr "Direkte Nachricht an %s abgeschickt"
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "Ajax-Fehler" msgstr "Ajax-Fehler"
@ -1992,7 +1986,7 @@ msgstr "Ajax-Fehler"
msgid "New notice" msgid "New notice"
msgstr "Neue Nachricht" msgstr "Neue Nachricht"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "Nachricht hinzugefügt" msgstr "Nachricht hinzugefügt"
@ -2422,73 +2416,82 @@ msgstr "Aufenthaltsort"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Wo du bist, beispielsweise „Stadt, Gebiet, Land“" msgstr "Wo du bist, beispielsweise „Stadt, Gebiet, Land“"
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "Tags" msgstr "Tags"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
"Tags über dich selbst (Buchstaben, Zahlen, -, ., und _) durch Kommas oder " "Tags über dich selbst (Buchstaben, Zahlen, -, ., und _) durch Kommas oder "
"Leerzeichen getrennt" "Leerzeichen getrennt"
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Sprache" msgstr "Sprache"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "Bevorzugte Sprache" msgstr "Bevorzugte Sprache"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "Zeitzone" msgstr "Zeitzone"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "In welcher Zeitzone befindest du dich üblicherweise?" msgstr "In welcher Zeitzone befindest du dich üblicherweise?"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
"Abonniere automatisch alle Kontakte, die mich abonnieren (sinnvoll für Nicht-" "Abonniere automatisch alle Kontakte, die mich abonnieren (sinnvoll für Nicht-"
"Menschen)" "Menschen)"
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, php-format #, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "Die Biografie ist zu lang (max. %d Zeichen)" msgstr "Die Biografie ist zu lang (max. %d Zeichen)"
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "Keine Zeitzone ausgewählt." msgstr "Keine Zeitzone ausgewählt."
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "Die eingegebene Sprache ist zu lang (maximal 50 Zeichen)" msgstr "Die eingegebene Sprache ist zu lang (maximal 50 Zeichen)"
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Ungültiger Tag: „%s“" msgstr "Ungültiger Tag: „%s“"
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Autosubscribe konnte nicht aktiviert werden." msgstr "Autosubscribe konnte nicht aktiviert werden."
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
#, fuzzy
msgid "Couldn't save location prefs."
msgstr "Konnte Tags nicht speichern."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Konnte Profil nicht speichern." msgstr "Konnte Profil nicht speichern."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Konnte Tags nicht speichern." msgstr "Konnte Tags nicht speichern."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "Einstellungen gespeichert." msgstr "Einstellungen gespeichert."
@ -2584,7 +2587,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Tag-Wolke" msgstr "Tag-Wolke"
@ -2722,7 +2725,7 @@ msgstr "Entschuldigung, ungültiger Bestätigungscode."
msgid "Registration successful" msgid "Registration successful"
msgstr "Registrierung erfolgreich" msgstr "Registrierung erfolgreich"
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "Registrieren" msgstr "Registrieren"
@ -2920,7 +2923,7 @@ msgstr ""
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Du hast diesen Benutzer bereits blockiert." msgstr "Du hast diesen Benutzer bereits blockiert."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Erstellt" msgstr "Erstellt"
@ -4061,16 +4064,16 @@ msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
"Du wurdest für das Schreiben von Nachrichten auf dieser Seite gesperrt." "Du wurdest für das Schreiben von Nachrichten auf dieser Seite gesperrt."
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Problem bei Speichern der Nachricht." msgstr "Problem bei Speichern der Nachricht."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Datenbankfehler beim Einfügen der Antwort: %s" msgstr "Datenbankfehler beim Einfügen der Antwort: %s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -4126,131 +4129,131 @@ msgstr "%s - %s"
msgid "Untitled page" msgid "Untitled page"
msgstr "Seite ohne Titel" msgstr "Seite ohne Titel"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "Hauptnavigation" msgstr "Hauptnavigation"
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "Startseite" msgstr "Startseite"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "Persönliches Profil und Freundes-Zeitleiste" msgstr "Persönliches Profil und Freundes-Zeitleiste"
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "Konto" msgstr "Konto"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "Ändere deine E-Mail, dein Avatar, Passwort, Profil" msgstr "Ändere deine E-Mail, dein Avatar, Passwort, Profil"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Verbinden" msgstr "Verbinden"
#: lib/action.php:436 #: lib/action.php:437
#, fuzzy #, fuzzy
msgid "Connect to services" msgid "Connect to services"
msgstr "Konnte nicht zum Server umleiten: %s" msgstr "Konnte nicht zum Server umleiten: %s"
#: lib/action.php:440 #: lib/action.php:441
#, fuzzy #, fuzzy
msgid "Change site configuration" msgid "Change site configuration"
msgstr "Hauptnavigation" msgstr "Hauptnavigation"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "Einladen" msgstr "Einladen"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "Lade Freunde und Kollegen ein dir auf %s zu folgen" msgstr "Lade Freunde und Kollegen ein dir auf %s zu folgen"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "Abmelden" msgstr "Abmelden"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "Von der Seite abmelden" msgstr "Von der Seite abmelden"
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "Neues Konto erstellen" msgstr "Neues Konto erstellen"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "Auf der Seite anmelden" msgstr "Auf der Seite anmelden"
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Hilfe" msgstr "Hilfe"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "Hilf mir!" msgstr "Hilf mir!"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "Suchen" msgstr "Suchen"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "Suche nach Leuten oder Text" msgstr "Suche nach Leuten oder Text"
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "Seitennachricht" msgstr "Seitennachricht"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "Lokale Ansichten" msgstr "Lokale Ansichten"
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "Neue Nachricht" msgstr "Neue Nachricht"
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "Unternavigation" msgstr "Unternavigation"
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "Über" msgstr "Über"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "FAQ" msgstr "FAQ"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "AGB" msgstr "AGB"
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "Privatsphäre" msgstr "Privatsphäre"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "Quellcode" msgstr "Quellcode"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Kontakt" msgstr "Kontakt"
#: lib/action.php:741 #: lib/action.php:742
#, fuzzy #, fuzzy
msgid "Badge" msgid "Badge"
msgstr "Stups" msgstr "Stups"
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "StatusNet-Software-Lizenz" msgstr "StatusNet-Software-Lizenz"
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4259,12 +4262,12 @@ msgstr ""
"**%%site.name%%** ist ein Microbloggingdienst von [%%site.broughtby%%](%%" "**%%site.name%%** ist ein Microbloggingdienst von [%%site.broughtby%%](%%"
"site.broughtbyurl%%)." "site.broughtbyurl%%)."
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** ist ein Microbloggingdienst." msgstr "**%%site.name%%** ist ein Microbloggingdienst."
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4275,32 +4278,32 @@ msgstr ""
"(Version %s) betrieben, die unter der [GNU Affero General Public License]" "(Version %s) betrieben, die unter der [GNU Affero General Public License]"
"(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist." "(http://www.fsf.org/licensing/licenses/agpl-3.0.html) erhältlich ist."
#: lib/action.php:790 #: lib/action.php:791
msgid "Site content license" msgid "Site content license"
msgstr "StatusNet-Software-Lizenz" msgstr "StatusNet-Software-Lizenz"
#: lib/action.php:799 #: lib/action.php:800
#, fuzzy #, fuzzy
msgid "All " msgid "All "
msgstr "Alle " msgstr "Alle "
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "Lizenz." msgstr "Lizenz."
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "Seitenerstellung" msgstr "Seitenerstellung"
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "Später" msgstr "Später"
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "Vorher" msgstr "Vorher"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Es gab ein Problem mit deinem Sessiontoken." msgstr "Es gab ein Problem mit deinem Sessiontoken."
@ -4356,6 +4359,16 @@ msgstr "Nachrichten in denen dieser Anhang erscheint"
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "Tags für diesen Anhang" msgstr "Tags für diesen Anhang"
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Passwort geändert"
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Passwort geändert"
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "Befehl-Ergebnisse" msgstr "Befehl-Ergebnisse"
@ -5094,7 +5107,7 @@ msgstr ""
"schicken, um sie in eine Konversation zu verwickeln. Andere Leute können Dir " "schicken, um sie in eine Konversation zu verwickeln. Andere Leute können Dir "
"Nachrichten schicken, die nur Du sehen kannst." "Nachrichten schicken, die nur Du sehen kannst."
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr "von" msgstr "von"
@ -5160,73 +5173,77 @@ msgstr "Versende eine direkte Nachricht"
msgid "To" msgid "To"
msgstr "An" msgstr "An"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
#, fuzzy #, fuzzy
msgid "Available characters" msgid "Available characters"
msgstr "Verfügbare Zeichen" msgstr "Verfügbare Zeichen"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
#, fuzzy #, fuzzy
msgid "Send a notice" msgid "Send a notice"
msgstr "Nachricht versenden" msgstr "Nachricht versenden"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "Was ist los, %s?" msgstr "Was ist los, %s?"
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "" msgstr ""
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "" msgstr ""
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "Nein" msgstr "Nein"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "im Zusammenhang" msgstr "im Zusammenhang"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Erstellt" msgstr "Erstellt"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Auf diese Nachricht antworten" msgstr "Auf diese Nachricht antworten"
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "Antworten" msgstr "Antworten"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Nachricht gelöscht." msgstr "Nachricht gelöscht."

View File

@ -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-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:42:32+0000\n" "PO-Revision-Date: 2010-01-05 22:10:56+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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\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"
@ -191,11 +191,11 @@ msgstr "Απέτυχε η ενημέρωση του χρήστη."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "Δεν μπορείτε να εμποδίσετε τον εαυτό σας!" msgstr "Δεν μπορείτε να εμποδίσετε τον εαυτό σας!"
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "" msgstr ""
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "" msgstr ""
@ -311,31 +311,31 @@ msgid "Could not find target user."
msgstr "Απέτυχε η εύρεση οποιασδήποτε κατάστασης." msgstr "Απέτυχε η εύρεση οποιασδήποτε κατάστασης."
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 "Το ψευδώνυμο πρέπει να έχει μόνο πεζούς χαρακτήρες και χωρίς κενά."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο." msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "" msgstr ""
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "Το ονοματεπώνυμο είναι πολύ μεγάλο (μέγιστο 255 χαρακτ.)." msgstr "Το ονοματεπώνυμο είναι πολύ μεγάλο (μέγιστο 255 χαρακτ.)."
@ -346,7 +346,7 @@ msgid "Description is too long (max %d chars)."
msgstr "Η περιγραφή είναι πολύ μεγάλη (μέγιστο %d χαρακτ.)." msgstr "Η περιγραφή είναι πολύ μεγάλη (μέγιστο %d χαρακτ.)."
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 255 χαρακτ.)." msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 255 χαρακτ.)."
@ -463,7 +463,7 @@ msgstr ""
msgid "Not found" msgid "Not found"
msgstr "" msgstr ""
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -592,7 +592,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "Διαγραφή" msgstr "Διαγραφή"
@ -605,13 +605,13 @@ msgid "Crop"
msgstr "" msgstr ""
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -684,7 +684,7 @@ msgstr "Ναί"
msgid "Block this user" msgid "Block this user"
msgstr "" msgstr ""
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "" msgstr ""
@ -756,7 +756,7 @@ msgstr ""
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "Απέτυχε η ενημέρωση του χρήστη." msgstr "Απέτυχε η ενημέρωση του χρήστη."
@ -818,7 +818,7 @@ msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυ
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "" msgstr ""
@ -956,7 +956,7 @@ msgstr ""
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1455,7 +1455,7 @@ msgstr ""
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "" msgstr ""
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "Διαχειριστής" msgstr "Διαχειριστής"
@ -1544,7 +1544,7 @@ msgstr ""
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "" msgstr ""
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "" msgstr ""
@ -1719,7 +1719,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "" msgstr ""
@ -1815,7 +1815,7 @@ msgstr "Λάθος όνομα χρήστη ή κωδικός"
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "" msgstr ""
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Σύνδεση" msgstr "Σύνδεση"
@ -1927,7 +1927,7 @@ msgstr ""
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "" msgstr ""
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "" msgstr ""
@ -1935,7 +1935,7 @@ msgstr ""
msgid "New notice" msgid "New notice"
msgstr "" msgstr ""
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "" msgstr ""
@ -2363,34 +2363,38 @@ msgstr "Τοποθεσία"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "" msgstr ""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "" msgstr ""
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "" msgstr ""
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "" msgstr ""
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "" msgstr ""
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "" msgstr ""
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
#, fuzzy #, fuzzy
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
@ -2398,38 +2402,43 @@ msgstr ""
"Αυτόματα γίνε συνδρομητής σε όσους γίνονται συνδρομητές σε μένα (χρήση " "Αυτόματα γίνε συνδρομητής σε όσους γίνονται συνδρομητές σε μένα (χρήση "
"κυρίως από λογισμικό και όχι ανθρώπους)" "κυρίως από λογισμικό και όχι ανθρώπους)"
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, fuzzy, php-format #, fuzzy, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)."
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "" msgstr ""
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "" msgstr ""
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "" msgstr ""
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Απέτυχε η ενημέρωση του χρήστη για την αυτόματη συνδρομή." msgstr "Απέτυχε η ενημέρωση του χρήστη για την αυτόματη συνδρομή."
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
#, fuzzy
msgid "Couldn't save location prefs."
msgstr "Αδύνατη η αποθήκευση του προφίλ."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Απέτυχε η αποθήκευση του προφίλ." msgstr "Απέτυχε η αποθήκευση του προφίλ."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
#, fuzzy #, fuzzy
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Αδύνατη η αποθήκευση του προφίλ." msgstr "Αδύνατη η αποθήκευση του προφίλ."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "" msgstr ""
@ -2523,7 +2532,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -2661,7 +2670,7 @@ msgstr ""
msgid "Registration successful" msgid "Registration successful"
msgstr "" msgstr ""
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "" msgstr ""
@ -2849,7 +2858,7 @@ msgstr ""
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Δημιουργία" msgstr "Δημιουργία"
@ -3940,16 +3949,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "" msgstr ""
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Σφάλμα βάσης δεδομένων κατά την εισαγωγή απάντησης: %s" msgstr "Σφάλμα βάσης δεδομένων κατά την εισαγωγή απάντησης: %s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -4005,129 +4014,129 @@ msgstr ""
msgid "Untitled page" msgid "Untitled page"
msgstr "" msgstr ""
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "" msgstr ""
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "Αρχή" msgstr "Αρχή"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "" msgstr ""
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "Λογαριασμός" msgstr "Λογαριασμός"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "" msgstr ""
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Σύνδεση" msgstr "Σύνδεση"
#: lib/action.php:436 #: lib/action.php:437
#, fuzzy #, fuzzy
msgid "Connect to services" msgid "Connect to services"
msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s" msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s"
#: lib/action.php:440 #: lib/action.php:441
msgid "Change site configuration" msgid "Change site configuration"
msgstr "" msgstr ""
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "" msgstr ""
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "Προσκάλεσε φίλους και συναδέλφους σου να γίνουν μέλη στο %s" msgstr "Προσκάλεσε φίλους και συναδέλφους σου να γίνουν μέλη στο %s"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "Αποσύνδεση" msgstr "Αποσύνδεση"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "" msgstr ""
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "Δημιουργία έναν λογαριασμού" msgstr "Δημιουργία έναν λογαριασμού"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "" msgstr ""
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Βοήθεια" msgstr "Βοήθεια"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "Βοηθήστε με!" msgstr "Βοηθήστε με!"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "" msgstr ""
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "" msgstr ""
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "" msgstr ""
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "" msgstr ""
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "" msgstr ""
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "Περί" msgstr "Περί"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "Συχνές ερωτήσεις" msgstr "Συχνές ερωτήσεις"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "" msgstr ""
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "" msgstr ""
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "" msgstr ""
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Επικοινωνία" msgstr "Επικοινωνία"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "" msgstr ""
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "" msgstr ""
#: lib/action.php:772 #: lib/action.php:773
#, fuzzy, php-format #, fuzzy, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4136,13 +4145,13 @@ msgstr ""
"To **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου) που " "To **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου) που "
"έφερε κοντά σας το [%%site.broughtby%%](%%site.broughtbyurl%%). " "έφερε κοντά σας το [%%site.broughtby%%](%%site.broughtbyurl%%). "
#: lib/action.php:774 #: lib/action.php:775
#, fuzzy, php-format #, fuzzy, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "" msgstr ""
"Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου). " "Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου). "
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4150,31 +4159,31 @@ msgid ""
"org/licensing/licenses/agpl-3.0.html)." "org/licensing/licenses/agpl-3.0.html)."
msgstr "" msgstr ""
#: lib/action.php:790 #: lib/action.php:791
msgid "Site content license" msgid "Site content license"
msgstr "" msgstr ""
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "" msgstr ""
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "" msgstr ""
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -4229,6 +4238,16 @@ msgstr ""
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "" msgstr ""
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Ο κωδικός αποθηκεύτηκε."
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Ο κωδικός αποθηκεύτηκε."
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "" msgstr ""
@ -4897,7 +4916,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
msgid "from" msgid "from"
msgstr "από" msgstr "από"
@ -4962,69 +4981,73 @@ msgstr ""
msgid "To" msgid "To"
msgstr "" msgstr ""
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "Διαθέσιμοι χαρακτήρες" msgstr "Διαθέσιμοι χαρακτήρες"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "" msgstr ""
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "" msgstr ""
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "" msgstr ""
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "" msgstr ""
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "N" msgid "N"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "" msgstr ""
#: lib/noticelist.php:548 #: lib/noticelist.php:556
msgid "Repeated by" msgid "Repeated by"
msgstr "Επαναλαμβάνεται από" msgstr "Επαναλαμβάνεται από"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "" msgstr ""
#: lib/noticelist.php:620 #: lib/noticelist.php:628
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Ρυθμίσεις OpenID" msgstr "Ρυθμίσεις OpenID"

View File

@ -10,12 +10,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:42:35+0000\n" "PO-Revision-Date: 2010-01-05 22:11:01+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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\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"
@ -201,11 +201,11 @@ msgstr "Could not update your design."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "You cannot block yourself!" msgstr "You cannot block yourself!"
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "Block user failed." msgstr "Block user failed."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "Unblock user failed." msgstr "Unblock user failed."
@ -317,31 +317,31 @@ msgid "Could not find target user."
msgstr "Could not find target user." msgstr "Could not find target user."
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 "Nickname must have only lowercase letters and numbers, and no spaces." msgstr "Nickname must have only lowercase letters and numbers, and no spaces."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "Nickname already in use. Try another one." msgstr "Nickname already in use. Try another one."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "Not a valid nickname." msgstr "Not a valid nickname."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "Homepage is not a valid URL." msgstr "Homepage is not a valid URL."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "Full name is too long (max 255 chars)." msgstr "Full name is too long (max 255 chars)."
@ -352,7 +352,7 @@ msgid "Description is too long (max %d chars)."
msgstr "Description is too long (max %d chars)" msgstr "Description is too long (max %d chars)"
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "Location is too long (max 255 chars)." msgstr "Location is too long (max 255 chars)."
@ -467,7 +467,7 @@ msgstr "That's too long. Max notice size is %d chars."
msgid "Not found" msgid "Not found"
msgstr "Not found" msgstr "Not found"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "Max notice size is %d chars, including attachment URL." msgstr "Max notice size is %d chars, including attachment URL."
@ -596,7 +596,7 @@ msgid "Preview"
msgstr "Preview" msgstr "Preview"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "Delete" msgstr "Delete"
@ -609,13 +609,13 @@ msgid "Crop"
msgstr "Crop" msgstr "Crop"
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -688,7 +688,7 @@ msgstr "Yes"
msgid "Block this user" msgid "Block this user"
msgstr "Block this user" msgstr "Block this user"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "Failed to save block information." msgstr "Failed to save block information."
@ -760,7 +760,7 @@ msgstr "That address has already been confirmed."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "Couldn't update user." msgstr "Couldn't update user."
@ -822,7 +822,7 @@ msgstr "Are you sure you want to delete this notice?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Do not delete this notice" msgstr "Do not delete this notice"
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Delete this notice" msgstr "Delete this notice"
@ -839,9 +839,8 @@ msgid "You can only delete local users."
msgstr "You can only delete local users." msgstr "You can only delete local users."
#: actions/deleteuser.php:110 actions/deleteuser.php:133 #: actions/deleteuser.php:110 actions/deleteuser.php:133
#, fuzzy
msgid "Delete user" msgid "Delete user"
msgstr "Delete" msgstr "Delete user"
#: actions/deleteuser.php:135 #: actions/deleteuser.php:135
msgid "" msgid ""
@ -865,23 +864,21 @@ msgid "Design settings for this StatusNet site."
msgstr "Design settings for this StausNet site." msgstr "Design settings for this StausNet site."
#: actions/designadminpanel.php:275 #: actions/designadminpanel.php:275
#, fuzzy
msgid "Invalid logo URL." msgid "Invalid logo URL."
msgstr "Invalid size." msgstr "nvalid logo URL."
#: actions/designadminpanel.php:279 #: actions/designadminpanel.php:279
#, fuzzy, php-format #, php-format
msgid "Theme not available: %s" msgid "Theme not available: %s"
msgstr "This page is not available in a " msgstr "Theme not available: %s"
#: actions/designadminpanel.php:375 #: actions/designadminpanel.php:375
msgid "Change logo" msgid "Change logo"
msgstr "Change logo" msgstr "Change logo"
#: actions/designadminpanel.php:380 #: actions/designadminpanel.php:380
#, fuzzy
msgid "Site logo" msgid "Site logo"
msgstr "Invite" msgstr "Site logo"
#: actions/designadminpanel.php:387 #: actions/designadminpanel.php:387
#, fuzzy #, fuzzy
@ -965,7 +962,7 @@ msgstr "Reset back to default"
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1476,7 +1473,7 @@ msgstr "%s group members, page %d"
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "A list of the users in this group." msgstr "A list of the users in this group."
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "Admin" msgstr "Admin"
@ -1568,7 +1565,7 @@ msgstr ""
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "User is not blocked from group." msgstr "User is not blocked from group."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "Error removing the block." msgstr "Error removing the block."
@ -1750,7 +1747,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "Send" msgstr "Send"
@ -1874,7 +1871,7 @@ msgstr "Incorrect username or password."
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "You are not authorised." msgstr "You are not authorised."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Login" msgstr "Login"
@ -1986,7 +1983,7 @@ msgstr "Message sent"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "Direct message to %s sent" msgstr "Direct message to %s sent"
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "Ajax Error" msgstr "Ajax Error"
@ -1994,7 +1991,7 @@ msgstr "Ajax Error"
msgid "New notice" msgid "New notice"
msgstr "New notice" msgstr "New notice"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "Notice posted" msgstr "Notice posted"
@ -2424,71 +2421,80 @@ msgstr "Location"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Where you are, like \"City, State (or Region), Country\"" msgstr "Where you are, like \"City, State (or Region), Country\""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "Tags" msgstr "Tags"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Language" msgstr "Language"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "Preferred language" msgstr "Preferred language"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "Timezone" msgstr "Timezone"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "In which timezone are you?" msgstr "In which timezone are you?"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, php-format #, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "Bio is too long (max %d chars)." msgstr "Bio is too long (max %d chars)."
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "Timezone not selected." msgstr "Timezone not selected."
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "Language is too long (max 50 chars)." msgstr "Language is too long (max 50 chars)."
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Invalid tag: \"%s\"" msgstr "Invalid tag: \"%s\""
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Couldn't update user for autosubscribe." msgstr "Couldn't update user for autosubscribe."
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
#, fuzzy
msgid "Couldn't save location prefs."
msgstr "Couldn't save tags."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Couldn't save profile." msgstr "Couldn't save profile."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Couldn't save tags." msgstr "Couldn't save tags."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "Settings saved." msgstr "Settings saved."
@ -2591,7 +2597,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Tag cloud" msgstr "Tag cloud"
@ -2730,7 +2736,7 @@ msgstr "Error with confirmation code."
msgid "Registration successful" msgid "Registration successful"
msgstr "Registration successful" msgstr "Registration successful"
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "Register" msgstr "Register"
@ -2923,7 +2929,7 @@ msgstr "You can't repeat your own notice."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "You have already blocked this user." msgstr "You have already blocked this user."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Created" msgstr "Created"
@ -4049,16 +4055,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "You are banned from posting notices on this site." msgstr "You are banned from posting notices on this site."
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Problem saving notice." msgstr "Problem saving notice."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "DB error inserting reply: %s" msgstr "DB error inserting reply: %s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -4113,130 +4119,130 @@ msgstr "%s - %s"
msgid "Untitled page" msgid "Untitled page"
msgstr "Untitled page" msgstr "Untitled page"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "Primary site navigation" msgstr "Primary site navigation"
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "Home" msgstr "Home"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "Personal profile and friends timeline" msgstr "Personal profile and friends timeline"
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "Account" msgstr "Account"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "Change your e-mail, avatar, password, profile" msgstr "Change your e-mail, avatar, password, profile"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Connect" msgstr "Connect"
#: lib/action.php:436 #: lib/action.php:437
#, fuzzy #, fuzzy
msgid "Connect to services" msgid "Connect to services"
msgstr "Could not redirect to server: %s" msgstr "Could not redirect to server: %s"
#: lib/action.php:440 #: lib/action.php:441
#, fuzzy #, fuzzy
msgid "Change site configuration" msgid "Change site configuration"
msgstr "Primary site navigation" msgstr "Primary site navigation"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "Invite" msgstr "Invite"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "Invite friends and colleagues to join you on %s" msgstr "Invite friends and colleagues to join you on %s"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "Logout" msgstr "Logout"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "Logout from the site" msgstr "Logout from the site"
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "Create an account" msgstr "Create an account"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "Login to the site" msgstr "Login to the site"
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Help" msgstr "Help"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "Help me!" msgstr "Help me!"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "Search" msgstr "Search"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "Search for people or text" msgstr "Search for people or text"
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "Site notice" msgstr "Site notice"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "Local views" msgstr "Local views"
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "Page notice" msgstr "Page notice"
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "Secondary site navigation" msgstr "Secondary site navigation"
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "About" msgstr "About"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "F.A.Q." msgstr "F.A.Q."
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "" msgstr ""
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "Privacy" msgstr "Privacy"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "Source" msgstr "Source"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Contact" msgstr "Contact"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "Badge" msgstr "Badge"
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "StatusNet software licence" msgstr "StatusNet software licence"
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4245,12 +4251,12 @@ msgstr ""
"**%%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%%)."
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** is a microblogging service." msgstr "**%%site.name%%** is a microblogging service."
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4261,31 +4267,31 @@ msgstr ""
"s, available under the [GNU Affero General Public Licence](http://www.fsf." "s, available under the [GNU Affero General Public Licence](http://www.fsf."
"org/licensing/licenses/agpl-3.0.html)." "org/licensing/licenses/agpl-3.0.html)."
#: lib/action.php:790 #: lib/action.php:791
msgid "Site content license" msgid "Site content license"
msgstr "Site content license" msgstr "Site content license"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "All " msgstr "All "
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "licence." msgstr "licence."
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "Pagination" msgstr "Pagination"
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "After" msgstr "After"
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "Before" msgstr "Before"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "There was a problem with your session token." msgstr "There was a problem with your session token."
@ -4344,6 +4350,16 @@ msgstr ""
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "" msgstr ""
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Password change"
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Password change"
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "Command results" msgstr "Command results"
@ -5033,7 +5049,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr "from" msgstr "from"
@ -5098,71 +5114,75 @@ msgstr "Send a direct notice"
msgid "To" msgid "To"
msgstr "To" msgstr "To"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "Available characters" msgstr "Available characters"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "Send a notice" msgstr "Send a notice"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "What's up, %s?" msgstr "What's up, %s?"
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "" msgstr ""
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "" msgstr ""
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "No" msgstr "No"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "in context" msgstr "in context"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Created" msgstr "Created"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Reply to this notice" msgstr "Reply to this notice"
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "Reply" msgstr "Reply"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Notice deleted." msgstr "Notice deleted."

View File

@ -11,12 +11,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:42:38+0000\n" "PO-Revision-Date: 2010-01-05 22:11:06+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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\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"
@ -196,11 +196,11 @@ msgstr "No se pudo actualizar el usuario."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "¡No puedes bloquearte a tí mismo!" msgstr "¡No puedes bloquearte a tí mismo!"
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "Falló bloquear usuario." msgstr "Falló bloquear usuario."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "Falló desbloquear usuario." msgstr "Falló desbloquear usuario."
@ -312,7 +312,7 @@ msgid "Could not find target user."
msgstr "No se pudo encontrar ningún usuario de destino." 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:215
#: actions/register.php:205 #: actions/register.php:205
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 ""
@ -320,25 +320,25 @@ msgstr ""
"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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "El apodo ya existe. Prueba otro." msgstr "El apodo ya existe. Prueba otro."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "Apodo no válido" msgstr "Apodo no válido"
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "La página de inicio no es un URL válido." msgstr "La página de inicio no es un URL válido."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." 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.)"
@ -349,7 +349,7 @@ msgid "Description is too long (max %d chars)."
msgstr "La descripción es demasiado larga (máx. %d 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "La ubicación es demasiado larga (máx. 255 caracteres)." msgstr "La ubicación es demasiado larga (máx. 255 caracteres)."
@ -467,7 +467,7 @@ msgstr "Demasiado largo. La longitud máxima es de 140 caracteres. "
msgid "Not found" msgid "Not found"
msgstr "No encontrado" msgstr "No encontrado"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -598,7 +598,7 @@ msgid "Preview"
msgstr "Vista previa" msgstr "Vista previa"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "Borrar" msgstr "Borrar"
@ -611,13 +611,13 @@ msgid "Crop"
msgstr "Cortar" msgstr "Cortar"
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -691,7 +691,7 @@ msgstr "Sí"
msgid "Block this user" msgid "Block this user"
msgstr "Bloquear este usuario." msgstr "Bloquear este usuario."
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "No se guardó información de bloqueo." msgstr "No se guardó información de bloqueo."
@ -764,7 +764,7 @@ msgstr "Esa dirección ya fue confirmada."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "No se pudo actualizar el usuario." msgstr "No se pudo actualizar el usuario."
@ -828,7 +828,7 @@ msgstr "¿Estás seguro de que quieres eliminar este aviso?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "No se puede eliminar este aviso." msgstr "No se puede eliminar este aviso."
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Borrar este aviso" msgstr "Borrar este aviso"
@ -971,7 +971,7 @@ msgstr ""
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1475,7 +1475,7 @@ msgstr "Miembros del grupo %s, página %d"
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "Lista de los usuarios en este grupo." msgstr "Lista de los usuarios en este grupo."
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "Admin" msgstr "Admin"
@ -1569,7 +1569,7 @@ msgstr ""
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "El usuario te ha bloqueado." msgstr "El usuario te ha bloqueado."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
#, fuzzy #, fuzzy
msgid "Error removing the block." msgid "Error removing the block."
msgstr "Error al sacar bloqueo." msgstr "Error al sacar bloqueo."
@ -1757,7 +1757,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "Enviar" msgstr "Enviar"
@ -1884,7 +1884,7 @@ msgstr "Nombre de usuario o contraseña incorrectos."
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "No autorizado." msgstr "No autorizado."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Inicio de sesión" msgstr "Inicio de sesión"
@ -1999,7 +1999,7 @@ msgstr "Mensaje"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "Se envió mensaje directo a %s" msgstr "Se envió mensaje directo a %s"
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "Error de Ajax" msgstr "Error de Ajax"
@ -2007,7 +2007,7 @@ msgstr "Error de Ajax"
msgid "New notice" msgid "New notice"
msgstr "Nuevo aviso" msgstr "Nuevo aviso"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
#, fuzzy #, fuzzy
msgid "Notice posted" msgid "Notice posted"
msgstr "Aviso publicado" msgstr "Aviso publicado"
@ -2454,72 +2454,81 @@ msgstr "Ubicación"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Dónde estás, por ejemplo \"Ciudad, Estado (o Región), País\"" msgstr "Dónde estás, por ejemplo \"Ciudad, Estado (o Región), País\""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "Tags" msgstr "Tags"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "Tags para ti (letras, números, -, ., y _), coma - o espacio - separado" msgstr "Tags para ti (letras, números, -, ., y _), coma - o espacio - separado"
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Idioma" msgstr "Idioma"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "Lenguaje de preferencia" msgstr "Lenguaje de preferencia"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "Zona horaria" msgstr "Zona horaria"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "En que zona horaria se encuentra normalmente?" msgstr "En que zona horaria se encuentra normalmente?"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
"Suscribirse automáticamente a quien quiera que se suscriba a mí (es mejor " "Suscribirse automáticamente a quien quiera que se suscriba a mí (es mejor "
"para no-humanos)" "para no-humanos)"
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, fuzzy, php-format #, fuzzy, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "La biografía es demasiado larga (máx. 140 caracteres)." msgstr "La biografía es demasiado larga (máx. 140 caracteres)."
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "Zona horaria no seleccionada" msgstr "Zona horaria no seleccionada"
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "Idioma es muy largo ( max 50 car.)" msgstr "Idioma es muy largo ( max 50 car.)"
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, fuzzy, php-format #, fuzzy, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Tag no válido: '%s' " msgstr "Tag no válido: '%s' "
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "No se pudo actualizar el usuario para autosuscribirse." msgstr "No se pudo actualizar el usuario para autosuscribirse."
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
#, fuzzy
msgid "Couldn't save location prefs."
msgstr "No se pudo guardar tags."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "No se pudo guardar el perfil." msgstr "No se pudo guardar el perfil."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
#, fuzzy #, fuzzy
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "No se pudo guardar tags." msgstr "No se pudo guardar tags."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "Se guardó configuración." msgstr "Se guardó configuración."
@ -2618,7 +2627,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Nube de tags" msgstr "Nube de tags"
@ -2761,7 +2770,7 @@ msgstr "Error con el código de confirmación."
msgid "Registration successful" msgid "Registration successful"
msgstr "Registro exitoso." msgstr "Registro exitoso."
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "Registrarse" msgstr "Registrarse"
@ -2959,7 +2968,7 @@ msgstr "No puedes registrarte si no estás de acuerdo con la licencia."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Ya has bloqueado este usuario." msgstr "Ya has bloqueado este usuario."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Crear" msgstr "Crear"
@ -4109,16 +4118,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Tienes prohibido publicar avisos en este sitio." msgstr "Tienes prohibido publicar avisos en este sitio."
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Hubo un problema al guardar el aviso." msgstr "Hubo un problema al guardar el aviso."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Error de BD al insertar respuesta: %s" msgstr "Error de BD al insertar respuesta: %s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -4174,129 +4183,129 @@ msgstr "%s - %s"
msgid "Untitled page" msgid "Untitled page"
msgstr "Página sin título" msgstr "Página sin título"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "Navegación de sitio primario" msgstr "Navegación de sitio primario"
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "Inicio" msgstr "Inicio"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "Perfil personal y línea de tiempo de amigos" msgstr "Perfil personal y línea de tiempo de amigos"
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "Cuenta" msgstr "Cuenta"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "Cambia tu correo electrónico, avatar, contraseña, perfil" msgstr "Cambia tu correo electrónico, avatar, contraseña, perfil"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Conectarse" msgstr "Conectarse"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect to services" msgid "Connect to services"
msgstr "Conectar a los servicios" msgstr "Conectar a los servicios"
#: lib/action.php:440 #: lib/action.php:441
#, fuzzy #, fuzzy
msgid "Change site configuration" msgid "Change site configuration"
msgstr "Navegación de sitio primario" msgstr "Navegación de sitio primario"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "Invitar" msgstr "Invitar"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "Invita a amigos y colegas a unirse a %s" msgstr "Invita a amigos y colegas a unirse a %s"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "Salir" msgstr "Salir"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "Salir de sitio" msgstr "Salir de sitio"
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "Crear una cuenta" msgstr "Crear una cuenta"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "Ingresar a sitio" msgstr "Ingresar a sitio"
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Ayuda" msgstr "Ayuda"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "Ayúdame!" msgstr "Ayúdame!"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "Buscar" msgstr "Buscar"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "Buscar personas o texto" msgstr "Buscar personas o texto"
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "Aviso de sitio" msgstr "Aviso de sitio"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "Vistas locales" msgstr "Vistas locales"
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "Aviso de página" msgstr "Aviso de página"
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "Navegación de sitio secundario" msgstr "Navegación de sitio secundario"
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "Acerca de" msgstr "Acerca de"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "Preguntas Frecuentes" msgstr "Preguntas Frecuentes"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "" msgstr ""
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "Privacidad" msgstr "Privacidad"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "Fuente" msgstr "Fuente"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Ponerse en contacto" msgstr "Ponerse en contacto"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "Insignia" msgstr "Insignia"
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "Licencia de software de StatusNet" msgstr "Licencia de software de StatusNet"
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4305,12 +4314,12 @@ msgstr ""
"**%%site.name%%** es un servicio de microblogueo de [%%site.broughtby%%**](%%" "**%%site.name%%** es un servicio de microblogueo de [%%site.broughtby%%**](%%"
"site.broughtbyurl%%)." "site.broughtbyurl%%)."
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** es un servicio de microblogueo." msgstr "**%%site.name%%** es un servicio de microblogueo."
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4321,31 +4330,31 @@ msgstr ""
"disponible bajo la [GNU Affero General Public License](http://www.fsf.org/" "disponible bajo la [GNU Affero General Public License](http://www.fsf.org/"
"licensing/licenses/agpl-3.0.html)." "licensing/licenses/agpl-3.0.html)."
#: lib/action.php:790 #: lib/action.php:791
msgid "Site content license" msgid "Site content license"
msgstr "Licencia de contenido del sitio" msgstr "Licencia de contenido del sitio"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "Todo" msgstr "Todo"
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "Licencia." msgstr "Licencia."
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "Paginación" msgstr "Paginación"
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "Después" msgstr "Después"
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "Antes" msgstr "Antes"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Hubo problemas con tu clave de sesión." msgstr "Hubo problemas con tu clave de sesión."
@ -4404,6 +4413,16 @@ msgstr ""
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "" msgstr ""
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Cambio de contraseña "
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Cambio de contraseña "
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "Resultados de comando" msgstr "Resultados de comando"
@ -5090,7 +5109,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
msgid "from" msgid "from"
msgstr "desde" msgstr "desde"
@ -5154,72 +5173,76 @@ msgstr "Enviar un aviso directo"
msgid "To" msgid "To"
msgstr "Para" msgstr "Para"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
#, fuzzy #, fuzzy
msgid "Available characters" msgid "Available characters"
msgstr "Caracteres disponibles" msgstr "Caracteres disponibles"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
#, fuzzy #, fuzzy
msgid "Send a notice" msgid "Send a notice"
msgstr "Enviar un aviso" msgstr "Enviar un aviso"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "¿Qué tal, %s?" msgstr "¿Qué tal, %s?"
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "" msgstr ""
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "" msgstr ""
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "N" msgid "N"
msgstr "N" msgstr "N"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "S" msgstr "S"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "E" msgstr "E"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "en" msgstr "en"
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "en contexto" msgstr "en contexto"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Crear" msgstr "Crear"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Responder este aviso." msgstr "Responder este aviso."
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "Responder" msgstr "Responder"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Aviso borrado" msgstr "Aviso borrado"

View File

@ -10,8 +10,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-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:42:44+0000\n" "PO-Revision-Date: 2010-01-05 22:11:18+0000\n"
"Last-Translator: Ahmad Sufi Mahmudi\n" "Last-Translator: Ahmad Sufi Mahmudi\n"
"Language-Team: Persian\n" "Language-Team: Persian\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -20,7 +20,7 @@ msgstr ""
"X-Language-Code: fa\n" "X-Language-Code: fa\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: MediaWiki 1.16alpha (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
#: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/all.php:63 actions/public.php:97 actions/replies.php:92
@ -195,11 +195,11 @@ msgstr "نمی‌توان طرح‌تان به‌هنگام‌سازی کرد."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "شما نمی‌توانید خودتان رو مسدود کنید!" msgstr "شما نمی‌توانید خودتان رو مسدود کنید!"
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "مسدود کردن کاربر شکست خورد." msgstr "مسدود کردن کاربر شکست خورد."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "باز کردن کاربر ناموفق بود." msgstr "باز کردن کاربر ناموفق بود."
@ -311,31 +311,31 @@ msgid "Could not find target user."
msgstr "نمی‌توان کاربر هدف را پیدا کرد." msgstr "نمی‌توان کاربر هدف را پیدا کرد."
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 "لقب باید شامل حروف کوچک و اعداد و بدون فاصله باشد."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی دیگر انتخاب کنید." msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی دیگر انتخاب کنید."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "لقب نا معتبر." msgstr "لقب نا معتبر."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "برگهٔ آغازین یک نشانی معتبر نیست." msgstr "برگهٔ آغازین یک نشانی معتبر نیست."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "نام کامل طولانی است (۲۵۵ حرف در حالت بیشینه(." msgstr "نام کامل طولانی است (۲۵۵ حرف در حالت بیشینه(."
@ -346,7 +346,7 @@ msgid "Description is too long (max %d chars)."
msgstr "توصیف بسیار زیاد است (حداکثر %d حرف)." msgstr "توصیف بسیار زیاد است (حداکثر %d حرف)."
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "مکان طولانی است (حداکثر ۲۵۵ حرف)" msgstr "مکان طولانی است (حداکثر ۲۵۵ حرف)"
@ -461,7 +461,7 @@ msgstr "خیلی طولانی است. حداکثر طول مجاز پیام %d
msgid "Not found" msgid "Not found"
msgstr "یافت نشد" msgstr "یافت نشد"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "حداکثر طول پیام %d حرف است که شامل ضمیمه نیز می‌باشد" msgstr "حداکثر طول پیام %d حرف است که شامل ضمیمه نیز می‌باشد"
@ -591,7 +591,7 @@ msgid "Preview"
msgstr "پیش‌نمایش" msgstr "پیش‌نمایش"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "حذف" msgstr "حذف"
@ -604,13 +604,13 @@ msgid "Crop"
msgstr "برش" msgstr "برش"
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -684,7 +684,7 @@ msgstr "بله"
msgid "Block this user" msgid "Block this user"
msgstr "کاربر را مسدود کن" msgstr "کاربر را مسدود کن"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "" msgstr ""
@ -756,7 +756,7 @@ msgstr "آن نشانی در حال حاضر تصدیق شده است."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "نمی‌توان کاربر را به روز کرد." msgstr "نمی‌توان کاربر را به روز کرد."
@ -818,7 +818,7 @@ msgstr "آیا اطمینان دارید که می‌خواهید این پیا
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "این پیام را پاک نکن" msgstr "این پیام را پاک نکن"
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "این پیام را پاک کن" msgstr "این پیام را پاک کن"
@ -956,7 +956,7 @@ msgstr "برگشت به حالت پیش گزیده"
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1445,7 +1445,7 @@ msgstr "اعضای گروه %s، صفحهٔ %d"
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "یک فهرست از کاربران در این گروه" msgstr "یک فهرست از کاربران در این گروه"
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "مدیر" msgstr "مدیر"
@ -1541,7 +1541,7 @@ msgstr "تنها یک مدیر توانایی برداشتن منع کاربرا
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "کاربر از گروه منع نشده است." msgstr "کاربر از گروه منع نشده است."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "اشکال در پاکسازی" msgstr "اشکال در پاکسازی"
@ -1722,7 +1722,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "فرستادن" msgstr "فرستادن"
@ -1818,7 +1818,7 @@ msgstr "نام کاربری یا رمز عبور نادرست."
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "خطا در تنظیم کاربر. شما احتمالا اجازه ی این کار را ندارید." msgstr "خطا در تنظیم کاربر. شما احتمالا اجازه ی این کار را ندارید."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "ورود" msgstr "ورود"
@ -1929,7 +1929,7 @@ msgstr "پیام فرستاده‌شد"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "پیام مستقیم به %s فرستاده شد." msgstr "پیام مستقیم به %s فرستاده شد."
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "اشکال آژاکسی" msgstr "اشکال آژاکسی"
@ -1937,7 +1937,7 @@ msgstr "اشکال آژاکسی"
msgid "New notice" msgid "New notice"
msgstr "آگهی جدید" msgstr "آگهی جدید"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "آگهی فرستاده‌شد." msgstr "آگهی فرستاده‌شد."
@ -2017,7 +2017,7 @@ msgstr "نوع محتوا "
#: actions/oembed.php:160 #: actions/oembed.php:160
msgid "Only " msgid "Only "
msgstr "فقط" msgstr " فقط"
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1031 #: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1031
#: lib/api.php:1059 lib/api.php:1169 #: lib/api.php:1059 lib/api.php:1169
@ -2368,69 +2368,78 @@ msgstr "موقعیت"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "" msgstr ""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "برچسب‌ها" msgstr "برچسب‌ها"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "زبان" msgstr "زبان"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "زبان برگزیده" msgstr "زبان برگزیده"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "منطقهٔ‌زمانی" msgstr "منطقهٔ‌زمانی"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "شما معمولا در کدام منطقه ی زمانی هستید؟" msgstr "شما معمولا در کدام منطقه ی زمانی هستید؟"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, php-format #, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "" msgstr ""
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "منطقه‌ی زمانی انتخاب نشده است." msgstr "منطقه‌ی زمانی انتخاب نشده است."
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "کلام بسیار طولانی است( حداکثر ۵۰ کاراکتر)" msgstr "کلام بسیار طولانی است( حداکثر ۵۰ کاراکتر)"
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "نشان نادرست »%s«" msgstr "نشان نادرست »%s«"
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
#, fuzzy
msgid "Couldn't save location prefs."
msgstr "نمی‌توان نشان را ذخیره کرد."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "نمی‌توان شناسه را ذخیره کرد." msgstr "نمی‌توان شناسه را ذخیره کرد."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "نمی‌توان نشان را ذخیره کرد." msgstr "نمی‌توان نشان را ذخیره کرد."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "تنظیمات ذخیره شد." msgstr "تنظیمات ذخیره شد."
@ -2523,7 +2532,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -2663,7 +2672,7 @@ msgstr "با عرض تاسف، کد دعوت نا معتبر است."
msgid "Registration successful" msgid "Registration successful"
msgstr "ثبت نام با موفقیت انجام شد." msgstr "ثبت نام با موفقیت انجام شد."
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "ثبت نام" msgstr "ثبت نام"
@ -2831,7 +2840,7 @@ msgstr "شما نمی توانید آگهی خودتان را تکرار کنی
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "شما قبلا آن آگهی را تکرار کردید." msgstr "شما قبلا آن آگهی را تکرار کردید."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
msgid "Repeated" msgid "Repeated"
msgstr "" msgstr ""
@ -3911,16 +3920,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "شما از فرستادن پست در این سایت مردود شدید ." msgstr "شما از فرستادن پست در این سایت مردود شدید ."
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "مشکل در ذخیره کردن آگهی." msgstr "مشکل در ذخیره کردن آگهی."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "" msgstr ""
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -3975,140 +3984,140 @@ msgstr ""
msgid "Untitled page" msgid "Untitled page"
msgstr "صفحه ی بدون عنوان" msgstr "صفحه ی بدون عنوان"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "" msgstr ""
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "خانه" msgstr "خانه"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "" msgstr ""
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "حساب کاربری" msgstr "حساب کاربری"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "آدرس ایمیل، آواتار، کلمه ی عبور، پروفایل خود را تغییر دهید" msgstr "آدرس ایمیل، آواتار، کلمه ی عبور، پروفایل خود را تغییر دهید"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "وصل‌شدن" msgstr "وصل‌شدن"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect to services" msgid "Connect to services"
msgstr "متصل شدن به خدمات" msgstr "متصل شدن به خدمات"
#: lib/action.php:440 #: lib/action.php:441
msgid "Change site configuration" msgid "Change site configuration"
msgstr "تغییر پیکربندی سایت" msgstr "تغییر پیکربندی سایت"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "دعوت‌کردن" msgstr "دعوت‌کردن"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr " به شما ملحق شوند %s دوستان و همکاران را دعوت کنید تا در" msgstr " به شما ملحق شوند %s دوستان و همکاران را دعوت کنید تا در"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "خروج" msgstr "خروج"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "خارج شدن از سایت ." msgstr "خارج شدن از سایت ."
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "یک حساب کاربری بسازید" msgstr "یک حساب کاربری بسازید"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "ورود به وب‌گاه" msgstr "ورود به وب‌گاه"
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "کمک" msgstr "کمک"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "به من کمک کنید!" msgstr "به من کمک کنید!"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "جست‌وجو" msgstr "جست‌وجو"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "جستجو برای شخص با متن" msgstr "جستجو برای شخص با متن"
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "خبر سایت" msgstr "خبر سایت"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "دید محلی" msgstr "دید محلی"
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "خبر صفحه" msgstr "خبر صفحه"
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "" msgstr ""
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "دربارهٔ" msgstr "دربارهٔ"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "سوال‌های رایج" msgstr "سوال‌های رایج"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "" msgstr ""
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "خصوصی" msgstr "خصوصی"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "منبع" msgstr "منبع"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "تماس" msgstr "تماس"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "" msgstr ""
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "StatusNet مجوز نرم افزار" msgstr "StatusNet مجوز نرم افزار"
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
"broughtby%%](%%site.broughtbyurl%%). " "broughtby%%](%%site.broughtbyurl%%). "
msgstr "" msgstr ""
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "" msgstr ""
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4116,31 +4125,31 @@ msgid ""
"org/licensing/licenses/agpl-3.0.html)." "org/licensing/licenses/agpl-3.0.html)."
msgstr "" msgstr ""
#: lib/action.php:790 #: lib/action.php:791
msgid "Site content license" msgid "Site content license"
msgstr "مجوز محتویات سایت" msgstr "مجوز محتویات سایت"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "همه " msgstr "همه "
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "مجوز." msgstr "مجوز."
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "صفحه بندى" msgstr "صفحه بندى"
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "بعد از" msgstr "بعد از"
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "قبل از" msgstr "قبل از"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -4192,6 +4201,16 @@ msgstr ""
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "" msgstr ""
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "تغییر گذرواژه"
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "تغییر گذرواژه"
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "نتیجه دستور" msgstr "نتیجه دستور"
@ -4370,29 +4389,24 @@ msgid "You are not subscribed to anyone."
msgstr "شما توسط هیچ کس تصویب نشده اید ." msgstr "شما توسط هیچ کس تصویب نشده اید ."
#: lib/command.php:687 #: lib/command.php:687
#, fuzzy
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:707 #: lib/command.php:707
#, fuzzy
msgid "No one is subscribed to you." msgid "No one is subscribed to you."
msgstr "هیچکس شما را تایید نکرده ." msgstr "هیچکس شما را تایید نکرده ."
#: lib/command.php:709 #: lib/command.php:709
#, fuzzy
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:729 #: lib/command.php:729
#, fuzzy
msgid "You are not a member of any groups." msgid "You are not a member of any groups."
msgstr "شما در هیچ گروهی عضو نیستید ." msgstr "شما در هیچ گروهی عضو نیستید ."
#: lib/command.php:731 #: lib/command.php:731
#, fuzzy
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] "شما یک عضو این گروه نیستید."
@ -4866,7 +4880,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
msgid "from" msgid "from"
msgstr "از" msgstr "از"
@ -4931,69 +4945,73 @@ msgstr "یک آگهی مستقیم بفرستید."
msgid "To" msgid "To"
msgstr "به" msgstr "به"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "کاراکترهای موجود" msgstr "کاراکترهای موجود"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "یک آگهی بفرستید" msgstr "یک آگهی بفرستید"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "چه شده %s ?" msgstr "چه شده %s ?"
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "ضمیمه کردن" msgstr "ضمیمه کردن"
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "یک فایل ضمیمه کنید" msgstr "یک فایل ضمیمه کنید"
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "N" msgid "N"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "در" msgstr "در"
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "در زمینه" msgstr "در زمینه"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
msgid "Repeated by" msgid "Repeated by"
msgstr "تکرار از" msgstr "تکرار از"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "به این آگهی جواب دهید" msgstr "به این آگهی جواب دهید"
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "جواب دادن" msgstr "جواب دادن"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
msgid "Notice repeated" msgid "Notice repeated"
msgstr "آگهی تکرار شد" msgstr "آگهی تکرار شد"

View File

@ -10,12 +10,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:42:41+0000\n" "PO-Revision-Date: 2010-01-05 22:11:14+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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\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"
@ -198,11 +198,11 @@ msgstr "Ei voitu päivittää käyttäjää."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "Et voi lopettaa itsesi tilausta!" msgstr "Et voi lopettaa itsesi tilausta!"
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "Käyttäjän esto epäonnistui." msgstr "Käyttäjän esto epäonnistui."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "Käyttäjän eston poisto epäonnistui." msgstr "Käyttäjän eston poisto epäonnistui."
@ -317,7 +317,7 @@ msgid "Could not find target user."
msgstr "Ei löytynyt yhtään päivitystä." msgstr "Ei löytynyt yhtään päivitystä."
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 ""
@ -325,25 +325,25 @@ msgstr ""
"välilyöntiä." "välilyöntiä."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "Tunnus on jo käytössä. Yritä toista tunnusta." msgstr "Tunnus on jo käytössä. Yritä toista tunnusta."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "Tuo ei ole kelvollinen tunnus." msgstr "Tuo ei ole kelvollinen tunnus."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "Kotisivun verkko-osoite ei ole toimiva." msgstr "Kotisivun verkko-osoite ei ole toimiva."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "Koko nimi on liian pitkä (max 255 merkkiä)." msgstr "Koko nimi on liian pitkä (max 255 merkkiä)."
@ -354,7 +354,7 @@ msgid "Description is too long (max %d chars)."
msgstr "kuvaus on liian pitkä (max 140 merkkiä)." msgstr "kuvaus on liian pitkä (max 140 merkkiä)."
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)." msgstr "Kotipaikka on liian pitkä (max 255 merkkiä)."
@ -471,7 +471,7 @@ msgstr "Päivitys on liian pitkä. Maksimipituus on %d merkkiä."
msgid "Not found" msgid "Not found"
msgstr "Ei löytynyt" msgstr "Ei löytynyt"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "Maksimikoko päivitykselle on %d merkkiä, mukaan lukien URL-osoite." msgstr "Maksimikoko päivitykselle on %d merkkiä, mukaan lukien URL-osoite."
@ -601,7 +601,7 @@ msgid "Preview"
msgstr "Esikatselu" msgstr "Esikatselu"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "Poista" msgstr "Poista"
@ -614,13 +614,13 @@ msgid "Crop"
msgstr "Rajaa" msgstr "Rajaa"
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -693,7 +693,7 @@ msgstr "Kyllä"
msgid "Block this user" msgid "Block this user"
msgstr "Estä tämä käyttäjä" msgstr "Estä tämä käyttäjä"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "Käyttäjän estotiedon tallennus epäonnistui." msgstr "Käyttäjän estotiedon tallennus epäonnistui."
@ -766,7 +766,7 @@ msgstr "Tämä osoite on jo vahvistettu."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "Ei voitu päivittää käyttäjää." msgstr "Ei voitu päivittää käyttäjää."
@ -828,7 +828,7 @@ msgstr "Oletko varma että haluat poistaa tämän päivityksen?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Älä poista tätä päivitystä" msgstr "Älä poista tätä päivitystä"
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Poista tämä päivitys" msgstr "Poista tämä päivitys"
@ -973,7 +973,7 @@ msgstr ""
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1472,7 +1472,7 @@ msgstr "Ryhmän %s jäsenet, sivu %d"
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "Lista ryhmän käyttäjistä." msgstr "Lista ryhmän käyttäjistä."
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "Ylläpito" msgstr "Ylläpito"
@ -1562,7 +1562,7 @@ msgstr "Vain ylläpitäjä voi poistaa eston ryhmän jäseniltä."
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "Käyttäjää ei ole estetty ryhmästä." msgstr "Käyttäjää ei ole estetty ryhmästä."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "Tapahtui virhe, kun estoa poistettiin." msgstr "Tapahtui virhe, kun estoa poistettiin."
@ -1751,7 +1751,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "Lähetä" msgstr "Lähetä"
@ -1874,7 +1874,7 @@ msgstr "Väärä käyttäjätunnus tai salasana"
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "Sinulla ei ole valtuutusta tähän." msgstr "Sinulla ei ole valtuutusta tähän."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Kirjaudu sisään" msgstr "Kirjaudu sisään"
@ -1988,7 +1988,7 @@ msgstr "Viesti lähetetty"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "Suora viesti käyttäjälle %s lähetetty" msgstr "Suora viesti käyttäjälle %s lähetetty"
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "Ajax-virhe" msgstr "Ajax-virhe"
@ -1996,7 +1996,7 @@ msgstr "Ajax-virhe"
msgid "New notice" msgid "New notice"
msgstr "Uusi päivitys" msgstr "Uusi päivitys"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "Päivitys lähetetty" msgstr "Päivitys lähetetty"
@ -2439,73 +2439,82 @@ msgstr "Kotipaikka"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Olinpaikka kuten \"Kaupunki, Maakunta (tai Lääni), Maa\"" msgstr "Olinpaikka kuten \"Kaupunki, Maakunta (tai Lääni), Maa\""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "Tagit" msgstr "Tagit"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
"Kuvaa itseäsi henkilötageilla (sanoja joissa voi olla muita kirjaimia kuin " "Kuvaa itseäsi henkilötageilla (sanoja joissa voi olla muita kirjaimia kuin "
"ääkköset, numeroita, -, ., ja _), pilkulla tai välilyönnillä erotettuna" "ääkköset, numeroita, -, ., ja _), pilkulla tai välilyönnillä erotettuna"
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Kieli" msgstr "Kieli"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "Ensisijainen kieli" msgstr "Ensisijainen kieli"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "Aikavyöhyke" msgstr "Aikavyöhyke"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "Missä aikavyöhykkeessä olet normaalisti?" msgstr "Missä aikavyöhykkeessä olet normaalisti?"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
"Tilaa automaattisesti kaikki, jotka tilaavat päivitykseni (ei sovi hyvin " "Tilaa automaattisesti kaikki, jotka tilaavat päivitykseni (ei sovi hyvin "
"ihmiskäyttäjille)" "ihmiskäyttäjille)"
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, fuzzy, php-format #, fuzzy, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "\"Tietoja\" on liian pitkä (max 140 merkkiä)." msgstr "\"Tietoja\" on liian pitkä (max 140 merkkiä)."
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "Aikavyöhykettä ei ole valittu." msgstr "Aikavyöhykettä ei ole valittu."
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "Kieli on liian pitkä (max 50 merkkiä)." msgstr "Kieli on liian pitkä (max 50 merkkiä)."
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Virheellinen tagi: \"%s\"" msgstr "Virheellinen tagi: \"%s\""
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Ei voitu asettaa käyttäjälle automaattista tilausta." msgstr "Ei voitu asettaa käyttäjälle automaattista tilausta."
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
#, fuzzy
msgid "Couldn't save location prefs."
msgstr "Tageja ei voitu tallentaa."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Ei voitu tallentaa profiilia." msgstr "Ei voitu tallentaa profiilia."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Tageja ei voitu tallentaa." msgstr "Tageja ei voitu tallentaa."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "Asetukset tallennettu." msgstr "Asetukset tallennettu."
@ -2602,7 +2611,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Tagipilvi" msgstr "Tagipilvi"
@ -2742,7 +2751,7 @@ msgstr "Virheellinen kutsukoodin."
msgid "Registration successful" msgid "Registration successful"
msgstr "Rekisteröityminen onnistui" msgstr "Rekisteröityminen onnistui"
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "Rekisteröidy" msgstr "Rekisteröidy"
@ -2942,7 +2951,7 @@ msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Sinä olet jo estänyt tämän käyttäjän." msgstr "Sinä olet jo estänyt tämän käyttäjän."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Luotu" msgstr "Luotu"
@ -4081,16 +4090,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Päivityksesi tähän palveluun on estetty." msgstr "Päivityksesi tähän palveluun on estetty."
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Ongelma päivityksen tallentamisessa." msgstr "Ongelma päivityksen tallentamisessa."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Tietokantavirhe tallennettaessa vastausta: %s" msgstr "Tietokantavirhe tallennettaessa vastausta: %s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -4146,131 +4155,131 @@ msgstr "%s - %s"
msgid "Untitled page" msgid "Untitled page"
msgstr "Nimetön sivu" msgstr "Nimetön sivu"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "Ensisijainen sivunavigointi" msgstr "Ensisijainen sivunavigointi"
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "Koti" msgstr "Koti"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "Henkilökohtainen profiili ja kavereiden aikajana" msgstr "Henkilökohtainen profiili ja kavereiden aikajana"
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "Käyttäjätili" msgstr "Käyttäjätili"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "Muuta sähköpostiosoitettasi, kuvaasi, salasanaasi, profiiliasi" msgstr "Muuta sähköpostiosoitettasi, kuvaasi, salasanaasi, profiiliasi"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Yhdistä" msgstr "Yhdistä"
#: lib/action.php:436 #: lib/action.php:437
#, fuzzy #, fuzzy
msgid "Connect to services" msgid "Connect to services"
msgstr "Ei voitu uudelleenohjata palvelimelle: %s" msgstr "Ei voitu uudelleenohjata palvelimelle: %s"
#: lib/action.php:440 #: lib/action.php:441
#, fuzzy #, fuzzy
msgid "Change site configuration" msgid "Change site configuration"
msgstr "Ensisijainen sivunavigointi" msgstr "Ensisijainen sivunavigointi"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "Kutsu" msgstr "Kutsu"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s" msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "Kirjaudu ulos" msgstr "Kirjaudu ulos"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "Kirjaudu ulos palvelusta" msgstr "Kirjaudu ulos palvelusta"
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "Luo uusi käyttäjätili" msgstr "Luo uusi käyttäjätili"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "Kirjaudu sisään palveluun" msgstr "Kirjaudu sisään palveluun"
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Ohjeet" msgstr "Ohjeet"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "Auta minua!" msgstr "Auta minua!"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "Haku" msgstr "Haku"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "Hae ihmisiä tai tekstiä" msgstr "Hae ihmisiä tai tekstiä"
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "Palvelun ilmoitus" msgstr "Palvelun ilmoitus"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "Paikalliset näkymät" msgstr "Paikalliset näkymät"
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "Sivuilmoitus" msgstr "Sivuilmoitus"
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "Toissijainen sivunavigointi" msgstr "Toissijainen sivunavigointi"
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "Tietoa" msgstr "Tietoa"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "UKK" msgstr "UKK"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "" msgstr ""
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "Yksityisyys" msgstr "Yksityisyys"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "Lähdekoodi" msgstr "Lähdekoodi"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Ota yhteyttä" msgstr "Ota yhteyttä"
#: lib/action.php:741 #: lib/action.php:742
#, fuzzy #, fuzzy
msgid "Badge" msgid "Badge"
msgstr "Tönäise" msgstr "Tönäise"
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "StatusNet-ohjelmiston lisenssi" msgstr "StatusNet-ohjelmiston lisenssi"
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4279,12 +4288,12 @@ msgstr ""
"**%%site.name%%** on mikroblogipalvelu, jonka tarjoaa [%%site.broughtby%%](%%" "**%%site.name%%** on mikroblogipalvelu, jonka tarjoaa [%%site.broughtby%%](%%"
"site.broughtbyurl%%). " "site.broughtbyurl%%). "
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** on mikroblogipalvelu. " msgstr "**%%site.name%%** on mikroblogipalvelu. "
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4295,32 +4304,32 @@ msgstr ""
"versio %s, saatavilla lisenssillä [GNU Affero General Public License](http://" "versio %s, saatavilla lisenssillä [GNU Affero General Public License](http://"
"www.fsf.org/licensing/licenses/agpl-3.0.html)." "www.fsf.org/licensing/licenses/agpl-3.0.html)."
#: lib/action.php:790 #: lib/action.php:791
#, fuzzy #, fuzzy
msgid "Site content license" msgid "Site content license"
msgstr "StatusNet-ohjelmiston lisenssi" msgstr "StatusNet-ohjelmiston lisenssi"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "Kaikki " msgstr "Kaikki "
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "lisenssi." msgstr "lisenssi."
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "Sivutus" msgstr "Sivutus"
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "Myöhemmin" msgstr "Myöhemmin"
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "Aiemmin" msgstr "Aiemmin"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Istuntoavaimesi kanssa oli ongelma." msgstr "Istuntoavaimesi kanssa oli ongelma."
@ -4380,6 +4389,16 @@ msgstr ""
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "" msgstr ""
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Salasanan vaihto"
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Salasanan vaihto"
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "Komennon tulos" msgstr "Komennon tulos"
@ -5076,7 +5095,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr " lähteestä " msgstr " lähteestä "
@ -5141,72 +5160,76 @@ msgstr "Lähetä suora viesti"
msgid "To" msgid "To"
msgstr "Vastaanottaja" msgstr "Vastaanottaja"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "Sallitut merkit" msgstr "Sallitut merkit"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "Lähetä päivitys" msgstr "Lähetä päivitys"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
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:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "" msgstr ""
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "" msgstr ""
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "Ei" msgstr "Ei"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:523 #: lib/noticelist.php:531
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "Ei sisältöä!" msgstr "Ei sisältöä!"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Luotu" msgstr "Luotu"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Vastaa tähän päivitykseen" msgstr "Vastaa tähän päivitykseen"
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "Vastaus" msgstr "Vastaus"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Päivitys on poistettu." msgstr "Päivitys on poistettu."

View File

@ -13,12 +13,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:42:51+0000\n" "PO-Revision-Date: 2010-01-05 22:11:23+0000\n"
"Language-Team: French\n" "Language-Team: French\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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: fr\n" "X-Language-Code: fr\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -204,11 +204,11 @@ msgstr "Impossible de mettre à jour votre conception."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "Vous ne pouvez pas vous bloquer vous-même !" msgstr "Vous ne pouvez pas vous bloquer vous-même !"
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "Le blocage de lutilisateur a échoué." msgstr "Le blocage de lutilisateur a échoué."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "Le déblocage de lutilisateur a échoué." msgstr "Le déblocage de lutilisateur a échoué."
@ -322,7 +322,7 @@ msgid "Could not find target user."
msgstr "Impossible de trouver lutilisateur cible." msgstr "Impossible de trouver lutilisateur cible."
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 ""
@ -330,25 +330,25 @@ msgstr ""
"chiffres, sans espaces." "chiffres, sans espaces."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "Pseudo déjà utilisé. Essayez-en un autre." msgstr "Pseudo déjà utilisé. Essayez-en un autre."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "Pseudo invalide." msgstr "Pseudo invalide."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "Ladresse du site personnel nest pas un URL valide. " msgstr "Ladresse du site personnel nest pas un URL valide. "
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "Nom complet trop long (maximum de 255 caractères)." msgstr "Nom complet trop long (maximum de 255 caractères)."
@ -359,7 +359,7 @@ msgid "Description is too long (max %d chars)."
msgstr "La description est trop longue (%d caractères maximum)." msgstr "La description est trop longue (%d caractères maximum)."
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "Emplacement trop long (maximum de 255 caractères)." msgstr "Emplacement trop long (maximum de 255 caractères)."
@ -474,7 +474,7 @@ msgstr "Cest trop long ! La taille maximale de lavis est de %d caractères
msgid "Not found" msgid "Not found"
msgstr "Non trouvé" msgstr "Non trouvé"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -607,7 +607,7 @@ msgid "Preview"
msgstr "Aperçu" msgstr "Aperçu"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "Supprimer" msgstr "Supprimer"
@ -620,13 +620,13 @@ msgid "Crop"
msgstr "Recadrer" msgstr "Recadrer"
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -701,7 +701,7 @@ msgstr "Oui"
msgid "Block this user" msgid "Block this user"
msgstr "Bloquer cet utilisateur" msgstr "Bloquer cet utilisateur"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "Impossible denregistrer les informations de blocage." msgstr "Impossible denregistrer les informations de blocage."
@ -773,7 +773,7 @@ msgstr "Cette adresse a déjà été confirmée."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "Impossible de mettre à jour lutilisateur." msgstr "Impossible de mettre à jour lutilisateur."
@ -835,7 +835,7 @@ msgstr "Êtes-vous sûr(e) de vouloir supprimer cet avis ?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Ne pas supprimer cet avis" msgstr "Ne pas supprimer cet avis"
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Supprimer cet avis" msgstr "Supprimer cet avis"
@ -975,7 +975,7 @@ msgstr "Revenir aux valeurs par défaut"
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1477,7 +1477,7 @@ msgstr "Membres du groupe %s - page %d"
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "Liste des utilisateurs inscrits à ce groupe." msgstr "Liste des utilisateurs inscrits à ce groupe."
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "Administrer" msgstr "Administrer"
@ -1577,7 +1577,7 @@ msgstr "Seul un administrateur peut débloquer les membres du groupes."
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "Cet utilisateur nest pas bloqué du groupe." msgstr "Cet utilisateur nest pas bloqué du groupe."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "Erreur lors de lannulation du blocage." msgstr "Erreur lors de lannulation du blocage."
@ -1768,7 +1768,7 @@ msgstr "Message personnel"
msgid "Optionally add a personal message to the invitation." msgid "Optionally add a personal message to the invitation."
msgstr "Ajouter un message personnel à linvitation (optionnel)." msgstr "Ajouter un message personnel à linvitation (optionnel)."
#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "Envoyer" msgstr "Envoyer"
@ -1894,7 +1894,7 @@ msgstr ""
"Erreur lors de la mise en place de l'utilisateur. Vous n'y êtes probablement " "Erreur lors de la mise en place de l'utilisateur. Vous n'y êtes probablement "
"pas autorisé." "pas autorisé."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Ouvrir une session" msgstr "Ouvrir une session"
@ -2012,7 +2012,7 @@ msgstr "Message envoyé"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "Votre message a été envoyé à %s" msgstr "Votre message a été envoyé à %s"
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "Erreur Ajax" msgstr "Erreur Ajax"
@ -2020,7 +2020,7 @@ msgstr "Erreur Ajax"
msgid "New notice" msgid "New notice"
msgstr "Nouvel avis" msgstr "Nouvel avis"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "Avis publié" msgstr "Avis publié"
@ -2454,73 +2454,81 @@ msgstr "Emplacement"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Indiquez votre emplacement, ex.: « Ville, État (ou région), Pays »" msgstr "Indiquez votre emplacement, ex.: « Ville, État (ou région), Pays »"
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr "Partager ma localisation lorsque je poste des avis"
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "Marques" msgstr "Marques"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
"Marques pour vous-même (lettres, chiffres, -, ., et _), séparées par des " "Marques pour vous-même (lettres, chiffres, -, ., et _), séparées par des "
"virgules ou des espaces" "virgules ou des espaces"
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Langue" msgstr "Langue"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "Langue préférée" msgstr "Langue préférée"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "Fuseau horaire" msgstr "Fuseau horaire"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "Quel est votre fuseau horaire habituel ?" msgstr "Quel est votre fuseau horaire habituel ?"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
"Mabonner automatiquement à tous ceux qui sabonnent à moi (recommandé pour " "Mabonner automatiquement à tous ceux qui sabonnent à moi (recommandé pour "
"les utilisateurs non-humains)" "les utilisateurs non-humains)"
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, php-format #, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "La bio est trop longue (%d caractères maximum)." msgstr "La bio est trop longue (%d caractères maximum)."
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "Aucun fuseau horaire na été choisi." msgstr "Aucun fuseau horaire na été choisi."
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "La langue est trop longue (255 caractères maximum)." msgstr "La langue est trop longue (255 caractères maximum)."
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Marque invalide : « %s »" msgstr "Marque invalide : « %s »"
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Impossible de mettre à jour lauto-abonnement." msgstr "Impossible de mettre à jour lauto-abonnement."
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
msgid "Couldn't save location prefs."
msgstr "Impossible denregistrer les préférences de localisation."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Impossible denregistrer le profil." msgstr "Impossible denregistrer le profil."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Impossible denregistrer les marques." msgstr "Impossible denregistrer les marques."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "Préférences enregistrées." msgstr "Préférences enregistrées."
@ -2627,7 +2635,7 @@ msgstr ""
"Pourquoi ne pas [créer un compte](%%action.register%%) et être le premier à " "Pourquoi ne pas [créer un compte](%%action.register%%) et être le premier à "
"en poster un !" "en poster un !"
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Nuage de marques" msgstr "Nuage de marques"
@ -2771,7 +2779,7 @@ msgstr "Désolé, code dinvitation invalide."
msgid "Registration successful" msgid "Registration successful"
msgstr "Compte créé avec succès" msgstr "Compte créé avec succès"
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "Créer un compte" msgstr "Créer un compte"
@ -2964,7 +2972,7 @@ msgstr "Vous ne pouvez pas reprendre votre propre avis."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Vous avez déjà repris cet avis." msgstr "Vous avez déjà repris cet avis."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
msgid "Repeated" msgid "Repeated"
msgstr "Repris" msgstr "Repris"
@ -4126,16 +4134,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Il vous est interdit de poster des avis sur ce site." msgstr "Il vous est interdit de poster des avis sur ce site."
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Problème lors de lenregistrement de lavis." msgstr "Problème lors de lenregistrement de lavis."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Erreur de base de donnée en insérant la réponse :%s" msgstr "Erreur de base de donnée en insérant la réponse :%s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -4190,128 +4198,128 @@ msgstr "%s - %s"
msgid "Untitled page" msgid "Untitled page"
msgstr "Page sans nom" msgstr "Page sans nom"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "Navigation primaire du site" msgstr "Navigation primaire du site"
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "Accueil" msgstr "Accueil"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "Profil personnel et flux des amis" msgstr "Profil personnel et flux des amis"
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "Compte" msgstr "Compte"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "Modifier votre courriel, avatar, mot de passe, profil" msgstr "Modifier votre courriel, avatar, mot de passe, profil"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Connecter" msgstr "Connecter"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect to services" msgid "Connect to services"
msgstr "Se connecter aux services" msgstr "Se connecter aux services"
#: lib/action.php:440 #: lib/action.php:441
msgid "Change site configuration" msgid "Change site configuration"
msgstr "Modifier la configuration du site" msgstr "Modifier la configuration du site"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "Inviter" msgstr "Inviter"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "Inviter des amis et collègues à vous rejoindre dans %s" msgstr "Inviter des amis et collègues à vous rejoindre dans %s"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "Fermeture de session" msgstr "Fermeture de session"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "Fermer la session" msgstr "Fermer la session"
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "Créer un compte" msgstr "Créer un compte"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "Ouvrir une session" msgstr "Ouvrir une session"
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Aide" msgstr "Aide"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "À laide !" msgstr "À laide !"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "Rechercher" msgstr "Rechercher"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "Rechercher des personnes ou du texte" msgstr "Rechercher des personnes ou du texte"
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "Notice du site" msgstr "Notice du site"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "Vues locales" msgstr "Vues locales"
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "Avis de la page" msgstr "Avis de la page"
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "Navigation secondaire du site" msgstr "Navigation secondaire du site"
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "À propos" msgstr "À propos"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "FAQ" msgstr "FAQ"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "CGU" msgstr "CGU"
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "Confidentialité" msgstr "Confidentialité"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "Source" msgstr "Source"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Contact" msgstr "Contact"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "Insigne" msgstr "Insigne"
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "Licence du logiciel StatusNet" msgstr "Licence du logiciel StatusNet"
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4320,12 +4328,12 @@ msgstr ""
"**%%site.name%%** est un service de microblogging qui vous est proposé par " "**%%site.name%%** est un service de microblogging qui vous est proposé par "
"[%%site.broughtby%%](%%site.broughtbyurl%%)." "[%%site.broughtby%%](%%site.broughtbyurl%%)."
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** est un service de micro-blogging." msgstr "**%%site.name%%** est un service de micro-blogging."
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4336,31 +4344,31 @@ msgstr ""
"version %s, disponible sous la licence [GNU Affero General Public License] " "version %s, disponible sous la licence [GNU Affero General Public License] "
"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)."
#: lib/action.php:790 #: lib/action.php:791
msgid "Site content license" msgid "Site content license"
msgstr "Licence du contenu du site" msgstr "Licence du contenu du site"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "Tous " msgstr "Tous "
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "licence." msgstr "licence."
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "Pagination" msgstr "Pagination"
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "Après" msgstr "Après"
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "Avant" msgstr "Avant"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Un problème est survenu avec votre jeton de session." msgstr "Un problème est survenu avec votre jeton de session."
@ -4412,6 +4420,16 @@ msgstr "Avis sur lesquels cette pièce jointe apparaît."
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "Marques de cette pièce jointe" msgstr "Marques de cette pièce jointe"
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Modification du mot de passe"
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Modification du mot de passe"
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "Résultats de la commande" msgstr "Résultats de la commande"
@ -5215,7 +5233,7 @@ msgstr ""
"pour démarrer des conversations avec dautres utilisateurs. Ceux-ci peuvent " "pour démarrer des conversations avec dautres utilisateurs. Ceux-ci peuvent "
"vous envoyer des messages destinés à vous seul(e)." "vous envoyer des messages destinés à vous seul(e)."
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
msgid "from" msgid "from"
msgstr "de" msgstr "de"
@ -5283,69 +5301,73 @@ msgstr "Envoyer un message direct"
msgid "To" msgid "To"
msgstr "À" msgstr "À"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "Caractères restants" msgstr "Caractères restants"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "Envoyer un avis" msgstr "Envoyer un avis"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "Quoi de neuf, %s ?" msgstr "Quoi de neuf, %s ?"
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "Attacher" msgstr "Attacher"
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "Attacher un fichier" msgstr "Attacher un fichier"
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr "Partager votre localisation"
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u° %2$u' %3$u\" %4$s %5$u° %6$u' %7$u\" %8$s" msgstr "%1$u° %2$u' %3$u\" %4$s %5$u° %6$u' %7$u\" %8$s"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "N" msgid "N"
msgstr "N" msgstr "N"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "S" msgstr "S"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "E" msgstr "E"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "O" msgstr "O"
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "chez" msgstr "chez"
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "dans le contexte" msgstr "dans le contexte"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
msgid "Repeated by" msgid "Repeated by"
msgstr "Repris par" msgstr "Repris par"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Répondre à cet avis" msgstr "Répondre à cet avis"
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "Répondre" msgstr "Répondre"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Avis repris" msgstr "Avis repris"
@ -5475,9 +5497,8 @@ msgid "Popular"
msgstr "Populaires" msgstr "Populaires"
#: lib/repeatform.php:107 #: lib/repeatform.php:107
#, fuzzy
msgid "Repeat this notice?" msgid "Repeat this notice?"
msgstr "Reprendre cet avis" msgstr "Reprendre cet avis ?"
#: lib/repeatform.php:132 #: lib/repeatform.php:132
msgid "Repeat this notice" msgid "Repeat this notice"

View File

@ -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-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:42:54+0000\n" "PO-Revision-Date: 2010-01-05 22:11:28+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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\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"
@ -195,11 +195,11 @@ msgstr "Non se puido actualizar o usuario."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "Non se puido actualizar o usuario." msgstr "Non se puido actualizar o usuario."
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "Bloqueo de usuario fallido." msgstr "Bloqueo de usuario fallido."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "Desbloqueo de usuario fallido." msgstr "Desbloqueo de usuario fallido."
@ -320,31 +320,31 @@ msgid "Could not find target user."
msgstr "Non se puido atopar ningún estado" msgstr "Non se puido atopar ningún estado"
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 "O alcume debe ter só letras minúsculas e números, e sen espazos." msgstr "O alcume debe ter só letras minúsculas e números, e sen espazos."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "Non é un alcume válido." msgstr "Non é un alcume válido."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "A páxina persoal semella que non é unha URL válida." msgstr "A páxina persoal semella que non é unha URL válida."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "O nome completo é demasiado longo (max 255 car)." msgstr "O nome completo é demasiado longo (max 255 car)."
@ -355,7 +355,7 @@ msgid "Description is too long (max %d chars)."
msgstr "O teu Bio é demasiado longo (max 140 car.)." msgstr "O teu Bio é demasiado longo (max 140 car.)."
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "A localización é demasiado longa (max 255 car.)." msgstr "A localización é demasiado longa (max 255 car.)."
@ -475,7 +475,7 @@ msgstr ""
msgid "Not found" msgid "Not found"
msgstr "Non atopado" msgstr "Non atopado"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -607,7 +607,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
#, fuzzy #, fuzzy
msgid "Delete" msgid "Delete"
msgstr "eliminar" msgstr "eliminar"
@ -621,13 +621,13 @@ msgid "Crop"
msgstr "" msgstr ""
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -704,7 +704,7 @@ msgstr "Si"
msgid "Block this user" msgid "Block this user"
msgstr "Bloquear usuario" msgstr "Bloquear usuario"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "Erro ao gardar información de bloqueo." msgstr "Erro ao gardar información de bloqueo."
@ -781,7 +781,7 @@ msgstr "Esa dirección xa foi confirmada."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "Non se puido actualizar o usuario." msgstr "Non se puido actualizar o usuario."
@ -846,7 +846,7 @@ msgstr "Estas seguro que queres eliminar este chío?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Non se pode eliminar este chíos." msgstr "Non se pode eliminar este chíos."
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
#, fuzzy #, fuzzy
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Eliminar chío" msgstr "Eliminar chío"
@ -995,7 +995,7 @@ msgstr ""
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1512,7 +1512,7 @@ msgstr ""
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "" msgstr ""
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
@ -1605,7 +1605,7 @@ msgstr ""
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "O usuario bloqueoute." msgstr "O usuario bloqueoute."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "Acounteceu un erro borrando o bloqueo." msgstr "Acounteceu un erro borrando o bloqueo."
@ -1789,7 +1789,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "Enviar" msgstr "Enviar"
@ -1916,7 +1916,7 @@ msgstr "Usuario ou contrasinal incorrectos."
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "Non está autorizado." msgstr "Non está autorizado."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Inicio de sesión" msgstr "Inicio de sesión"
@ -2031,7 +2031,7 @@ msgstr "Non hai mensaxes de texto!"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "Mensaxe directo a %s enviado" msgstr "Mensaxe directo a %s enviado"
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "Erro de Ajax" msgstr "Erro de Ajax"
@ -2039,7 +2039,7 @@ msgstr "Erro de Ajax"
msgid "New notice" msgid "New notice"
msgstr "Novo chío" msgstr "Novo chío"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "Chío publicado" msgstr "Chío publicado"
@ -2482,73 +2482,82 @@ msgstr "Localización"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "¿Onde estas, coma \"Cidade, Provincia, País\"" msgstr "¿Onde estas, coma \"Cidade, Provincia, País\""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "Tags" msgstr "Tags"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
"Etiquetas para o teu usuario (letras, números, -, ., e _), separados por " "Etiquetas para o teu usuario (letras, números, -, ., e _), separados por "
"coma ou espazo" "coma ou espazo"
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Linguaxe" msgstr "Linguaxe"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "Linguaxe preferida" msgstr "Linguaxe preferida"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "Fuso Horario" msgstr "Fuso Horario"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "En que fuso horario estas normalmente?" msgstr "En que fuso horario estas normalmente?"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
"Suscribirse automáticamente a calquera que se suscriba a min (o mellor para " "Suscribirse automáticamente a calquera que se suscriba a min (o mellor para "
"non humáns)" "non humáns)"
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, fuzzy, php-format #, fuzzy, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "O teu Bio é demasiado longo (max 140 car.)." msgstr "O teu Bio é demasiado longo (max 140 car.)."
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "Fuso Horario non seleccionado" msgstr "Fuso Horario non seleccionado"
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "A Linguaxe é demasiado longa (max 50 car.)." msgstr "A Linguaxe é demasiado longa (max 50 car.)."
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Etiqueta inválida: '%s'" msgstr "Etiqueta inválida: '%s'"
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Non se puido actualizar o usuario para autosuscrición." msgstr "Non se puido actualizar o usuario para autosuscrición."
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
#, fuzzy
msgid "Couldn't save location prefs."
msgstr "Non se puideron gardar as etiquetas."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Non se puido gardar o perfil." msgstr "Non se puido gardar o perfil."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Non se puideron gardar as etiquetas." msgstr "Non se puideron gardar as etiquetas."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "Configuracións gardadas." msgstr "Configuracións gardadas."
@ -2653,7 +2662,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -2792,7 +2801,7 @@ msgstr "Acounteceu un erro co código de confirmación."
msgid "Registration successful" msgid "Registration successful"
msgstr "Xa estas rexistrado!!" msgstr "Xa estas rexistrado!!"
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "Rexistrar" msgstr "Rexistrar"
@ -2993,7 +3002,7 @@ msgstr "Non podes rexistrarte se non estas de acordo coa licenza."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Xa bloqueaches a este usuario." msgstr "Xa bloqueaches a este usuario."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Crear" msgstr "Crear"
@ -4154,16 +4163,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Tes restrinxido o envio de chíos neste sitio." msgstr "Tes restrinxido o envio de chíos neste sitio."
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Aconteceu un erro ó gardar o chío." msgstr "Aconteceu un erro ó gardar o chío."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Erro ó inserir a contestación na BD: %s" msgstr "Erro ó inserir a contestación na BD: %s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -4222,139 +4231,139 @@ msgstr "%s (%s)"
msgid "Untitled page" msgid "Untitled page"
msgstr "" msgstr ""
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "" msgstr ""
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "Persoal" msgstr "Persoal"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "" msgstr ""
#: lib/action.php:433 #: lib/action.php:434
#, fuzzy #, fuzzy
msgid "Account" msgid "Account"
msgstr "Sobre" msgstr "Sobre"
#: lib/action.php:433 #: lib/action.php:434
#, fuzzy #, fuzzy
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "Cambiar contrasinal" msgstr "Cambiar contrasinal"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Conectar" msgstr "Conectar"
#: lib/action.php:436 #: lib/action.php:437
#, fuzzy #, fuzzy
msgid "Connect to services" msgid "Connect to services"
msgstr "Non se pode redireccionar ao servidor: %s" msgstr "Non se pode redireccionar ao servidor: %s"
#: lib/action.php:440 #: lib/action.php:441
#, fuzzy #, fuzzy
msgid "Change site configuration" msgid "Change site configuration"
msgstr "Navegación de subscricións" msgstr "Navegación de subscricións"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "Invitar" msgstr "Invitar"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, fuzzy, php-format #, fuzzy, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "" msgstr ""
"Emprega este formulario para invitar ós teus amigos e colegas a empregar " "Emprega este formulario para invitar ós teus amigos e colegas a empregar "
"este servizo." "este servizo."
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "Sair" msgstr "Sair"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "" msgstr ""
#: lib/action.php:455 #: lib/action.php:456
#, fuzzy #, fuzzy
msgid "Create an account" msgid "Create an account"
msgstr "Crear nova conta" msgstr "Crear nova conta"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "" msgstr ""
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Axuda" msgstr "Axuda"
#: lib/action.php:461 #: lib/action.php:462
#, fuzzy #, fuzzy
msgid "Help me!" msgid "Help me!"
msgstr "Axuda" msgstr "Axuda"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "Buscar" msgstr "Buscar"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "" msgstr ""
#: lib/action.php:485 #: lib/action.php:486
#, fuzzy #, fuzzy
msgid "Site notice" msgid "Site notice"
msgstr "Novo chío" msgstr "Novo chío"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "" msgstr ""
#: lib/action.php:617 #: lib/action.php:618
#, fuzzy #, fuzzy
msgid "Page notice" msgid "Page notice"
msgstr "Novo chío" msgstr "Novo chío"
#: lib/action.php:719 #: lib/action.php:720
#, fuzzy #, fuzzy
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "Navegación de subscricións" msgstr "Navegación de subscricións"
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "Sobre" msgstr "Sobre"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "Preguntas frecuentes" msgstr "Preguntas frecuentes"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "" msgstr ""
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "Privacidade" msgstr "Privacidade"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "Fonte" msgstr "Fonte"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Contacto" msgstr "Contacto"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "" msgstr ""
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "" msgstr ""
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4363,12 +4372,12 @@ msgstr ""
"**%%site.name%%** é un servizo de microbloguexo que che proporciona [%%site." "**%%site.name%%** é un servizo de microbloguexo que che proporciona [%%site."
"broughtby%%](%%site.broughtbyurl%%). " "broughtby%%](%%site.broughtbyurl%%). "
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** é un servizo de microbloguexo." msgstr "**%%site.name%%** é un servizo de microbloguexo."
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4379,35 +4388,35 @@ msgstr ""
"%s, dispoñible baixo licenza [GNU Affero General Public License](http://www." "%s, dispoñible baixo licenza [GNU Affero General Public License](http://www."
"fsf.org/licensing/licenses/agpl-3.0.html)." "fsf.org/licensing/licenses/agpl-3.0.html)."
#: lib/action.php:790 #: lib/action.php:791
#, fuzzy #, fuzzy
msgid "Site content license" msgid "Site content license"
msgstr "Atopar no contido dos chíos" msgstr "Atopar no contido dos chíos"
#: lib/action.php:799 #: lib/action.php:800
#, fuzzy #, fuzzy
msgid "All " msgid "All "
msgstr "Todos" msgstr "Todos"
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1107 #: lib/action.php:1108
#, fuzzy #, fuzzy
msgid "After" msgid "After"
msgstr "« Despois" msgstr "« Despois"
#: lib/action.php:1115 #: lib/action.php:1116
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "Antes »" msgstr "Antes »"
#: lib/action.php:1163 #: lib/action.php:1164
#, fuzzy #, fuzzy
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..."
@ -4468,6 +4477,16 @@ msgstr ""
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "" msgstr ""
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Contrasinal gardada."
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Contrasinal gardada."
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "Resultados do comando" msgstr "Resultados do comando"
@ -5254,7 +5273,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr " dende " msgstr " dende "
@ -5320,76 +5339,80 @@ msgstr "Eliminar chío"
msgid "To" msgid "To"
msgstr "A" msgstr "A"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
#, fuzzy #, fuzzy
msgid "Available characters" msgid "Available characters"
msgstr "6 ou máis caracteres" msgstr "6 ou máis caracteres"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
#, fuzzy #, fuzzy
msgid "Send a notice" msgid "Send a notice"
msgstr "Dar un toque" msgstr "Dar un toque"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "¿Que pasa, %s?" msgstr "¿Que pasa, %s?"
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "" msgstr ""
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "" msgstr ""
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "No" msgstr "No"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:523 #: lib/noticelist.php:531
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "Sen contido!" msgstr "Sen contido!"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Crear" msgstr "Crear"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
#, fuzzy #, fuzzy
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Non se pode eliminar este chíos." msgstr "Non se pode eliminar este chíos."
#: lib/noticelist.php:578 #: lib/noticelist.php:586
#, fuzzy #, fuzzy
msgid "Reply" msgid "Reply"
msgstr "contestar" msgstr "contestar"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Chío publicado" msgstr "Chío publicado"

View File

@ -7,12 +7,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:42:57+0000\n" "PO-Revision-Date: 2010-01-05 22:11:31+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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\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"
@ -192,11 +192,11 @@ msgstr "עידכון המשתמש נכשל."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "עידכון המשתמש נכשל." msgstr "עידכון המשתמש נכשל."
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "" msgstr ""
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "" msgstr ""
@ -311,31 +311,31 @@ msgid "Could not find target user."
msgstr "עידכון המשתמש נכשל." msgstr "עידכון המשתמש נכשל."
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 "כינוי יכול להכיל רק אותיות אנגליות קטנות ומספרים, וללא רווחים."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "כינוי זה כבר תפוס. נסה כינוי אחר." msgstr "כינוי זה כבר תפוס. נסה כינוי אחר."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "שם משתמש לא חוקי." msgstr "שם משתמש לא חוקי."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "לאתר הבית יש כתובת לא חוקית." msgstr "לאתר הבית יש כתובת לא חוקית."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "השם המלא ארוך מידי (מותרות 255 אותיות בלבד)" msgstr "השם המלא ארוך מידי (מותרות 255 אותיות בלבד)"
@ -346,7 +346,7 @@ msgid "Description is too long (max %d chars)."
msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)"
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)." msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)."
@ -467,7 +467,7 @@ msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 או
msgid "Not found" msgid "Not found"
msgstr "לא נמצא" msgstr "לא נמצא"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -600,7 +600,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
#, fuzzy #, fuzzy
msgid "Delete" msgid "Delete"
msgstr "מחק" msgstr "מחק"
@ -614,13 +614,13 @@ msgid "Crop"
msgstr "" msgstr ""
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -695,7 +695,7 @@ msgstr "כן"
msgid "Block this user" msgid "Block this user"
msgstr "אין משתמש כזה." msgstr "אין משתמש כזה."
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "" msgstr ""
@ -771,7 +771,7 @@ msgstr "כתובת זו כבר אושרה."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "עידכון המשתמש נכשל." msgstr "עידכון המשתמש נכשל."
@ -833,7 +833,7 @@ msgstr ""
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "אין הודעה כזו." msgstr "אין הודעה כזו."
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "" msgstr ""
@ -980,7 +980,7 @@ msgstr ""
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1488,7 +1488,7 @@ msgstr ""
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "" msgstr ""
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
@ -1581,7 +1581,7 @@ msgstr ""
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "למשתמש אין פרופיל." msgstr "למשתמש אין פרופיל."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
#, fuzzy #, fuzzy
msgid "Error removing the block." msgid "Error removing the block."
msgstr "שגיאה בשמירת המשתמש." msgstr "שגיאה בשמירת המשתמש."
@ -1760,7 +1760,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "שלח" msgstr "שלח"
@ -1860,7 +1860,7 @@ msgstr "שם משתמש או סיסמה לא נכונים."
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "לא מורשה." msgstr "לא מורשה."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "היכנס" msgstr "היכנס"
@ -1970,7 +1970,7 @@ msgstr "הודעה חדשה"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "" msgstr ""
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "" msgstr ""
@ -1978,7 +1978,7 @@ msgstr ""
msgid "New notice" msgid "New notice"
msgstr "הודעה חדשה" msgstr "הודעה חדשה"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
#, fuzzy #, fuzzy
msgid "Notice posted" msgid "Notice posted"
msgstr "הודעות" msgstr "הודעות"
@ -2417,70 +2417,79 @@ msgstr "מיקום"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "מיקומך, למשל \"עיר, מדינה או מחוז, ארץ\"" msgstr "מיקומך, למשל \"עיר, מדינה או מחוז, ארץ\""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "" msgstr ""
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "שפה" msgstr "שפה"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "" msgstr ""
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "" msgstr ""
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "" msgstr ""
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, fuzzy, php-format #, fuzzy, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)"
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "" msgstr ""
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "" msgstr ""
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, fuzzy, php-format #, fuzzy, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "כתובת אתר הבית '%s' אינה חוקית" msgstr "כתובת אתר הבית '%s' אינה חוקית"
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
#, fuzzy
msgid "Couldn't save location prefs."
msgstr "שמירת הפרופיל נכשלה."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "שמירת הפרופיל נכשלה." msgstr "שמירת הפרופיל נכשלה."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
#, fuzzy #, fuzzy
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "שמירת הפרופיל נכשלה." msgstr "שמירת הפרופיל נכשלה."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "ההגדרות נשמרו." msgstr "ההגדרות נשמרו."
@ -2577,7 +2586,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -2714,7 +2723,7 @@ msgstr "שגיאה באישור הקוד."
msgid "Registration successful" msgid "Registration successful"
msgstr "" msgstr ""
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "הירשם" msgstr "הירשם"
@ -2887,7 +2896,7 @@ msgstr "לא ניתן להירשם ללא הסכמה לרשיון"
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "כבר נכנסת למערכת!" msgstr "כבר נכנסת למערכת!"
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "צור" msgstr "צור"
@ -4010,16 +4019,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "בעיה בשמירת ההודעה." msgstr "בעיה בשמירת ההודעה."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s" msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -4078,136 +4087,136 @@ msgstr ""
msgid "Untitled page" msgid "Untitled page"
msgstr "" msgstr ""
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "" msgstr ""
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "בית" msgstr "בית"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "" msgstr ""
#: lib/action.php:433 #: lib/action.php:434
#, fuzzy #, fuzzy
msgid "Account" msgid "Account"
msgstr "אודות" msgstr "אודות"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "" msgstr ""
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "התחבר" msgstr "התחבר"
#: lib/action.php:436 #: lib/action.php:437
#, fuzzy #, fuzzy
msgid "Connect to services" msgid "Connect to services"
msgstr "נכשלה ההפניה לשרת: %s" msgstr "נכשלה ההפניה לשרת: %s"
#: lib/action.php:440 #: lib/action.php:441
#, fuzzy #, fuzzy
msgid "Change site configuration" msgid "Change site configuration"
msgstr "הרשמות" msgstr "הרשמות"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "" msgstr ""
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "" msgstr ""
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "צא" msgstr "צא"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "" msgstr ""
#: lib/action.php:455 #: lib/action.php:456
#, fuzzy #, fuzzy
msgid "Create an account" msgid "Create an account"
msgstr "צור חשבון חדש" msgstr "צור חשבון חדש"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "" msgstr ""
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "עזרה" msgstr "עזרה"
#: lib/action.php:461 #: lib/action.php:462
#, fuzzy #, fuzzy
msgid "Help me!" msgid "Help me!"
msgstr "עזרה" msgstr "עזרה"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "חיפוש" msgstr "חיפוש"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "" msgstr ""
#: lib/action.php:485 #: lib/action.php:486
#, fuzzy #, fuzzy
msgid "Site notice" msgid "Site notice"
msgstr "הודעה חדשה" msgstr "הודעה חדשה"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "" msgstr ""
#: lib/action.php:617 #: lib/action.php:618
#, fuzzy #, fuzzy
msgid "Page notice" msgid "Page notice"
msgstr "הודעה חדשה" msgstr "הודעה חדשה"
#: lib/action.php:719 #: lib/action.php:720
#, fuzzy #, fuzzy
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "הרשמות" msgstr "הרשמות"
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "אודות" msgstr "אודות"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "רשימת שאלות נפוצות" msgstr "רשימת שאלות נפוצות"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "" msgstr ""
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "פרטיות" msgstr "פרטיות"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "מקור" msgstr "מקור"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "צור קשר" msgstr "צור קשר"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "" msgstr ""
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "" msgstr ""
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4216,12 +4225,12 @@ msgstr ""
"**%%site.name%%** הוא שרות ביקרובלוג הניתן על ידי [%%site.broughtby%%](%%" "**%%site.name%%** הוא שרות ביקרובלוג הניתן על ידי [%%site.broughtby%%](%%"
"site.broughtbyurl%%)." "site.broughtbyurl%%)."
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** הוא שרות ביקרובלוג." msgstr "**%%site.name%%** הוא שרות ביקרובלוג."
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4232,34 +4241,34 @@ msgstr ""
"s, המופצת תחת רשיון [GNU Affero General Public License](http://www.fsf.org/" "s, המופצת תחת רשיון [GNU Affero General Public License](http://www.fsf.org/"
"licensing/licenses/agpl-3.0.html)" "licensing/licenses/agpl-3.0.html)"
#: lib/action.php:790 #: lib/action.php:791
#, fuzzy #, fuzzy
msgid "Site content license" msgid "Site content license"
msgstr "הודעה חדשה" msgstr "הודעה חדשה"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1107 #: lib/action.php:1108
#, fuzzy #, fuzzy
msgid "After" msgid "After"
msgstr "<< אחרי" msgstr "<< אחרי"
#: lib/action.php:1115 #: lib/action.php:1116
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "לפני >>" msgstr "לפני >>"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -4314,6 +4323,16 @@ msgstr ""
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "" msgstr ""
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "הסיסמה נשמרה."
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "הסיסמה נשמרה."
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "" msgstr ""
@ -4999,7 +5018,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
msgid "from" msgid "from"
msgstr "" msgstr ""
@ -5064,75 +5083,79 @@ msgstr ""
msgid "To" msgid "To"
msgstr "אל" msgstr "אל"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
#, fuzzy #, fuzzy
msgid "Available characters" msgid "Available characters"
msgstr "לפחות 6 אותיות" msgstr "לפחות 6 אותיות"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
#, fuzzy #, fuzzy
msgid "Send a notice" msgid "Send a notice"
msgstr "הודעה חדשה" msgstr "הודעה חדשה"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "מה המצב %s?" msgstr "מה המצב %s?"
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "" msgstr ""
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "" msgstr ""
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "לא" msgstr "לא"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:523 #: lib/noticelist.php:531
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "אין תוכן!" msgstr "אין תוכן!"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "צור" msgstr "צור"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:578 #: lib/noticelist.php:586
#, fuzzy #, fuzzy
msgid "Reply" msgid "Reply"
msgstr "הגב" msgstr "הגב"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "הודעות" msgstr "הודעות"

View File

@ -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-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:43:00+0000\n" "PO-Revision-Date: 2010-01-05 22:11:35+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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: hsb\n" "X-Language-Code: hsb\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -188,11 +188,11 @@ msgstr "Design njeda so aktualizować."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "Njemóžeš so samoho blokować." msgstr "Njemóžeš so samoho blokować."
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "" msgstr ""
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "" msgstr ""
@ -304,31 +304,31 @@ msgid "Could not find target user."
msgstr "" msgstr ""
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 ""
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "Přimjeno so hižo wužiwa. Spytaj druhe." msgstr "Přimjeno so hižo wužiwa. Spytaj druhe."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "Žane płaćiwe přimjeno." msgstr "Žane płaćiwe přimjeno."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "Startowa strona njeje płaćiwy URL." msgstr "Startowa strona njeje płaćiwy URL."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "Dospołne mjeno je předołho (maks. 255 znamješkow)." msgstr "Dospołne mjeno je předołho (maks. 255 znamješkow)."
@ -339,7 +339,7 @@ msgid "Description is too long (max %d chars)."
msgstr "Wopisanje je předołho (maks. %d znamješkow)." msgstr "Wopisanje je předołho (maks. %d znamješkow)."
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "Městno je předołho (maks. 255 znamješkow)." msgstr "Městno je předołho (maks. 255 znamješkow)."
@ -454,7 +454,7 @@ msgstr "To je předołho. Maksimalna wulkosć zdźělenki je %d znamješkow."
msgid "Not found" msgid "Not found"
msgstr "Njenamakany" msgstr "Njenamakany"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -584,7 +584,7 @@ msgid "Preview"
msgstr "Přehlad" msgstr "Přehlad"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "Zničić" msgstr "Zničić"
@ -597,13 +597,13 @@ msgid "Crop"
msgstr "" msgstr ""
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -673,7 +673,7 @@ msgstr "Haj"
msgid "Block this user" msgid "Block this user"
msgstr "Tutoho wužiwarja blokować" msgstr "Tutoho wužiwarja blokować"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "" msgstr ""
@ -745,7 +745,7 @@ msgstr "Tuta adresa bu hižo wobkrućena."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "" msgstr ""
@ -805,7 +805,7 @@ msgstr "Chceš woprawdźe tutu zdźělenku wušmórnyć?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Tutu zdźělenku njewušmórnyć" msgstr "Tutu zdźělenku njewušmórnyć"
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Tutu zdźělenku wušmórnyć" msgstr "Tutu zdźělenku wušmórnyć"
@ -940,7 +940,7 @@ msgstr "Na standard wróćo stajić"
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1424,7 +1424,7 @@ msgstr ""
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "Lisćina wužiwarjow w tutej skupinje." msgstr "Lisćina wužiwarjow w tutej skupinje."
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "Administrator" msgstr "Administrator"
@ -1511,7 +1511,7 @@ msgstr ""
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "" msgstr ""
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "" msgstr ""
@ -1682,7 +1682,7 @@ msgstr "Wosobinska powěsć"
msgid "Optionally add a personal message to the invitation." msgid "Optionally add a personal message to the invitation."
msgstr "Wosobinsku powěsć po dobrozdaću přeprošenju přidać." msgstr "Wosobinsku powěsć po dobrozdaću přeprošenju přidać."
#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "Pósłać" msgstr "Pósłać"
@ -1778,7 +1778,7 @@ msgstr "Wopačne wužiwarske mjeno abo hesło."
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "Zmylk při nastajenju wužiwarja. Snano njejsy awtorizowany." msgstr "Zmylk při nastajenju wužiwarja. Snano njejsy awtorizowany."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Přizjewić" msgstr "Přizjewić"
@ -1885,7 +1885,7 @@ msgstr "Powěsć pósłana"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "" msgstr ""
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "Zmylk Ajax" msgstr "Zmylk Ajax"
@ -1893,7 +1893,7 @@ msgstr "Zmylk Ajax"
msgid "New notice" msgid "New notice"
msgstr "Nowa zdźělenka" msgstr "Nowa zdźělenka"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "Zdźělenka wotpósłana" msgstr "Zdźělenka wotpósłana"
@ -2310,69 +2310,77 @@ msgstr "Městno"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "" msgstr ""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "" msgstr ""
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Rěč" msgstr "Rěč"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "Preferowana rěč" msgstr "Preferowana rěč"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "Časowe pasmo" msgstr "Časowe pasmo"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "" msgstr ""
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, php-format #, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "Biografija je předołha (maks. %d znamješkow)." msgstr "Biografija je předołha (maks. %d znamješkow)."
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "Časowe pasmo njeje wubrane." msgstr "Časowe pasmo njeje wubrane."
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "Mjeno rěče je předołhe (maks. 50 znamješkow)." msgstr "Mjeno rěče je předołhe (maks. 50 znamješkow)."
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "" msgstr ""
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
msgid "Couldn't save location prefs."
msgstr "Nastajenja městna njedachu so składować."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "" msgstr ""
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "" msgstr ""
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "Nastajenja składowane." msgstr "Nastajenja składowane."
@ -2465,7 +2473,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -2602,7 +2610,7 @@ msgstr "Wodaj, njepłaćiwy přeprošenski kod."
msgid "Registration successful" msgid "Registration successful"
msgstr "Registrowanje wuspěšne" msgstr "Registrowanje wuspěšne"
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "Registrować" msgstr "Registrować"
@ -2766,7 +2774,7 @@ msgstr "Njemóžeš swójsku zdźělenku wospjetować."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Sy tutu zdźělenku hižo wospjetował." msgstr "Sy tutu zdźělenku hižo wospjetował."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
msgid "Repeated" msgid "Repeated"
msgstr "Wospjetowany" msgstr "Wospjetowany"
@ -3836,16 +3844,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "" msgstr ""
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "" msgstr ""
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -3900,140 +3908,140 @@ msgstr "%s - %s"
msgid "Untitled page" msgid "Untitled page"
msgstr "Strona bjez titula" msgstr "Strona bjez titula"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "" msgstr ""
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "" msgstr ""
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "" msgstr ""
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "Konto" msgstr "Konto"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "" msgstr ""
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Zwjazać" msgstr "Zwjazać"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect to services" msgid "Connect to services"
msgstr "" msgstr ""
#: lib/action.php:440 #: lib/action.php:441
msgid "Change site configuration" msgid "Change site configuration"
msgstr "" msgstr ""
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "Přeprosyć" msgstr "Přeprosyć"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "" msgstr ""
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "" msgstr ""
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "" msgstr ""
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "Konto załožić" msgstr "Konto załožić"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "" msgstr ""
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Pomoc" msgstr "Pomoc"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "Pomhaj!" msgstr "Pomhaj!"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "Pytać" msgstr "Pytać"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "Za ludźimi abo tekstom pytać" msgstr "Za ludźimi abo tekstom pytać"
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "" msgstr ""
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "" msgstr ""
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "" msgstr ""
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "" msgstr ""
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "Wo" msgstr "Wo"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "Huste prašenja" msgstr "Huste prašenja"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "" msgstr ""
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "Priwatnosć" msgstr "Priwatnosć"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "Žórło" msgstr "Žórło"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Kontakt" msgstr "Kontakt"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "" msgstr ""
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "" msgstr ""
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
"broughtby%%](%%site.broughtbyurl%%). " "broughtby%%](%%site.broughtbyurl%%). "
msgstr "" msgstr ""
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "" msgstr ""
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4041,31 +4049,31 @@ msgid ""
"org/licensing/licenses/agpl-3.0.html)." "org/licensing/licenses/agpl-3.0.html)."
msgstr "" msgstr ""
#: lib/action.php:790 #: lib/action.php:791
msgid "Site content license" msgid "Site content license"
msgstr "" msgstr ""
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "" msgstr ""
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "" msgstr ""
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -4117,6 +4125,16 @@ msgstr ""
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "" msgstr ""
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Hesło změnjene"
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Hesło změnjene"
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "" msgstr ""
@ -4785,7 +4803,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
msgid "from" msgid "from"
msgstr "wot" msgstr "wot"
@ -4849,69 +4867,73 @@ msgstr "Direktnu zdźělenku pósłać"
msgid "To" msgid "To"
msgstr "Komu" msgstr "Komu"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "K dispoziciji stejace znamješka" msgstr "K dispoziciji stejace znamješka"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "Zdźělenku pósłać" msgstr "Zdźělenku pósłać"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "" msgstr ""
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "Připowěsnyć" msgstr "Připowěsnyć"
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "Dataju připowěsnyć" msgstr "Dataju připowěsnyć"
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "N" msgid "N"
msgstr "S" msgstr "S"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "J" msgstr "J"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "W" msgstr "W"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "Z" msgstr "Z"
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "" msgstr ""
#: lib/noticelist.php:548 #: lib/noticelist.php:556
msgid "Repeated by" msgid "Repeated by"
msgstr "Wospjetowany wot" msgstr "Wospjetowany wot"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Na tutu zdźělenku wotmołwić" msgstr "Na tutu zdźělenku wotmołwić"
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "Wotmołwić" msgstr "Wotmołwić"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Zdźělenka wospjetowana" msgstr "Zdźělenka wospjetowana"
@ -5041,9 +5063,8 @@ msgid "Popular"
msgstr "Woblubowany" msgstr "Woblubowany"
#: lib/repeatform.php:107 #: lib/repeatform.php:107
#, fuzzy
msgid "Repeat this notice?" msgid "Repeat this notice?"
msgstr "Tutu zdźělenku wospjetować" msgstr "Tutu zdźělenku wospjetować?"
#: lib/repeatform.php:132 #: lib/repeatform.php:132
msgid "Repeat this notice" msgid "Repeat this notice"

View File

@ -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-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:43:03+0000\n" "PO-Revision-Date: 2010-01-05 22:11:39+0000\n"
"Language-Team: Interlingua\n" "Language-Team: Interlingua\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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: ia\n" "X-Language-Code: ia\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -198,11 +198,11 @@ msgstr "Non poteva actualisar le apparentia."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "Tu non pote blocar te mesme!" msgstr "Tu non pote blocar te mesme!"
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "Le blocada del usator ha fallite." msgstr "Le blocada del usator ha fallite."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "Le disblocada del usator ha fallite." msgstr "Le disblocada del usator ha fallite."
@ -314,31 +314,31 @@ msgid "Could not find target user."
msgstr "Non poteva trovar le usator de destination." msgstr "Non poteva trovar le usator de destination."
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 "Le pseudonymo pote solmente haber minusculas e numeros, sin spatios." msgstr "Le pseudonymo pote solmente haber minusculas e numeros, sin spatios."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "Pseudonymo ja in uso. Proba un altere." msgstr "Pseudonymo ja in uso. Proba un altere."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "Non un pseudonymo valide." msgstr "Non un pseudonymo valide."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "Le pagina personal non es un URL valide." msgstr "Le pagina personal non es un URL valide."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "Le nomine complete es troppo longe (max. 255 characteres)." msgstr "Le nomine complete es troppo longe (max. 255 characteres)."
@ -349,7 +349,7 @@ msgid "Description is too long (max %d chars)."
msgstr "Description es troppo longe (max %d charachteres)." msgstr "Description es troppo longe (max %d charachteres)."
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "Loco es troppo longe (max. 255 characteres)." msgstr "Loco es troppo longe (max. 255 characteres)."
@ -465,7 +465,7 @@ msgstr ""
msgid "Not found" msgid "Not found"
msgstr "Non trovate" msgstr "Non trovate"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -597,7 +597,7 @@ msgid "Preview"
msgstr "Previsualisation" msgstr "Previsualisation"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "Deler" msgstr "Deler"
@ -610,13 +610,13 @@ msgid "Crop"
msgstr "Taliar" msgstr "Taliar"
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -689,7 +689,7 @@ msgstr "Si"
msgid "Block this user" msgid "Block this user"
msgstr "Blocar iste usator" msgstr "Blocar iste usator"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "Falleva de salveguardar le information del blocada." msgstr "Falleva de salveguardar le information del blocada."
@ -761,7 +761,7 @@ msgstr "Iste adresse ha ja essite confirmate."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "Non poteva actualisar usator." msgstr "Non poteva actualisar usator."
@ -823,7 +823,7 @@ msgstr "Es tu secur de voler deler iste nota?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Non deler iste nota" msgstr "Non deler iste nota"
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Deler iste nota" msgstr "Deler iste nota"
@ -961,7 +961,7 @@ msgstr "Revenir al predefinitiones"
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1461,7 +1461,7 @@ msgstr "Membros del gruppo %s, pagina %d"
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "Un lista de usatores in iste gruppo." msgstr "Un lista de usatores in iste gruppo."
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "Administrator" msgstr "Administrator"
@ -1559,7 +1559,7 @@ msgstr "Solmente un administrator pote disblocar membros de un gruppo."
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "Le usator non es blocate del gruppo." msgstr "Le usator non es blocate del gruppo."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "Error de remover le blocada." msgstr "Error de remover le blocada."
@ -1746,7 +1746,7 @@ msgstr "Message personal"
msgid "Optionally add a personal message to the invitation." msgid "Optionally add a personal message to the invitation."
msgstr "Si tu vole, adde un message personal al invitation." msgstr "Si tu vole, adde un message personal al invitation."
#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "Inviar" msgstr "Inviar"
@ -1869,7 +1869,7 @@ msgid "Error setting user. You are probably not authorized."
msgstr "" msgstr ""
"Error de acceder al conto de usator. Tu probabilemente non es autorisate." "Error de acceder al conto de usator. Tu probabilemente non es autorisate."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Aperir session" msgstr "Aperir session"
@ -1984,7 +1984,7 @@ msgstr "Message inviate"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "Message directe a %s inviate" msgstr "Message directe a %s inviate"
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "Error de Ajax" msgstr "Error de Ajax"
@ -1992,7 +1992,7 @@ msgstr "Error de Ajax"
msgid "New notice" msgid "New notice"
msgstr "Nove nota" msgstr "Nove nota"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "Nota publicate" msgstr "Nota publicate"
@ -2299,35 +2299,35 @@ msgstr "Directorio al fundos"
#: actions/pathsadminpanel.php:293 #: actions/pathsadminpanel.php:293
msgid "SSL" msgid "SSL"
msgstr "" msgstr "SSL"
#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346 #: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346
msgid "Never" msgid "Never"
msgstr "" msgstr "Nunquam"
#: actions/pathsadminpanel.php:297 #: actions/pathsadminpanel.php:297
msgid "Sometimes" msgid "Sometimes"
msgstr "" msgstr "Alcun vices"
#: actions/pathsadminpanel.php:298 #: actions/pathsadminpanel.php:298
msgid "Always" msgid "Always"
msgstr "" msgstr "Sempre"
#: actions/pathsadminpanel.php:302 #: actions/pathsadminpanel.php:302
msgid "Use SSL" msgid "Use SSL"
msgstr "" msgstr "Usar SSL"
#: actions/pathsadminpanel.php:303 #: actions/pathsadminpanel.php:303
msgid "When to use SSL" msgid "When to use SSL"
msgstr "" msgstr "Quando usar SSL"
#: actions/pathsadminpanel.php:308 #: actions/pathsadminpanel.php:308
msgid "SSL Server" msgid "SSL Server"
msgstr "" msgstr "Servitor SSL"
#: actions/pathsadminpanel.php:309 #: actions/pathsadminpanel.php:309
msgid "Server to direct SSL requests to" msgid "Server to direct SSL requests to"
msgstr "" msgstr "Servitor verso le qual diriger le requestas SSL"
#: actions/pathsadminpanel.php:325 #: actions/pathsadminpanel.php:325
msgid "Save paths" msgid "Save paths"
@ -2424,72 +2424,80 @@ msgstr "Loco"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Ubi tu es, como \"Citate, Stato (o Region), Pais\"" msgstr "Ubi tu es, como \"Citate, Stato (o Region), Pais\""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr "Divulgar mi loco actual quando io publica notas"
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "Etiquettas" msgstr "Etiquettas"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
"Etiquettas pro te (litteras, numeros, -, ., e _), separate per commas o " "Etiquettas pro te (litteras, numeros, -, ., e _), separate per commas o "
"spatios" "spatios"
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Lingua" msgstr "Lingua"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "Lingua preferite" msgstr "Lingua preferite"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "Fuso horari" msgstr "Fuso horari"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "In que fuso horari es tu normalmente?" msgstr "In que fuso horari es tu normalmente?"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
"Subscriber me automaticamente a qui se subscribe a me (utile pro non-humanos)" "Subscriber me automaticamente a qui se subscribe a me (utile pro non-humanos)"
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, php-format #, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "Bio es troppo longe (max %d chars)." msgstr "Bio es troppo longe (max %d chars)."
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "Fuso horari non seligite." msgstr "Fuso horari non seligite."
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "Lingua es troppo longe (max 50 chars)." msgstr "Lingua es troppo longe (max 50 chars)."
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Etiquetta invalide: \"%s\"" msgstr "Etiquetta invalide: \"%s\""
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Non poteva actualisar usator pro autosubscription." msgstr "Non poteva actualisar usator pro autosubscription."
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
msgid "Couldn't save location prefs."
msgstr "Non poteva salveguardar le preferentias de loco."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Non poteva salveguardar profilo." msgstr "Non poteva salveguardar profilo."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Non poteva salveguardar etiquettas." msgstr "Non poteva salveguardar etiquettas."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "Preferentias confirmate." msgstr "Preferentias confirmate."
@ -2595,7 +2603,7 @@ msgstr ""
"Proque non [registrar un conto](%%action.register%%) e devenir le prime a " "Proque non [registrar un conto](%%action.register%%) e devenir le prime a "
"publicar un?" "publicar un?"
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Etiquettario" msgstr "Etiquettario"
@ -2735,7 +2743,7 @@ msgstr "Pardono, le codice de invitation es invalide."
msgid "Registration successful" msgid "Registration successful"
msgstr "Registration succedite" msgstr "Registration succedite"
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "Crear un conto" msgstr "Crear un conto"
@ -2927,7 +2935,7 @@ msgstr "Tu non pote repeter tu proprie nota."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Tu ha ja repetite iste nota." msgstr "Tu ha ja repetite iste nota."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
msgid "Repeated" msgid "Repeated"
msgstr "Repetite" msgstr "Repetite"
@ -3376,184 +3384,190 @@ msgstr "Servitor"
#: actions/siteadminpanel.php:306 #: actions/siteadminpanel.php:306
msgid "Site's server hostname." msgid "Site's server hostname."
msgstr "" msgstr "Nomine de host del servitor del sito."
#: actions/siteadminpanel.php:310 #: actions/siteadminpanel.php:310
msgid "Fancy URLs" msgid "Fancy URLs"
msgstr "" msgstr "URLs de luxo"
#: actions/siteadminpanel.php:312 #: actions/siteadminpanel.php:312
msgid "Use fancy (more readable and memorable) URLs?" msgid "Use fancy (more readable and memorable) URLs?"
msgstr "" msgstr "Usar URLs de luxo (plus legibile e memorabile)?"
#: actions/siteadminpanel.php:318 #: actions/siteadminpanel.php:318
msgid "Access" msgid "Access"
msgstr "" msgstr "Accesso"
#: actions/siteadminpanel.php:321 #: actions/siteadminpanel.php:321
msgid "Private" msgid "Private"
msgstr "" msgstr "Private"
#: actions/siteadminpanel.php:323 #: actions/siteadminpanel.php:323
msgid "Prohibit anonymous users (not logged in) from viewing site?" msgid "Prohibit anonymous users (not logged in) from viewing site?"
msgstr "" msgstr "Prohiber al usatores anonyme (sin session aperte) de vider le sito?"
#: actions/siteadminpanel.php:327 #: actions/siteadminpanel.php:327
msgid "Invite only" msgid "Invite only"
msgstr "" msgstr "Solmente per invitation"
#: actions/siteadminpanel.php:329 #: actions/siteadminpanel.php:329
msgid "Make registration invitation only." msgid "Make registration invitation only."
msgstr "" msgstr "Permitter le registration solmente al invitatos."
#: actions/siteadminpanel.php:333 #: actions/siteadminpanel.php:333
msgid "Closed" msgid "Closed"
msgstr "" msgstr "Claudite"
#: actions/siteadminpanel.php:335 #: actions/siteadminpanel.php:335
msgid "Disable new registrations." msgid "Disable new registrations."
msgstr "" msgstr "Disactivar le creation de nove contos."
#: actions/siteadminpanel.php:341 #: actions/siteadminpanel.php:341
msgid "Snapshots" msgid "Snapshots"
msgstr "" msgstr "Instantaneos"
#: actions/siteadminpanel.php:344 #: actions/siteadminpanel.php:344
msgid "Randomly during Web hit" msgid "Randomly during Web hit"
msgstr "" msgstr "Aleatorimente durante un accesso web"
#: actions/siteadminpanel.php:345 #: actions/siteadminpanel.php:345
msgid "In a scheduled job" msgid "In a scheduled job"
msgstr "" msgstr "In un processo planificate"
#: actions/siteadminpanel.php:347 #: actions/siteadminpanel.php:347
msgid "Data snapshots" msgid "Data snapshots"
msgstr "" msgstr "Instantaneos de datos"
#: actions/siteadminpanel.php:348 #: actions/siteadminpanel.php:348
msgid "When to send statistical data to status.net servers" msgid "When to send statistical data to status.net servers"
msgstr "" msgstr "Quando inviar datos statistic al servitores de status.net"
#: actions/siteadminpanel.php:353 #: actions/siteadminpanel.php:353
msgid "Frequency" msgid "Frequency"
msgstr "" msgstr "Frequentia"
#: actions/siteadminpanel.php:354 #: actions/siteadminpanel.php:354
msgid "Snapshots will be sent once every N web hits" msgid "Snapshots will be sent once every N web hits"
msgstr "" msgstr "Un instantaneo essera inviate a cata N accessos web"
#: actions/siteadminpanel.php:359 #: actions/siteadminpanel.php:359
msgid "Report URL" msgid "Report URL"
msgstr "" msgstr "URL pro reporto"
#: actions/siteadminpanel.php:360 #: actions/siteadminpanel.php:360
msgid "Snapshots will be sent to this URL" msgid "Snapshots will be sent to this URL"
msgstr "" msgstr "Le instantaneos essera inviate a iste URL"
#: actions/siteadminpanel.php:367 #: actions/siteadminpanel.php:367
msgid "Limits" msgid "Limits"
msgstr "" msgstr "Limites"
#: actions/siteadminpanel.php:370 #: actions/siteadminpanel.php:370
msgid "Text limit" msgid "Text limit"
msgstr "" msgstr "Limite de texto"
#: actions/siteadminpanel.php:370 #: actions/siteadminpanel.php:370
msgid "Maximum number of characters for notices." msgid "Maximum number of characters for notices."
msgstr "" msgstr "Numero maxime de characteres pro notas."
#: actions/siteadminpanel.php:374 #: actions/siteadminpanel.php:374
msgid "Dupe limit" msgid "Dupe limit"
msgstr "" msgstr "Limite de duplicatos"
#: actions/siteadminpanel.php:374 #: actions/siteadminpanel.php:374
msgid "How long users must wait (in seconds) to post the same thing again." msgid "How long users must wait (in seconds) to post the same thing again."
msgstr "" msgstr ""
"Quante tempore (in secundas) le usatores debe attender ante de poter "
"publicar le mesme cosa de novo."
#: actions/siteadminpanel.php:388 actions/useradminpanel.php:313 #: actions/siteadminpanel.php:388 actions/useradminpanel.php:313
msgid "Save site settings" msgid "Save site settings"
msgstr "" msgstr "Salveguardar configurationes del sito"
#: actions/smssettings.php:58 #: actions/smssettings.php:58
msgid "SMS Settings" msgid "SMS Settings"
msgstr "" msgstr "Configuration SMS"
#: actions/smssettings.php:69 #: actions/smssettings.php:69
#, php-format #, php-format
msgid "You can receive SMS messages through email from %%site.name%%." msgid "You can receive SMS messages through email from %%site.name%%."
msgstr "" msgstr "Tu pote reciper messages SMS per e-mail ab %%site.name%%."
#: actions/smssettings.php:91 #: actions/smssettings.php:91
msgid "SMS is not available." msgid "SMS is not available."
msgstr "" msgstr "SMS non es disponibile."
#: actions/smssettings.php:112 #: actions/smssettings.php:112
msgid "Current confirmed SMS-enabled phone number." msgid "Current confirmed SMS-enabled phone number."
msgstr "" msgstr "Numero de telephono actual e confirmate con servicio SMS."
#: actions/smssettings.php:123 #: actions/smssettings.php:123
msgid "Awaiting confirmation on this phone number." msgid "Awaiting confirmation on this phone number."
msgstr "" msgstr "Iste numero de telephono attende confirmation."
#: actions/smssettings.php:130 #: actions/smssettings.php:130
msgid "Confirmation code" msgid "Confirmation code"
msgstr "" msgstr "Codice de confirmation"
#: actions/smssettings.php:131 #: actions/smssettings.php:131
msgid "Enter the code you received on your phone." msgid "Enter the code you received on your phone."
msgstr "" msgstr "Entra le codice que tu ha recipite in tu telephono."
#: actions/smssettings.php:138 #: actions/smssettings.php:138
msgid "SMS Phone number" msgid "SMS Phone number"
msgstr "" msgstr "Numero de telephono pro SMS"
#: actions/smssettings.php:140 #: actions/smssettings.php:140
msgid "Phone number, no punctuation or spaces, with area code" msgid "Phone number, no punctuation or spaces, with area code"
msgstr "" msgstr "Numero de telephono, sin punctuation o spatios, con indicativo"
#: actions/smssettings.php:174 #: actions/smssettings.php:174
msgid "" msgid ""
"Send me notices through SMS; I understand I may incur exorbitant charges " "Send me notices through SMS; I understand I may incur exorbitant charges "
"from my carrier." "from my carrier."
msgstr "" msgstr ""
"Invia me notas per SMS; io comprende que io pote incurrer exorbitante costos "
"de mi operator."
#: actions/smssettings.php:306 #: actions/smssettings.php:306
msgid "No phone number." msgid "No phone number."
msgstr "" msgstr "Nulle numero de telephono."
#: actions/smssettings.php:311 #: actions/smssettings.php:311
msgid "No carrier selected." msgid "No carrier selected."
msgstr "" msgstr "Nulle operator seligite."
#: actions/smssettings.php:318 #: actions/smssettings.php:318
msgid "That is already your phone number." msgid "That is already your phone number."
msgstr "" msgstr "Isto es ja tu numero de telephono."
#: actions/smssettings.php:321 #: actions/smssettings.php:321
msgid "That phone number already belongs to another user." msgid "That phone number already belongs to another user."
msgstr "" msgstr "Iste numero de telephono pertine ja a un altere usator."
#: actions/smssettings.php:347 #: actions/smssettings.php:347
msgid "" msgid ""
"A confirmation code was sent to the phone number you added. Check your phone " "A confirmation code was sent to the phone number you added. Check your phone "
"for the code and instructions on how to use it." "for the code and instructions on how to use it."
msgstr "" msgstr ""
"Un codice de confirmation ha essite inviate al numero de telephono que tu ha "
"addite. Vide in tu telephono le codice e le instructiones super como usar lo."
#: actions/smssettings.php:374 #: actions/smssettings.php:374
msgid "That is the wrong confirmation number." msgid "That is the wrong confirmation number."
msgstr "" msgstr "Iste codice de confirmation es incorrecte."
#: actions/smssettings.php:405 #: actions/smssettings.php:405
msgid "That is not your phone number." msgid "That is not your phone number."
msgstr "" msgstr "Isto non es tu numero de telephono."
#: actions/smssettings.php:465 #: actions/smssettings.php:465
msgid "Mobile carrier" msgid "Mobile carrier"
msgstr "" msgstr "Operator de telephonia mobile"
#: actions/smssettings.php:469 #: actions/smssettings.php:469
msgid "Select a carrier" msgid "Select a carrier"
msgstr "" msgstr "Selige un operator"
#: actions/smssettings.php:476 #: actions/smssettings.php:476
#, php-format #, php-format
@ -3561,51 +3575,56 @@ msgid ""
"Mobile carrier for your phone. If you know a carrier that accepts SMS over " "Mobile carrier for your phone. If you know a carrier that accepts SMS over "
"email but isn't listed here, send email to let us know at %s." "email but isn't listed here, send email to let us know at %s."
msgstr "" msgstr ""
"Le operator de telephonia mobile de tu telephono. Si tu cognosce un operator "
"que accepta SMS via e-mail ma non es listate hic, invia e-mail pro informar "
"nos a %s."
#: actions/smssettings.php:498 #: actions/smssettings.php:498
msgid "No code entered" msgid "No code entered"
msgstr "" msgstr "Nulle codice entrate"
#: actions/subedit.php:70 #: actions/subedit.php:70
msgid "You are not subscribed to that profile." msgid "You are not subscribed to that profile."
msgstr "" msgstr "Tu non es subscribite a iste profilo."
#: actions/subedit.php:83 #: actions/subedit.php:83
msgid "Could not save subscription." msgid "Could not save subscription."
msgstr "" msgstr "Non poteva salveguardar le subscription."
#: actions/subscribe.php:55 #: actions/subscribe.php:55
msgid "Not a local user." msgid "Not a local user."
msgstr "" msgstr "Le usator non es local."
#: actions/subscribe.php:69 #: actions/subscribe.php:69
msgid "Subscribed" msgid "Subscribed"
msgstr "" msgstr "Subscribite"
#: actions/subscribers.php:50 #: actions/subscribers.php:50
#, php-format #, php-format
msgid "%s subscribers" msgid "%s subscribers"
msgstr "" msgstr "Subscriptores a %s"
#: actions/subscribers.php:52 #: actions/subscribers.php:52
#, php-format #, php-format
msgid "%s subscribers, page %d" msgid "%s subscribers, page %d"
msgstr "" msgstr "Subscriptores a %s, pagina %d"
#: actions/subscribers.php:63 #: actions/subscribers.php:63
msgid "These are the people who listen to your notices." msgid "These are the people who listen to your notices."
msgstr "" msgstr "Iste personas seque tu notas."
#: actions/subscribers.php:67 #: actions/subscribers.php:67
#, php-format #, php-format
msgid "These are the people who listen to %s's notices." msgid "These are the people who listen to %s's notices."
msgstr "" msgstr "Iste personas seque le notas de %s."
#: actions/subscribers.php:108 #: actions/subscribers.php:108
msgid "" msgid ""
"You have no subscribers. Try subscribing to people you know and they might " "You have no subscribers. Try subscribing to people you know and they might "
"return the favor" "return the favor"
msgstr "" msgstr ""
"Tu non ha subscriptores. Tenta subscriber te a personas que tu cognosce e "
"illes poterea retornar te le favor."
#: actions/subscribers.php:110 #: actions/subscribers.php:110
#, php-format #, php-format
@ -4032,16 +4051,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "" msgstr ""
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "" msgstr ""
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -4096,140 +4115,140 @@ msgstr ""
msgid "Untitled page" msgid "Untitled page"
msgstr "" msgstr ""
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "" msgstr ""
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "" msgstr ""
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "" msgstr ""
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "" msgstr ""
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "" msgstr ""
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "" msgstr ""
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect to services" msgid "Connect to services"
msgstr "" msgstr ""
#: lib/action.php:440 #: lib/action.php:441
msgid "Change site configuration" msgid "Change site configuration"
msgstr "" msgstr ""
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "" msgstr ""
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "" msgstr ""
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "" msgstr ""
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "" msgstr ""
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "" msgstr ""
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "" msgstr ""
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "" msgstr ""
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "" msgstr ""
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "" msgstr ""
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "" msgstr ""
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "" msgstr ""
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "" msgstr ""
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "" msgstr ""
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "" msgstr ""
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "" msgstr ""
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "" msgstr ""
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "" msgstr ""
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "" msgstr ""
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "" msgstr ""
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "" msgstr ""
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
"broughtby%%](%%site.broughtbyurl%%). " "broughtby%%](%%site.broughtbyurl%%). "
msgstr "" msgstr ""
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "" msgstr ""
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4237,31 +4256,31 @@ msgid ""
"org/licensing/licenses/agpl-3.0.html)." "org/licensing/licenses/agpl-3.0.html)."
msgstr "" msgstr ""
#: lib/action.php:790 #: lib/action.php:791
msgid "Site content license" msgid "Site content license"
msgstr "" msgstr ""
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "" msgstr ""
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "" msgstr ""
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -4313,6 +4332,16 @@ msgstr ""
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "" msgstr ""
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Cambio del contrasigno"
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Cambio del contrasigno"
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "" msgstr ""
@ -4973,7 +5002,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
msgid "from" msgid "from"
msgstr "" msgstr ""
@ -5037,69 +5066,73 @@ msgstr ""
msgid "To" msgid "To"
msgstr "" msgstr ""
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "" msgstr ""
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "" msgstr ""
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "" msgstr ""
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "" msgstr ""
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "" msgstr ""
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "N" msgid "N"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "" msgstr ""
#: lib/noticelist.php:548 #: lib/noticelist.php:556
msgid "Repeated by" msgid "Repeated by"
msgstr "Repetite per" msgstr "Repetite per"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "" msgstr ""
#: lib/noticelist.php:620 #: lib/noticelist.php:628
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Nota delite." msgstr "Nota delite."

View File

@ -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-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:43:06+0000\n" "PO-Revision-Date: 2010-01-05 22:11: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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\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"
@ -194,11 +194,11 @@ msgstr "Gat ekki uppfært hóp."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "Gat ekki uppfært notanda." msgstr "Gat ekki uppfært notanda."
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "Mistókst að loka á notanda." msgstr "Mistókst að loka á notanda."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "Mistókst að opna fyrir notanda." msgstr "Mistókst að opna fyrir notanda."
@ -312,31 +312,31 @@ msgid "Could not find target user."
msgstr "" msgstr ""
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 "Stuttnefni geta bara verið lágstafir og tölustafir en engin bil." msgstr "Stuttnefni geta bara verið lágstafir og tölustafir en engin bil."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað." msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "Ekki tækt stuttnefni." msgstr "Ekki tækt stuttnefni."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "Heimasíða er ekki gild vefslóð." msgstr "Heimasíða er ekki gild vefslóð."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "Fullt nafn er of langt (í mesta lagi 255 stafir)." msgstr "Fullt nafn er of langt (í mesta lagi 255 stafir)."
@ -347,7 +347,7 @@ msgid "Description is too long (max %d chars)."
msgstr "Lýsing er of löng (í mesta lagi 140 tákn)." msgstr "Lýsing er of löng (í mesta lagi 140 tákn)."
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)." msgstr "Staðsetning er of löng (í mesta lagi 255 stafir)."
@ -467,7 +467,7 @@ msgstr "Þetta er of langt. Hámarkslengd babls er 140 tákn."
msgid "Not found" msgid "Not found"
msgstr "Fannst ekki" msgstr "Fannst ekki"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -597,7 +597,7 @@ msgid "Preview"
msgstr "Forsýn" msgstr "Forsýn"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "Eyða" msgstr "Eyða"
@ -610,13 +610,13 @@ msgid "Crop"
msgstr "Skera af" msgstr "Skera af"
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -689,7 +689,7 @@ msgstr "Já"
msgid "Block this user" msgid "Block this user"
msgstr "Loka á þennan notanda" msgstr "Loka á þennan notanda"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "Mistókst að vista upplýsingar um notendalokun" msgstr "Mistókst að vista upplýsingar um notendalokun"
@ -762,7 +762,7 @@ msgstr "Þetta tölvupóstfang hefur nú þegar verið staðfest."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "Gat ekki uppfært notanda." msgstr "Gat ekki uppfært notanda."
@ -823,7 +823,7 @@ msgstr "Ertu viss um að þú viljir eyða þessu babli?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "" msgstr ""
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Eyða þessu babli" msgstr "Eyða þessu babli"
@ -967,7 +967,7 @@ msgstr ""
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1463,7 +1463,7 @@ msgstr "Hópmeðlimir %s, síða %d"
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "Listi yfir notendur í þessum hóp." msgstr "Listi yfir notendur í þessum hóp."
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "Stjórnandi" msgstr "Stjórnandi"
@ -1550,7 +1550,7 @@ msgstr ""
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "" msgstr ""
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "Vill kom upp við að aflétta notendalokun." msgstr "Vill kom upp við að aflétta notendalokun."
@ -1738,7 +1738,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "Senda" msgstr "Senda"
@ -1862,7 +1862,7 @@ msgstr "Rangt notendanafn eða lykilorð."
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "Engin heimild." msgstr "Engin heimild."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Innskráning" msgstr "Innskráning"
@ -1978,7 +1978,7 @@ msgstr ""
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "Bein skilaboð send til %s" msgstr "Bein skilaboð send til %s"
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "Ajax villa" msgstr "Ajax villa"
@ -1986,7 +1986,7 @@ msgstr "Ajax villa"
msgid "New notice" msgid "New notice"
msgstr "Nýtt babl" msgstr "Nýtt babl"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "Babl sent inn" msgstr "Babl sent inn"
@ -2425,73 +2425,82 @@ msgstr "Staðsetning"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Staðsetning þín, eins og \"borg, sýsla, land\"" msgstr "Staðsetning þín, eins og \"borg, sýsla, land\""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "Merki" msgstr "Merki"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
"Merki fyrir þig (bókstafir, tölustafir, -, ., og _), aðskilin með kommu eða " "Merki fyrir þig (bókstafir, tölustafir, -, ., og _), aðskilin með kommu eða "
"bili" "bili"
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Tungumál" msgstr "Tungumál"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "Tungumál (ákjósanlegt)" msgstr "Tungumál (ákjósanlegt)"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "Tímabelti" msgstr "Tímabelti"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "Í hvaða tímabelti eru í rauninni?" msgstr "Í hvaða tímabelti eru í rauninni?"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
"Gerast sjálfkrafa áskrifandi að hverjum þeim sem gerist áskrifandi að þér " "Gerast sjálfkrafa áskrifandi að hverjum þeim sem gerist áskrifandi að þér "
"(best fyrir ómannlega notendur)" "(best fyrir ómannlega notendur)"
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, fuzzy, php-format #, fuzzy, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "Lýsingin er of löng (í mesta lagi 140 tákn)." msgstr "Lýsingin er of löng (í mesta lagi 140 tákn)."
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "Tímabelti ekki valið." msgstr "Tímabelti ekki valið."
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "Tungumál er of langt (í mesta lagi 50 stafir)." msgstr "Tungumál er of langt (í mesta lagi 50 stafir)."
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Ógilt merki: \"%s\"" msgstr "Ógilt merki: \"%s\""
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Gat ekki uppfært notanda í sjálfvirka áskrift." msgstr "Gat ekki uppfært notanda í sjálfvirka áskrift."
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
#, fuzzy
msgid "Couldn't save location prefs."
msgstr "Gat ekki vistað merki."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Gat ekki vistað persónulega síðu." msgstr "Gat ekki vistað persónulega síðu."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Gat ekki vistað merki." msgstr "Gat ekki vistað merki."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "Stillingar vistaðar." msgstr "Stillingar vistaðar."
@ -2584,7 +2593,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Merkjaský" msgstr "Merkjaský"
@ -2724,7 +2733,7 @@ msgstr ""
msgid "Registration successful" msgid "Registration successful"
msgstr "Nýskráning tókst" msgstr "Nýskráning tókst"
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "Nýskrá" msgstr "Nýskrá"
@ -2919,7 +2928,7 @@ msgstr "Þú getur ekki nýskráð þig nema þú samþykkir leyfið."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Þú hefur nú þegar lokað á þennan notanda." msgstr "Þú hefur nú þegar lokað á þennan notanda."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Í sviðsljósinu" msgstr "Í sviðsljósinu"
@ -4042,16 +4051,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Það hefur verið lagt bann við babli frá þér á þessari síðu." msgstr "Það hefur verið lagt bann við babli frá þér á þessari síðu."
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Vandamál komu upp við að vista babl." msgstr "Vandamál komu upp við að vista babl."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Gagnagrunnsvilla við innsetningu svars: %s" msgstr "Gagnagrunnsvilla við innsetningu svars: %s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -4106,132 +4115,132 @@ msgstr "%s - %s"
msgid "Untitled page" msgid "Untitled page"
msgstr "Ónafngreind síða" msgstr "Ónafngreind síða"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "Stikl aðalsíðu" msgstr "Stikl aðalsíðu"
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "Heim" msgstr "Heim"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "Persónuleg síða og vinarás" msgstr "Persónuleg síða og vinarás"
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "Aðgangur" msgstr "Aðgangur"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "" msgstr ""
"Breyttu tölvupóstinum þínum, einkennismyndinni þinni, lykilorðinu þínu, " "Breyttu tölvupóstinum þínum, einkennismyndinni þinni, lykilorðinu þínu, "
"persónulegu síðunni þinni" "persónulegu síðunni þinni"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Tengjast" msgstr "Tengjast"
#: lib/action.php:436 #: lib/action.php:437
#, fuzzy #, fuzzy
msgid "Connect to services" msgid "Connect to services"
msgstr "Gat ekki framsent til vefþjóns: %s" msgstr "Gat ekki framsent til vefþjóns: %s"
#: lib/action.php:440 #: lib/action.php:441
#, fuzzy #, fuzzy
msgid "Change site configuration" msgid "Change site configuration"
msgstr "Stikl aðalsíðu" msgstr "Stikl aðalsíðu"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "Bjóða" msgstr "Bjóða"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "Bjóða vinum og vandamönnum að slást í hópinn á %s" msgstr "Bjóða vinum og vandamönnum að slást í hópinn á %s"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "Útskráning" msgstr "Útskráning"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "Skrá þig út af síðunni" msgstr "Skrá þig út af síðunni"
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "Búa til aðgang" msgstr "Búa til aðgang"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "Skrá þig inn á síðuna" msgstr "Skrá þig inn á síðuna"
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Hjálp" msgstr "Hjálp"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "Hjálp!" msgstr "Hjálp!"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "Leita" msgstr "Leita"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "Leita að fólki eða texta" msgstr "Leita að fólki eða texta"
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "Babl vefsíðunnar" msgstr "Babl vefsíðunnar"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "Staðbundin sýn" msgstr "Staðbundin sýn"
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "Babl síðunnar" msgstr "Babl síðunnar"
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "Stikl undirsíðu" msgstr "Stikl undirsíðu"
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "Um" msgstr "Um"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "Spurt og svarað" msgstr "Spurt og svarað"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "" msgstr ""
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "Friðhelgi" msgstr "Friðhelgi"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "Frumþula" msgstr "Frumþula"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Tengiliður" msgstr "Tengiliður"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "" msgstr ""
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "Hugbúnaðarleyfi StatusNet" msgstr "Hugbúnaðarleyfi StatusNet"
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4240,12 +4249,12 @@ msgstr ""
"**%%site.name%%** er örbloggsþjónusta í boði [%%site.broughtby%%](%%site." "**%%site.name%%** er örbloggsþjónusta í boði [%%site.broughtby%%](%%site."
"broughtbyurl%%). " "broughtbyurl%%). "
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** er örbloggsþjónusta." msgstr "**%%site.name%%** er örbloggsþjónusta."
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4256,32 +4265,32 @@ msgstr ""
"sem er gefinn út undir [GNU Affero almenningsleyfinu](http://www.fsf.org/" "sem er gefinn út undir [GNU Affero almenningsleyfinu](http://www.fsf.org/"
"licensing/licenses/agpl-3.0.html)." "licensing/licenses/agpl-3.0.html)."
#: lib/action.php:790 #: lib/action.php:791
#, fuzzy #, fuzzy
msgid "Site content license" msgid "Site content license"
msgstr "Hugbúnaðarleyfi StatusNet" msgstr "Hugbúnaðarleyfi StatusNet"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "Allt " msgstr "Allt "
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "leyfi." msgstr "leyfi."
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "Uppröðun" msgstr "Uppröðun"
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "Eftir" msgstr "Eftir"
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "Áður" msgstr "Áður"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Það komu upp vandamál varðandi setutókann þinn." msgstr "Það komu upp vandamál varðandi setutókann þinn."
@ -4339,6 +4348,16 @@ msgstr ""
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "" msgstr ""
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Lykilorðabreyting"
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Lykilorðabreyting"
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "Niðurstöður skipunar" msgstr "Niðurstöður skipunar"
@ -5022,7 +5041,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr "frá" msgstr "frá"
@ -5088,71 +5107,75 @@ msgstr "Senda bein skilaboð"
msgid "To" msgid "To"
msgstr "Til" msgstr "Til"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "Leyfileg tákn" msgstr "Leyfileg tákn"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "Senda babl" msgstr "Senda babl"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
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:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "" msgstr ""
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "" msgstr ""
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "Nei" msgstr "Nei"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "" msgstr ""
#: lib/noticelist.php:548 #: lib/noticelist.php:556
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Í sviðsljósinu" msgstr "Í sviðsljósinu"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Svara þessu babli" msgstr "Svara þessu babli"
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "Svara" msgstr "Svara"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Babl sent inn" msgstr "Babl sent inn"

View File

@ -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-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:43:10+0000\n" "PO-Revision-Date: 2010-01-05 22:11:47+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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\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"
@ -199,11 +199,11 @@ msgstr "Impossibile aggiornare l'aspetto."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "Non puoi bloccarti!" msgstr "Non puoi bloccarti!"
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "Blocco dell'utente non riuscito." msgstr "Blocco dell'utente non riuscito."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "Sblocco dell'utente non riuscito." msgstr "Sblocco dell'utente non riuscito."
@ -315,7 +315,7 @@ msgid "Could not find target user."
msgstr "Impossibile trovare l'utente destinazione." msgstr "Impossibile trovare l'utente destinazione."
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 ""
@ -323,25 +323,25 @@ msgstr ""
"spazi." "spazi."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "Soprannome già in uso. Prova con un altro." msgstr "Soprannome già in uso. Prova con un altro."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "Non è un soprannome valido." msgstr "Non è un soprannome valido."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "L'indirizzo della pagina web non è valido." msgstr "L'indirizzo della pagina web non è valido."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "Nome troppo lungo (max 255 caratteri)." msgstr "Nome troppo lungo (max 255 caratteri)."
@ -352,7 +352,7 @@ msgid "Description is too long (max %d chars)."
msgstr "La descrizione è troppo lunga (max %d caratteri)." msgstr "La descrizione è troppo lunga (max %d caratteri)."
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "Ubicazione troppo lunga (max 255 caratteri)." msgstr "Ubicazione troppo lunga (max 255 caratteri)."
@ -467,7 +467,7 @@ msgstr "Troppo lungo. Lunghezza massima %d caratteri."
msgid "Not found" msgid "Not found"
msgstr "Non trovato" msgstr "Non trovato"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -598,7 +598,7 @@ msgid "Preview"
msgstr "Anteprima" msgstr "Anteprima"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "Elimina" msgstr "Elimina"
@ -611,13 +611,13 @@ msgid "Crop"
msgstr "Ritaglia" msgstr "Ritaglia"
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -691,7 +691,7 @@ msgstr "Sì"
msgid "Block this user" msgid "Block this user"
msgstr "Blocca questo utente" msgstr "Blocca questo utente"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "Salvataggio delle informazioni per il blocco non riuscito." msgstr "Salvataggio delle informazioni per il blocco non riuscito."
@ -763,7 +763,7 @@ msgstr "Quell'indirizzo è già stato confermato."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "Impossibile aggiornare l'utente." msgstr "Impossibile aggiornare l'utente."
@ -825,7 +825,7 @@ msgstr "Vuoi eliminare questo messaggio?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Non eliminare il messaggio" msgstr "Non eliminare il messaggio"
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Elimina questo messaggio" msgstr "Elimina questo messaggio"
@ -964,7 +964,7 @@ msgstr "Reimposta i valori predefiniti"
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1467,7 +1467,7 @@ msgstr "Membri del gruppo %s, pagina %d"
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "Un elenco degli utenti in questo gruppo." msgstr "Un elenco degli utenti in questo gruppo."
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "Amministra" msgstr "Amministra"
@ -1565,7 +1565,7 @@ msgstr "Solo gli amministratori possono sbloccare i membri del gruppo."
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "L'utente non è bloccato dal gruppo." msgstr "L'utente non è bloccato dal gruppo."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "Errore nel rimuovere il blocco." msgstr "Errore nel rimuovere il blocco."
@ -1751,7 +1751,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "Invia" msgstr "Invia"
@ -1873,7 +1873,7 @@ msgstr "Nome utente o password non corretto."
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "Errore nell'impostare l'utente. Forse non hai l'autorizzazione." msgstr "Errore nell'impostare l'utente. Forse non hai l'autorizzazione."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Accedi" msgstr "Accedi"
@ -1985,7 +1985,7 @@ msgstr "Messaggio inviato"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "Messaggio diretto a %s inviato" msgstr "Messaggio diretto a %s inviato"
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "Errore di Ajax" msgstr "Errore di Ajax"
@ -1993,7 +1993,7 @@ msgstr "Errore di Ajax"
msgid "New notice" msgid "New notice"
msgstr "Nuovo messaggio" msgstr "Nuovo messaggio"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "Messaggio inviato" msgstr "Messaggio inviato"
@ -2427,72 +2427,81 @@ msgstr "Ubicazione"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Dove ti trovi, tipo \"città, regione, stato\"" msgstr "Dove ti trovi, tipo \"città, regione, stato\""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "Etichette" msgstr "Etichette"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
"Le tue etichette (lettere, numeri, -, . e _), separate da virgole o spazi" "Le tue etichette (lettere, numeri, -, . e _), separate da virgole o spazi"
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Lingua" msgstr "Lingua"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "Lingua preferita" msgstr "Lingua preferita"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "Fuso orario" msgstr "Fuso orario"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "In che fuso orario risiedi solitamente?" msgstr "In che fuso orario risiedi solitamente?"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
"Abbonami automaticamente a chi si abbona ai miei messaggi (utile per i non-" "Abbonami automaticamente a chi si abbona ai miei messaggi (utile per i non-"
"umani)" "umani)"
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, php-format #, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "La biografia è troppo lunga (max %d caratteri)." msgstr "La biografia è troppo lunga (max %d caratteri)."
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "Fuso orario non selezionato" msgstr "Fuso orario non selezionato"
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "La lingua è troppo lunga (max 50 caratteri)." msgstr "La lingua è troppo lunga (max 50 caratteri)."
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Etichetta non valida: \"%s\"" msgstr "Etichetta non valida: \"%s\""
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Impossibile aggiornare l'utente per auto-abbonarsi." msgstr "Impossibile aggiornare l'utente per auto-abbonarsi."
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
#, fuzzy
msgid "Couldn't save location prefs."
msgstr "Impossibile salvare le etichette."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Impossibile salvare il profilo." msgstr "Impossibile salvare il profilo."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Impossibile salvare le etichette." msgstr "Impossibile salvare le etichette."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "Impostazioni salvate." msgstr "Impostazioni salvate."
@ -2595,7 +2604,7 @@ msgid ""
"one!" "one!"
msgstr "Perché non [crei un accout](%%action.register%%) e ne scrivi uno tu!" msgstr "Perché non [crei un accout](%%action.register%%) e ne scrivi uno tu!"
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Insieme delle etichette" msgstr "Insieme delle etichette"
@ -2736,7 +2745,7 @@ msgstr "Codice di invito non valido."
msgid "Registration successful" msgid "Registration successful"
msgstr "Registrazione riuscita" msgstr "Registrazione riuscita"
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "Registra" msgstr "Registra"
@ -2928,7 +2937,7 @@ msgstr "Non puoi ripetere i tuoi stessi messaggi."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Hai già ripetuto quel messaggio." msgstr "Hai già ripetuto quel messaggio."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
msgid "Repeated" msgid "Repeated"
msgstr "Ripetuti" msgstr "Ripetuti"
@ -4079,16 +4088,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Ti è proibito inviare messaggi su questo sito." msgstr "Ti è proibito inviare messaggi su questo sito."
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Problema nel salvare il messaggio." msgstr "Problema nel salvare il messaggio."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Errore del DB nell'inserire la risposta: %s" msgstr "Errore del DB nell'inserire la risposta: %s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -4143,128 +4152,128 @@ msgstr "%s - %s"
msgid "Untitled page" msgid "Untitled page"
msgstr "Pagina senza nome" msgstr "Pagina senza nome"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "Esplorazione sito primaria" msgstr "Esplorazione sito primaria"
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "Home" msgstr "Home"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "Profilo personale e attività degli amici" msgstr "Profilo personale e attività degli amici"
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "Account" msgstr "Account"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "Modifica la tua email, immagine, password o il tuo profilo" msgstr "Modifica la tua email, immagine, password o il tuo profilo"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Connetti" msgstr "Connetti"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect to services" msgid "Connect to services"
msgstr "Connettiti con altri servizi" msgstr "Connettiti con altri servizi"
#: lib/action.php:440 #: lib/action.php:441
msgid "Change site configuration" msgid "Change site configuration"
msgstr "Modifica la configurazione del sito" msgstr "Modifica la configurazione del sito"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "Invita" msgstr "Invita"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "Invita amici e colleghi a seguirti su %s" msgstr "Invita amici e colleghi a seguirti su %s"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "Esci" msgstr "Esci"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "Termina la tua sessione sul sito" msgstr "Termina la tua sessione sul sito"
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "Crea un account" msgstr "Crea un account"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "Accedi al sito" msgstr "Accedi al sito"
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Aiuto" msgstr "Aiuto"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "Aiutami!" msgstr "Aiutami!"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "Cerca" msgstr "Cerca"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "Cerca persone o del testo" msgstr "Cerca persone o del testo"
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "Messaggio del sito" msgstr "Messaggio del sito"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "Viste locali" msgstr "Viste locali"
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "Pagina messaggio" msgstr "Pagina messaggio"
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "Esplorazione secondaria del sito" msgstr "Esplorazione secondaria del sito"
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "Informazioni" msgstr "Informazioni"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "FAQ" msgstr "FAQ"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "TOS" msgstr "TOS"
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "Privacy" msgstr "Privacy"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "Sorgenti" msgstr "Sorgenti"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Contatti" msgstr "Contatti"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "Badge" msgstr "Badge"
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "Licenza del software StatusNet" msgstr "Licenza del software StatusNet"
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4273,12 +4282,12 @@ msgstr ""
"**%%site.name%%** è un servizio di microblog offerto da [%%site.broughtby%%]" "**%%site.name%%** è un servizio di microblog offerto da [%%site.broughtby%%]"
"(%%site.broughtbyurl%%). " "(%%site.broughtbyurl%%). "
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** è un servizio di microblog. " msgstr "**%%site.name%%** è un servizio di microblog. "
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4289,31 +4298,31 @@ msgstr ""
"s, disponibile nei termini della licenza [GNU Affero General Public License]" "s, disponibile nei termini della licenza [GNU Affero General Public License]"
"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)."
#: lib/action.php:790 #: lib/action.php:791
msgid "Site content license" msgid "Site content license"
msgstr "Licenza del contenuto del sito" msgstr "Licenza del contenuto del sito"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "Tutti " msgstr "Tutti "
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "licenza." msgstr "licenza."
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "Paginazione" msgstr "Paginazione"
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "Successivi" msgstr "Successivi"
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "Precedenti" msgstr "Precedenti"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Si è verificato un problema con il tuo token di sessione." msgstr "Si è verificato un problema con il tuo token di sessione."
@ -4365,6 +4374,16 @@ msgstr "Messaggi in cui appare questo allegato"
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "Etichette per questo allegato" msgstr "Etichette per questo allegato"
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Modifica password"
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Modifica password"
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "Risultati comando" msgstr "Risultati comando"
@ -5162,7 +5181,7 @@ msgstr ""
"iniziare una conversazione con altri utenti. Altre persone possono mandare " "iniziare una conversazione con altri utenti. Altre persone possono mandare "
"messaggi riservati solamente a te." "messaggi riservati solamente a te."
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
msgid "from" msgid "from"
msgstr "via" msgstr "via"
@ -5229,69 +5248,73 @@ msgstr "Invia un messaggio diretto"
msgid "To" msgid "To"
msgstr "A" msgstr "A"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "Caratteri disponibili" msgstr "Caratteri disponibili"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "Invia un messaggio" msgstr "Invia un messaggio"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "Cosa succede, %s?" msgstr "Cosa succede, %s?"
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "Allega" msgstr "Allega"
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "Allega un file" msgstr "Allega un file"
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "N" msgid "N"
msgstr "N" msgstr "N"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "S" msgstr "S"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "E" msgstr "E"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "O" msgstr "O"
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "presso" msgstr "presso"
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "nel contesto" msgstr "nel contesto"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
msgid "Repeated by" msgid "Repeated by"
msgstr "Ripetuto da" msgstr "Ripetuto da"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Rispondi a questo messaggio" msgstr "Rispondi a questo messaggio"
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "Rispondi" msgstr "Rispondi"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Messaggio ripetuto" msgstr "Messaggio ripetuto"

File diff suppressed because it is too large Load Diff

View File

@ -7,12 +7,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:43:16+0000\n" "PO-Revision-Date: 2010-01-05 22:11:54+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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\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"
@ -193,11 +193,11 @@ msgstr "사용자를 업데이트 할 수 없습니다."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "사용자를 업데이트 할 수 없습니다." msgstr "사용자를 업데이트 할 수 없습니다."
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "사용자 차단에 실패했습니다." msgstr "사용자 차단에 실패했습니다."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "사용자 차단 해제에 실패했습니다." msgstr "사용자 차단 해제에 실패했습니다."
@ -314,7 +314,7 @@ msgid "Could not find target user."
msgstr "어떠한 상태도 찾을 수 없습니다." msgstr "어떠한 상태도 찾을 수 없습니다."
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 ""
@ -322,25 +322,25 @@ msgstr ""
"다." "다."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오." msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "유효한 별명이 아닙니다" msgstr "유효한 별명이 아닙니다"
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "홈페이지 주소형식이 올바르지 않습니다." msgstr "홈페이지 주소형식이 올바르지 않습니다."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "실명이 너무 깁니다. (최대 255글자)" msgstr "실명이 너무 깁니다. (최대 255글자)"
@ -351,7 +351,7 @@ msgid "Description is too long (max %d chars)."
msgstr "설명이 너무 길어요. (최대 140글자)" msgstr "설명이 너무 길어요. (최대 140글자)"
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "위치가 너무 깁니다. (최대 255글자)" msgstr "위치가 너무 깁니다. (최대 255글자)"
@ -472,7 +472,7 @@ msgstr "너무 깁니다. 통지의 최대 길이는 140글자 입니다."
msgid "Not found" msgid "Not found"
msgstr "찾지 못함" msgstr "찾지 못함"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -603,7 +603,7 @@ msgid "Preview"
msgstr "미리보기" msgstr "미리보기"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "삭제" msgstr "삭제"
@ -616,13 +616,13 @@ msgid "Crop"
msgstr "자르기" msgstr "자르기"
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -695,7 +695,7 @@ msgstr "네, 맞습니다."
msgid "Block this user" msgid "Block this user"
msgstr "이 사용자 차단하기" msgstr "이 사용자 차단하기"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "정보차단을 저장하는데 실패했습니다." msgstr "정보차단을 저장하는데 실패했습니다."
@ -770,7 +770,7 @@ msgstr "그 주소는 이미 승인되었습니다."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "사용자를 업데이트 할 수 없습니다." msgstr "사용자를 업데이트 할 수 없습니다."
@ -834,7 +834,7 @@ msgstr "정말로 통지를 삭제하시겠습니까?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "이 통지를 지울 수 없습니다." msgstr "이 통지를 지울 수 없습니다."
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "이 게시글 삭제하기" msgstr "이 게시글 삭제하기"
@ -983,7 +983,7 @@ msgstr ""
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1493,7 +1493,7 @@ msgstr "%s 그룹 회원, %d페이지"
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "이 그룹의 회원리스트" msgstr "이 그룹의 회원리스트"
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "관리자" msgstr "관리자"
@ -1586,7 +1586,7 @@ msgstr ""
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "회원이 당신을 차단해왔습니다." msgstr "회원이 당신을 차단해왔습니다."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "차단 제거 에러!" msgstr "차단 제거 에러!"
@ -1767,7 +1767,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "보내기" msgstr "보내기"
@ -1886,7 +1886,7 @@ msgstr "틀린 계정 또는 비밀 번호"
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "인증이 되지 않았습니다." msgstr "인증이 되지 않았습니다."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "로그인" msgstr "로그인"
@ -1999,7 +1999,7 @@ msgstr "메시지"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "%s에게 보낸 직접 메시지" msgstr "%s에게 보낸 직접 메시지"
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "Ajax 에러입니다." msgstr "Ajax 에러입니다."
@ -2007,7 +2007,7 @@ msgstr "Ajax 에러입니다."
msgid "New notice" msgid "New notice"
msgstr "새로운 통지" msgstr "새로운 통지"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "게시글이 등록되었습니다." msgstr "게시글이 등록되었습니다."
@ -2444,69 +2444,78 @@ msgstr "위치"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "당신은 어디에 삽니까? \"시, 도 (or 군,구), 나라" msgstr "당신은 어디에 삽니까? \"시, 도 (or 군,구), 나라"
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "태그" msgstr "태그"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "당신을 위한 태그, (문자,숫자,-, ., _로 구성) 콤마 혹은 공백으로 구분." msgstr "당신을 위한 태그, (문자,숫자,-, ., _로 구성) 콤마 혹은 공백으로 구분."
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "언어" msgstr "언어"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "언어 설정" msgstr "언어 설정"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "타임존" msgstr "타임존"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "당신이 주로 생활하는 곳이 어떤 타임존입니까?" msgstr "당신이 주로 생활하는 곳이 어떤 타임존입니까?"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "나에게 구독하는 사람에게 자동 구독 신청" msgstr "나에게 구독하는 사람에게 자동 구독 신청"
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, fuzzy, php-format #, fuzzy, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "자기소개가 너무 깁니다. (최대 140글자)" msgstr "자기소개가 너무 깁니다. (최대 140글자)"
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "타임존이 설정 되지 않았습니다." msgstr "타임존이 설정 되지 않았습니다."
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "언어가 너무 깁니다. (최대 50글자)" msgstr "언어가 너무 깁니다. (최대 50글자)"
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "유효하지 않은태그: \"%s\"" msgstr "유효하지 않은태그: \"%s\""
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "자동구독에 사용자를 업데이트 할 수 없습니다." msgstr "자동구독에 사용자를 업데이트 할 수 없습니다."
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
#, fuzzy
msgid "Couldn't save location prefs."
msgstr "태그를 저장할 수 없습니다."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "프로필을 저장 할 수 없습니다." msgstr "프로필을 저장 할 수 없습니다."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "태그를 저장할 수 없습니다." msgstr "태그를 저장할 수 없습니다."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "설정 저장" msgstr "설정 저장"
@ -2604,7 +2613,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "태그 클라우드" msgstr "태그 클라우드"
@ -2742,7 +2751,7 @@ msgstr "확인 코드 오류"
msgid "Registration successful" msgid "Registration successful"
msgstr "회원 가입이 성공적입니다." msgstr "회원 가입이 성공적입니다."
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "회원가입" msgstr "회원가입"
@ -2936,7 +2945,7 @@ msgstr "라이선스에 동의하지 않는다면 등록할 수 없습니다."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "당신은 이미 이 사용자를 차단하고 있습니다." msgstr "당신은 이미 이 사용자를 차단하고 있습니다."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "생성" msgstr "생성"
@ -4071,16 +4080,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었습니다." msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었습니다."
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "통지를 저장하는데 문제가 발생했습니다." msgstr "통지를 저장하는데 문제가 발생했습니다."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "답신을 추가 할 때에 데이타베이스 에러 : %s" msgstr "답신을 추가 할 때에 데이타베이스 에러 : %s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -4136,131 +4145,131 @@ msgstr "%s - %s"
msgid "Untitled page" msgid "Untitled page"
msgstr "제목없는 페이지" msgstr "제목없는 페이지"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "주 사이트 네비게이션" msgstr "주 사이트 네비게이션"
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "홈" msgstr "홈"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "개인 프로필과 친구 타임라인" msgstr "개인 프로필과 친구 타임라인"
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "계정" msgstr "계정"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "당신의 이메일, 아바타, 비밀 번호, 프로필을 변경하세요." msgstr "당신의 이메일, 아바타, 비밀 번호, 프로필을 변경하세요."
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "연결" msgstr "연결"
#: lib/action.php:436 #: lib/action.php:437
#, fuzzy #, fuzzy
msgid "Connect to services" msgid "Connect to services"
msgstr "서버에 재접속 할 수 없습니다 : %s" msgstr "서버에 재접속 할 수 없습니다 : %s"
#: lib/action.php:440 #: lib/action.php:441
#, fuzzy #, fuzzy
msgid "Change site configuration" msgid "Change site configuration"
msgstr "주 사이트 네비게이션" msgstr "주 사이트 네비게이션"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "초대" msgstr "초대"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다." msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다."
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "로그아웃" msgstr "로그아웃"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "이 사이트로부터 로그아웃" msgstr "이 사이트로부터 로그아웃"
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "계정 만들기" msgstr "계정 만들기"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "이 사이트 로그인" msgstr "이 사이트 로그인"
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "도움말" msgstr "도움말"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "도움이 필요해!" msgstr "도움이 필요해!"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "검색" msgstr "검색"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "프로필이나 텍스트 검색" msgstr "프로필이나 텍스트 검색"
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "사이트 공지" msgstr "사이트 공지"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "로컬 뷰" msgstr "로컬 뷰"
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "페이지 공지" msgstr "페이지 공지"
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "보조 사이트 네비게이션" msgstr "보조 사이트 네비게이션"
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "정보" msgstr "정보"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "자주 묻는 질문" msgstr "자주 묻는 질문"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "" msgstr ""
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "개인정보 취급방침" msgstr "개인정보 취급방침"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "소스 코드" msgstr "소스 코드"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "연락하기" msgstr "연락하기"
#: lib/action.php:741 #: lib/action.php:742
#, fuzzy #, fuzzy
msgid "Badge" msgid "Badge"
msgstr "찔러 보기" msgstr "찔러 보기"
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "라코니카 소프트웨어 라이선스" msgstr "라코니카 소프트웨어 라이선스"
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4269,12 +4278,12 @@ msgstr ""
"**%%site.name%%** 는 [%%site.broughtby%%](%%site.broughtbyurl%%)가 제공하는 " "**%%site.name%%** 는 [%%site.broughtby%%](%%site.broughtbyurl%%)가 제공하는 "
"마이크로블로깅서비스입니다." "마이크로블로깅서비스입니다."
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다." msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다."
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4285,32 +4294,32 @@ msgstr ""
"을 사용합니다. StatusNet는 [GNU Affero General Public License](http://www." "을 사용합니다. StatusNet는 [GNU Affero General Public License](http://www."
"fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다." "fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다."
#: lib/action.php:790 #: lib/action.php:791
#, fuzzy #, fuzzy
msgid "Site content license" msgid "Site content license"
msgstr "라코니카 소프트웨어 라이선스" msgstr "라코니카 소프트웨어 라이선스"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "모든 것" msgstr "모든 것"
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "라이선스" msgstr "라이선스"
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "페이지수" msgstr "페이지수"
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "뒷 페이지" msgstr "뒷 페이지"
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "앞 페이지" msgstr "앞 페이지"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "당신의 세션토큰관련 문제가 있습니다." msgstr "당신의 세션토큰관련 문제가 있습니다."
@ -4370,6 +4379,16 @@ msgstr ""
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "" msgstr ""
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "비밀번호 변경"
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "비밀번호 변경"
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "실행결과" msgstr "실행결과"
@ -5049,7 +5068,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr "다음에서:" msgstr "다음에서:"
@ -5114,72 +5133,76 @@ msgstr "직접 메시지 보내기"
msgid "To" msgid "To"
msgstr "에게" msgstr "에게"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "사용 가능한 글자" msgstr "사용 가능한 글자"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "게시글 보내기" msgstr "게시글 보내기"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "뭐하세요? %?" msgstr "뭐하세요? %?"
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "" msgstr ""
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "" msgstr ""
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "아니오" msgstr "아니오"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:523 #: lib/noticelist.php:531
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "내용이 없습니다!" msgstr "내용이 없습니다!"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "생성" msgstr "생성"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "이 게시글에 대해 답장하기" msgstr "이 게시글에 대해 답장하기"
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "답장하기" msgstr "답장하기"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "게시글이 등록되었습니다." msgstr "게시글이 등록되었습니다."

File diff suppressed because it is too large Load Diff

View File

@ -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-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:43:22+0000\n" "PO-Revision-Date: 2010-01-05 22:12:02+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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\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"
@ -199,11 +199,11 @@ msgstr "Klarte ikke å oppdatere bruker."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "Du kan ikke blokkere deg selv!" msgstr "Du kan ikke blokkere deg selv!"
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "Blokkering av bruker mislyktes." msgstr "Blokkering av bruker mislyktes."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "Oppheving av blokkering av bruker mislyktes." msgstr "Oppheving av blokkering av bruker mislyktes."
@ -317,31 +317,31 @@ msgid "Could not find target user."
msgstr "Klarte ikke å oppdatere bruker." msgstr "Klarte ikke å oppdatere bruker."
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 "Kallenavn kan kun ha små bokstaver og tall og ingen mellomrom." msgstr "Kallenavn kan kun ha små bokstaver og tall og ingen mellomrom."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "Det nicket er allerede i bruk. Prøv et annet." msgstr "Det nicket er allerede i bruk. Prøv et annet."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "Ugyldig nick." msgstr "Ugyldig nick."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "Hjemmesiden er ikke en gyldig URL." msgstr "Hjemmesiden er ikke en gyldig URL."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "Beklager, navnet er for langt (max 250 tegn)." msgstr "Beklager, navnet er for langt (max 250 tegn)."
@ -352,7 +352,7 @@ msgid "Description is too long (max %d chars)."
msgstr "Beskrivelsen er for lang (maks %d tegn)." msgstr "Beskrivelsen er for lang (maks %d tegn)."
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "" msgstr ""
@ -471,7 +471,7 @@ msgstr ""
msgid "Not found" msgid "Not found"
msgstr "" msgstr ""
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -602,7 +602,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
#, fuzzy #, fuzzy
msgid "Delete" msgid "Delete"
msgstr "slett" msgstr "slett"
@ -616,13 +616,13 @@ msgid "Crop"
msgstr "" msgstr ""
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -695,7 +695,7 @@ msgstr "Ja"
msgid "Block this user" msgid "Block this user"
msgstr "" msgstr ""
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "" msgstr ""
@ -769,7 +769,7 @@ msgstr ""
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "Klarte ikke å oppdatere bruker." msgstr "Klarte ikke å oppdatere bruker."
@ -831,7 +831,7 @@ msgstr "Er du sikker på at du vil slette denne notisen?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Kan ikke slette notisen." msgstr "Kan ikke slette notisen."
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "" msgstr ""
@ -975,7 +975,7 @@ msgstr ""
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1472,7 +1472,7 @@ msgstr ""
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "En liste over brukerne i denne gruppen." msgstr "En liste over brukerne i denne gruppen."
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "Administrator" msgstr "Administrator"
@ -1561,7 +1561,7 @@ msgstr ""
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "" msgstr ""
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "" msgstr ""
@ -1734,7 +1734,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "Send" msgstr "Send"
@ -1853,7 +1853,7 @@ msgstr "Feil brukernavn eller passord"
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "Ikke autorisert." msgstr "Ikke autorisert."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Logg inn" msgstr "Logg inn"
@ -1961,7 +1961,7 @@ msgstr ""
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "" msgstr ""
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "" msgstr ""
@ -1969,7 +1969,7 @@ msgstr ""
msgid "New notice" msgid "New notice"
msgstr "" msgstr ""
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "" msgstr ""
@ -2396,71 +2396,80 @@ msgstr ""
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "" msgstr ""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "Tagger" msgstr "Tagger"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Språk" msgstr "Språk"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "" msgstr ""
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "Tidssone" msgstr "Tidssone"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "" msgstr ""
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
"Abonner automatisk på de som abonnerer på meg (best for ikke-mennesker)" "Abonner automatisk på de som abonnerer på meg (best for ikke-mennesker)"
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, fuzzy, php-format #, fuzzy, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "«Om meg» er for lang (maks 140 tegn)." msgstr "«Om meg» er for lang (maks 140 tegn)."
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "" msgstr ""
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "" msgstr ""
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, fuzzy, php-format #, fuzzy, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Ugyldig hjemmeside '%s'" msgstr "Ugyldig hjemmeside '%s'"
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
#, fuzzy
msgid "Couldn't save location prefs."
msgstr "Klarte ikke å lagre profil."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Klarte ikke å lagre profil." msgstr "Klarte ikke å lagre profil."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
#, fuzzy #, fuzzy
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Klarte ikke å lagre profil." msgstr "Klarte ikke å lagre profil."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "" msgstr ""
@ -2554,7 +2563,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -2692,7 +2701,7 @@ msgstr ""
msgid "Registration successful" msgid "Registration successful"
msgstr "" msgstr ""
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "" msgstr ""
@ -2878,7 +2887,7 @@ msgstr ""
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Du er allerede logget inn!" msgstr "Du er allerede logget inn!"
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Opprett" msgstr "Opprett"
@ -3978,16 +3987,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "" msgstr ""
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "" msgstr ""
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -4045,131 +4054,131 @@ msgstr ""
msgid "Untitled page" msgid "Untitled page"
msgstr "" msgstr ""
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "" msgstr ""
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "Hjem" msgstr "Hjem"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "" msgstr ""
#: lib/action.php:433 #: lib/action.php:434
#, fuzzy #, fuzzy
msgid "Account" msgid "Account"
msgstr "Om" msgstr "Om"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "" msgstr ""
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Koble til" msgstr "Koble til"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect to services" msgid "Connect to services"
msgstr "" msgstr ""
#: lib/action.php:440 #: lib/action.php:441
msgid "Change site configuration" msgid "Change site configuration"
msgstr "" msgstr ""
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "" msgstr ""
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "" msgstr ""
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "Logg ut" msgstr "Logg ut"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "" msgstr ""
#: lib/action.php:455 #: lib/action.php:456
#, fuzzy #, fuzzy
msgid "Create an account" msgid "Create an account"
msgstr "Opprett en ny konto" msgstr "Opprett en ny konto"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "" msgstr ""
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Hjelp" msgstr "Hjelp"
#: lib/action.php:461 #: lib/action.php:462
#, fuzzy #, fuzzy
msgid "Help me!" msgid "Help me!"
msgstr "Hjelp" msgstr "Hjelp"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "Søk" msgstr "Søk"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "" msgstr ""
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "" msgstr ""
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "" msgstr ""
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "" msgstr ""
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "" msgstr ""
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "Om" msgstr "Om"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "OSS/FAQ" msgstr "OSS/FAQ"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "" msgstr ""
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "" msgstr ""
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "Kilde" msgstr "Kilde"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Kontakt" msgstr "Kontakt"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "" msgstr ""
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "" msgstr ""
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4178,12 +4187,12 @@ msgstr ""
"**%%site.name%%** er en mikrobloggingtjeneste av [%%site.broughtby%%](%%site." "**%%site.name%%** er en mikrobloggingtjeneste av [%%site.broughtby%%](%%site."
"broughtbyurl%%). " "broughtbyurl%%). "
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** er en mikrobloggingtjeneste. " msgstr "**%%site.name%%** er en mikrobloggingtjeneste. "
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4191,32 +4200,32 @@ msgid ""
"org/licensing/licenses/agpl-3.0.html)." "org/licensing/licenses/agpl-3.0.html)."
msgstr "" msgstr ""
#: lib/action.php:790 #: lib/action.php:791
msgid "Site content license" msgid "Site content license"
msgstr "" msgstr ""
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "" msgstr ""
#: lib/action.php:1115 #: lib/action.php:1116
#, fuzzy #, fuzzy
msgid "Before" msgid "Before"
msgstr "Tidligere »" msgstr "Tidligere »"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -4269,6 +4278,16 @@ msgstr ""
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "" msgstr ""
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Passordet ble lagret"
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Passordet ble lagret"
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "" msgstr ""
@ -4952,7 +4971,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr "fra" msgstr "fra"
@ -5017,72 +5036,76 @@ msgstr ""
msgid "To" msgid "To"
msgstr "" msgstr ""
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
#, fuzzy #, fuzzy
msgid "Available characters" msgid "Available characters"
msgstr "6 eller flere tegn" msgstr "6 eller flere tegn"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "" msgstr ""
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "" msgstr ""
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "" msgstr ""
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "" msgstr ""
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "N" msgid "N"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "" msgstr ""
#: lib/noticelist.php:548 #: lib/noticelist.php:556
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Opprett" msgstr "Opprett"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:578 #: lib/noticelist.php:586
#, fuzzy #, fuzzy
msgid "Reply" msgid "Reply"
msgstr "svar" msgstr "svar"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Nytt nick" msgstr "Nytt nick"

View File

@ -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-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:43:30+0000\n" "PO-Revision-Date: 2010-01-05 22:12:13+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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\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"
@ -200,11 +200,11 @@ msgstr "Het was niet mogelijk uw ontwerp bij te werken."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "U kunt zichzelf niet blokkeren!" msgstr "U kunt zichzelf niet blokkeren!"
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "Het blokkeren van de gebruiker is mislukt." msgstr "Het blokkeren van de gebruiker is mislukt."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "Het deblokkeren van de gebruiker is mislukt." msgstr "Het deblokkeren van de gebruiker is mislukt."
@ -321,7 +321,7 @@ msgid "Could not find target user."
msgstr "Het was niet mogelijk de doelgebruiker te vinden." msgstr "Het was niet mogelijk de doelgebruiker te vinden."
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 ""
@ -329,26 +329,26 @@ msgstr ""
"geen spaties bevatten." "geen spaties bevatten."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "" msgstr ""
"De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam." "De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "Geen geldige gebruikersnaam." msgstr "Geen geldige gebruikersnaam."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "De thuispagina is geen geldige URL." msgstr "De thuispagina is geen geldige URL."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "De volledige naam is te lang (maximaal 255 tekens)." msgstr "De volledige naam is te lang (maximaal 255 tekens)."
@ -359,7 +359,7 @@ msgid "Description is too long (max %d chars)."
msgstr "De beschrijving is te lang. Gebruik maximaal %d tekens." msgstr "De beschrijving is te lang. Gebruik maximaal %d tekens."
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "Locatie is te lang (maximaal 255 tekens)." msgstr "Locatie is te lang (maximaal 255 tekens)."
@ -474,7 +474,7 @@ msgstr "Dat is te lang. De maximale mededelingslengte is 140 tekens."
msgid "Not found" msgid "Not found"
msgstr "Niet gevonden" msgstr "Niet gevonden"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -606,7 +606,7 @@ msgid "Preview"
msgstr "Voorvertoning" msgstr "Voorvertoning"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "Verwijderen" msgstr "Verwijderen"
@ -619,13 +619,13 @@ msgid "Crop"
msgstr "Uitsnijden" msgstr "Uitsnijden"
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -701,7 +701,7 @@ msgstr "Ja"
msgid "Block this user" msgid "Block this user"
msgstr "Deze gebruiker blokkeren" msgstr "Deze gebruiker blokkeren"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "Het was niet mogelijk om de blokkadeinformatie op te slaan." msgstr "Het was niet mogelijk om de blokkadeinformatie op te slaan."
@ -773,7 +773,7 @@ msgstr "Dit adres is al bevestigd."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "Kon gebruiker niet actualiseren." msgstr "Kon gebruiker niet actualiseren."
@ -835,7 +835,7 @@ msgstr "Weet u zeker dat u deze aankondiging wilt verwijderen?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Deze mededeling niet verwijderen" msgstr "Deze mededeling niet verwijderen"
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Deze mededeling verwijderen" msgstr "Deze mededeling verwijderen"
@ -975,7 +975,7 @@ msgstr "Standaardinstellingen toepassen"
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1484,7 +1484,7 @@ msgstr "% groeps leden, pagina %d"
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "Ledenlijst van deze groep" msgstr "Ledenlijst van deze groep"
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "Beheerder" msgstr "Beheerder"
@ -1584,7 +1584,7 @@ msgstr "Alleen beheerders kunnen groepsleden deblokkeren."
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "De gebruiker is niet de toegang tot de groep ontzegd." msgstr "De gebruiker is niet de toegang tot de groep ontzegd."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "Er is een fout opgetreden bij het verwijderen van de blokkade." msgstr "Er is een fout opgetreden bij het verwijderen van de blokkade."
@ -1772,7 +1772,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "Verzenden" msgstr "Verzenden"
@ -1896,7 +1896,7 @@ msgstr ""
"Er is een fout opgetreden bij het maken van de instellingen. U hebt " "Er is een fout opgetreden bij het maken van de instellingen. U hebt "
"waarschijnlijk niet de juiste rechten." "waarschijnlijk niet de juiste rechten."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Aanmelden" msgstr "Aanmelden"
@ -2007,7 +2007,7 @@ msgstr "Bericht verzonden."
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "Het directe bericht aan %s is verzonden" msgstr "Het directe bericht aan %s is verzonden"
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "Er is een Ajax-fout opgetreden" msgstr "Er is een Ajax-fout opgetreden"
@ -2015,7 +2015,7 @@ msgstr "Er is een Ajax-fout opgetreden"
msgid "New notice" msgid "New notice"
msgstr "Nieuw bericht" msgstr "Nieuw bericht"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "De mededeling is verzonden" msgstr "De mededeling is verzonden"
@ -2448,75 +2448,83 @@ msgstr "Locatie"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Waar u bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\"" msgstr "Waar u bent, bijvoorbeeld \"woonplaats, land\" of \"postcode, land\""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr "Mijn huidige locatie weergeven bij het plaatsen van mededelingen"
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "Labels" msgstr "Labels"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
"Eigen labels (letter, getallen, -, ., en _). Gescheiden door komma's of " "Eigen labels (letter, getallen, -, ., en _). Gescheiden door komma's of "
"spaties" "spaties"
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Taal" msgstr "Taal"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "Voorkeurstaal" msgstr "Voorkeurstaal"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "Tijdzone" msgstr "Tijdzone"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "In welke tijdzone verblijft u meestal?" msgstr "In welke tijdzone verblijft u meestal?"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
"Automatisch abonneren bij abonnement op mij (beste voor automatische " "Automatisch abonneren bij abonnement op mij (beste voor automatische "
"processen)" "processen)"
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, php-format #, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "De beschrijving is te lang (maximaal %d tekens)." msgstr "De beschrijving is te lang (maximaal %d tekens)."
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "Er is geen tijdzone geselecteerd." msgstr "Er is geen tijdzone geselecteerd."
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "Taal is te lang (max 50 tekens)." msgstr "Taal is te lang (max 50 tekens)."
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Ongeldig label: '%s'" msgstr "Ongeldig label: '%s'"
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
"Het was niet mogelijk de instelling voor automatisch abonneren voor de " "Het was niet mogelijk de instelling voor automatisch abonneren voor de "
"gebruiker bij te werken." "gebruiker bij te werken."
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
msgid "Couldn't save location prefs."
msgstr "Het was niet mogelijk de locatievoorkeuren op te slaan."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Het profiel kon niet opgeslagen worden." msgstr "Het profiel kon niet opgeslagen worden."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Het was niet mogelijk de labels op te slaan." msgstr "Het was niet mogelijk de labels op te slaan."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "De instellingen zijn opgeslagen." msgstr "De instellingen zijn opgeslagen."
@ -2623,7 +2631,7 @@ msgstr ""
"U kunt een [gebruiker registeren](%%action.register%%) en dan de eerste zijn " "U kunt een [gebruiker registeren](%%action.register%%) en dan de eerste zijn "
"die er een plaatst!" "die er een plaatst!"
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Woordwolk" msgstr "Woordwolk"
@ -2768,7 +2776,7 @@ msgstr "Sorry. De uitnodigingscode is ongeldig."
msgid "Registration successful" msgid "Registration successful"
msgstr "De registratie is voltooid" msgstr "De registratie is voltooid"
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "Registreren" msgstr "Registreren"
@ -2959,7 +2967,7 @@ msgstr "U kunt uw eigen mededeling niet herhalen."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "U hent die mededeling al herhaald." msgstr "U hent die mededeling al herhaald."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
msgid "Repeated" msgid "Repeated"
msgstr "Herhaald" msgstr "Herhaald"
@ -3576,15 +3584,15 @@ msgstr "U hebt dit al ingesteld als uw telefoonnummer."
#: actions/smssettings.php:321 #: actions/smssettings.php:321
msgid "That phone number already belongs to another user." msgid "That phone number already belongs to another user."
msgstr "Dit telefoonnummer is al in gebruik bij een andere gebruiker." msgstr "Dit telefoonnummer is al geregistrerd door een andere gebruiker."
#: actions/smssettings.php:347 #: actions/smssettings.php:347
msgid "" msgid ""
"A confirmation code was sent to the phone number you added. Check your phone " "A confirmation code was sent to the phone number you added. Check your phone "
"for the code and instructions on how to use it." "for the code and instructions on how to use it."
msgstr "" msgstr ""
"Er is een bevestigingscode is verzonden naar het telefoonnummer dat u hebt " "Er is een bevestigingscode verzonden naar het telefoonnummer dat u hebt "
"toegevoegd. Controleer uw telefoon voor de code en instructies." "toegevoegd. Op uw telefoon vindt u de code en de instructies."
#: actions/smssettings.php:374 #: actions/smssettings.php:374
msgid "That is the wrong confirmation number." msgid "That is the wrong confirmation number."
@ -4126,17 +4134,17 @@ msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
"U bent geblokkeerd en mag geen mededelingen meer achterlaten op deze site." "U bent geblokkeerd en mag geen mededelingen meer achterlaten op deze site."
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling." msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "" msgstr ""
"Er is een databasefout opgetreden bij het invoegen van het antwoord: %s" "Er is een databasefout opgetreden bij het invoegen van het antwoord: %s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -4191,128 +4199,128 @@ msgstr "%s - %s"
msgid "Untitled page" msgid "Untitled page"
msgstr "Naamloze pagina" msgstr "Naamloze pagina"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "Primaire sitenavigatie" msgstr "Primaire sitenavigatie"
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "Start" msgstr "Start"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "Persoonlijk profiel en tijdlijn van vrienden" msgstr "Persoonlijk profiel en tijdlijn van vrienden"
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "Gebruiker" msgstr "Gebruiker"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "Uw e-mailadres, avatar, wachtwoord of profiel wijzigen" msgstr "Uw e-mailadres, avatar, wachtwoord of profiel wijzigen"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Koppelen" msgstr "Koppelen"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect to services" msgid "Connect to services"
msgstr "Met diensten verbinden" msgstr "Met diensten verbinden"
#: lib/action.php:440 #: lib/action.php:441
msgid "Change site configuration" msgid "Change site configuration"
msgstr "Websiteinstellingen wijzigen" msgstr "Websiteinstellingen wijzigen"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "Uitnodigen" msgstr "Uitnodigen"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s" msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "Afmelden" msgstr "Afmelden"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "Van de site afmelden" msgstr "Van de site afmelden"
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "Gebruiker aanmaken" msgstr "Gebruiker aanmaken"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "Bij de site aanmelden" msgstr "Bij de site aanmelden"
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Help" msgstr "Help"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "Help me!" msgstr "Help me!"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "Zoeken" msgstr "Zoeken"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "Naar gebruikers of tekst zoeken" msgstr "Naar gebruikers of tekst zoeken"
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "Mededeling van de website" msgstr "Mededeling van de website"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "Lokale weergaven" msgstr "Lokale weergaven"
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "Mededeling van de pagina" msgstr "Mededeling van de pagina"
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "Secundaire sitenavigatie" msgstr "Secundaire sitenavigatie"
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "Over" msgstr "Over"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "Veel gestelde vragen" msgstr "Veel gestelde vragen"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "Gebruiksvoorwaarden" msgstr "Gebruiksvoorwaarden"
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "Privacy" msgstr "Privacy"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "Broncode" msgstr "Broncode"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Contact" msgstr "Contact"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "Widget" msgstr "Widget"
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "Licentie van de StatusNet-software" msgstr "Licentie van de StatusNet-software"
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4321,12 +4329,12 @@ msgstr ""
"**%%site.name%%** is een microblogdienst van [%%site.broughtby%%](%%site." "**%%site.name%%** is een microblogdienst van [%%site.broughtby%%](%%site."
"broughtbyurl%%). " "broughtbyurl%%). "
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** is een microblogdienst. " msgstr "**%%site.name%%** is een microblogdienst. "
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4337,31 +4345,31 @@ msgstr ""
"versie %s, beschikbaar onder de [GNU Affero General Public License](http://" "versie %s, beschikbaar onder de [GNU Affero General Public License](http://"
"www.fsf.org/licensing/licenses/agpl-3.0.html)." "www.fsf.org/licensing/licenses/agpl-3.0.html)."
#: lib/action.php:790 #: lib/action.php:791
msgid "Site content license" msgid "Site content license"
msgstr "Licentie voor siteinhoud" msgstr "Licentie voor siteinhoud"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "Alle " msgstr "Alle "
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "licentie." msgstr "licentie."
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "Paginering" msgstr "Paginering"
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "Later" msgstr "Later"
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "Eerder" msgstr "Eerder"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Er is een probleem met uw sessietoken." msgstr "Er is een probleem met uw sessietoken."
@ -4413,6 +4421,16 @@ msgstr "Mededelingen die deze bijlage bevatten"
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "Labels voor deze bijlage" msgstr "Labels voor deze bijlage"
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Wachtwoord wijzigen"
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Wachtwoord wijzigen"
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "Commandoresultaten" msgstr "Commandoresultaten"
@ -5216,7 +5234,7 @@ msgstr ""
"U hebt geen privéberichten. U kunt privéberichten verzenden aan andere " "U hebt geen privéberichten. U kunt privéberichten verzenden aan andere "
"gebruikers. Mensen kunnen u privéberichten sturen die alleen u kunt lezen." "gebruikers. Mensen kunnen u privéberichten sturen die alleen u kunt lezen."
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
msgid "from" msgid "from"
msgstr "van" msgstr "van"
@ -5286,69 +5304,73 @@ msgstr "Directe mededeling verzenden"
msgid "To" msgid "To"
msgstr "Aan" msgstr "Aan"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "Beschikbare tekens" msgstr "Beschikbare tekens"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "Mededeling verzenden" msgstr "Mededeling verzenden"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "Hallo, %s." msgstr "Hallo, %s."
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "Toevoegen" msgstr "Toevoegen"
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "Bestand toevoegen" msgstr "Bestand toevoegen"
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr "Uw locatie bekend maken"
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "N" msgid "N"
msgstr "N" msgstr "N"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "Z" msgstr "Z"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "O" msgstr "O"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "W" msgstr "W"
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "op" msgstr "op"
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "in context" msgstr "in context"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
msgid "Repeated by" msgid "Repeated by"
msgstr "Herhaald door" msgstr "Herhaald door"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Op deze mededeling antwoorden" msgstr "Op deze mededeling antwoorden"
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "Antwoorden" msgstr "Antwoorden"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Mededeling herhaald" msgstr "Mededeling herhaald"
@ -5479,9 +5501,8 @@ msgid "Popular"
msgstr "Populair" msgstr "Populair"
#: lib/repeatform.php:107 #: lib/repeatform.php:107
#, fuzzy
msgid "Repeat this notice?" msgid "Repeat this notice?"
msgstr "Deze mededeling herhalen" msgstr "Deze mededeling herhalen?"
#: lib/repeatform.php:132 #: lib/repeatform.php:132
msgid "Repeat this notice" msgid "Repeat this notice"

View File

@ -7,12 +7,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:43:26+0000\n" "PO-Revision-Date: 2010-01-05 22:12:07+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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\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"
@ -193,11 +193,11 @@ msgstr "Kan ikkje oppdatera brukar."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "Kan ikkje oppdatera brukar." msgstr "Kan ikkje oppdatera brukar."
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "Blokkering av brukar feila." msgstr "Blokkering av brukar feila."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "De-blokkering av brukar feila." msgstr "De-blokkering av brukar feila."
@ -314,31 +314,31 @@ msgid "Could not find target user."
msgstr "Kan ikkje finna einkvan status." msgstr "Kan ikkje finna einkvan status."
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 "Kallenamn må berre ha små bokstavar og nummer, ingen mellomrom." msgstr "Kallenamn må berre ha små bokstavar og nummer, ingen mellomrom."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." msgstr "Kallenamnet er allereie i bruk. Prøv eit anna."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "Ikkje eit gyldig brukarnamn." msgstr "Ikkje eit gyldig brukarnamn."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "Heimesida er ikkje ei gyldig internettadresse." msgstr "Heimesida er ikkje ei gyldig internettadresse."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "Ditt fulle namn er for langt (maksimalt 255 teikn)." msgstr "Ditt fulle namn er for langt (maksimalt 255 teikn)."
@ -349,7 +349,7 @@ msgid "Description is too long (max %d chars)."
msgstr "skildringa er for lang (maks 140 teikn)." msgstr "skildringa er for lang (maks 140 teikn)."
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "Plassering er for lang (maksimalt 255 teikn)." msgstr "Plassering er for lang (maksimalt 255 teikn)."
@ -470,7 +470,7 @@ msgstr "Det er for langt! Ein notis kan berre innehalde 140 teikn."
msgid "Not found" msgid "Not found"
msgstr "Fann ikkje" msgstr "Fann ikkje"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -601,7 +601,7 @@ msgid "Preview"
msgstr "Forhandsvis" msgstr "Forhandsvis"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "Slett" msgstr "Slett"
@ -614,13 +614,13 @@ msgid "Crop"
msgstr "Skaler" msgstr "Skaler"
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -693,7 +693,7 @@ msgstr "Jau"
msgid "Block this user" msgid "Block this user"
msgstr "Blokkér denne brukaren" msgstr "Blokkér denne brukaren"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "Lagring av informasjon feila." msgstr "Lagring av informasjon feila."
@ -768,7 +768,7 @@ msgstr "Den addressa har alt blitt bekrefta."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "Kan ikkje oppdatera brukar." msgstr "Kan ikkje oppdatera brukar."
@ -833,7 +833,7 @@ msgstr "Sikker på at du vil sletta notisen?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Kan ikkje sletta notisen." msgstr "Kan ikkje sletta notisen."
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Slett denne notisen" msgstr "Slett denne notisen"
@ -982,7 +982,7 @@ msgstr ""
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1493,7 +1493,7 @@ msgstr "%s medlemmar i gruppa, side %d"
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "Ei liste over brukarane i denne gruppa." msgstr "Ei liste over brukarane i denne gruppa."
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "Administrator" msgstr "Administrator"
@ -1586,7 +1586,7 @@ msgstr ""
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "Brukar har blokkert deg." msgstr "Brukar har blokkert deg."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "Feil ved fjerning av blokka." msgstr "Feil ved fjerning av blokka."
@ -1769,7 +1769,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "Send" msgstr "Send"
@ -1888,7 +1888,7 @@ msgstr "Feil brukarnamn eller passord"
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "Ikkje autorisert." msgstr "Ikkje autorisert."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Logg inn" msgstr "Logg inn"
@ -2003,7 +2003,7 @@ msgstr "Melding"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "Direkte melding til %s sendt" msgstr "Direkte melding til %s sendt"
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "Ajax feil" msgstr "Ajax feil"
@ -2011,7 +2011,7 @@ msgstr "Ajax feil"
msgid "New notice" msgid "New notice"
msgstr "Ny notis" msgstr "Ny notis"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "Melding lagra" msgstr "Melding lagra"
@ -2450,72 +2450,81 @@ msgstr "Plassering"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Kvar er du, t.d. «By, Fylke (eller Region), Land»" msgstr "Kvar er du, t.d. «By, Fylke (eller Region), Land»"
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "Merkelappar" msgstr "Merkelappar"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
"merkelappar for deg sjølv ( bokstavar, nummer, -, ., og _ ), komma eller " "merkelappar for deg sjølv ( bokstavar, nummer, -, ., og _ ), komma eller "
"mellomroms separert." "mellomroms separert."
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Språk" msgstr "Språk"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "Foretrukke språk" msgstr "Foretrukke språk"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "Tidssone" msgstr "Tidssone"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "Kva tidssone er du vanlegvis i?" msgstr "Kva tidssone er du vanlegvis i?"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
"Automatisk ting notisane til dei som tingar mine (best for ikkje-menneskje)" "Automatisk ting notisane til dei som tingar mine (best for ikkje-menneskje)"
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, fuzzy, php-format #, fuzzy, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "«Om meg» er for lang (maks 140 " msgstr "«Om meg» er for lang (maks 140 "
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "Tidssone er ikkje valt." msgstr "Tidssone er ikkje valt."
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "Språk er for langt (maksimalt 50 teikn)." msgstr "Språk er for langt (maksimalt 50 teikn)."
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Ugyldig merkelapp: %s" msgstr "Ugyldig merkelapp: %s"
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Kan ikkje oppdatera brukar for automatisk tinging." msgstr "Kan ikkje oppdatera brukar for automatisk tinging."
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
#, fuzzy
msgid "Couldn't save location prefs."
msgstr "Kan ikkje lagra merkelapp."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Kan ikkje lagra profil." msgstr "Kan ikkje lagra profil."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Kan ikkje lagra merkelapp." msgstr "Kan ikkje lagra merkelapp."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "Lagra innstillingar." msgstr "Lagra innstillingar."
@ -2613,7 +2622,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Emne sky" msgstr "Emne sky"
@ -2752,7 +2761,7 @@ msgstr "Feil med stadfestingskode."
msgid "Registration successful" msgid "Registration successful"
msgstr "Registreringa gikk bra" msgstr "Registreringa gikk bra"
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "Registrér" msgstr "Registrér"
@ -2949,7 +2958,7 @@ msgstr "Du kan ikkje registrera deg om du ikkje godtek vilkåra i lisensen."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Du har allereie blokkert denne brukaren." msgstr "Du har allereie blokkert denne brukaren."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
#, fuzzy #, fuzzy
msgid "Repeated" msgid "Repeated"
msgstr "Lag" msgstr "Lag"
@ -4088,16 +4097,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Du kan ikkje lengre legge inn notisar på denne sida." msgstr "Du kan ikkje lengre legge inn notisar på denne sida."
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Eit problem oppstod ved lagring av notis." msgstr "Eit problem oppstod ved lagring av notis."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Databasefeil, kan ikkje lagra svar: %s" msgstr "Databasefeil, kan ikkje lagra svar: %s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, fuzzy, php-format #, fuzzy, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "%1$s (%2$s)" msgstr "%1$s (%2$s)"
@ -4153,131 +4162,131 @@ msgstr "%s - %s"
msgid "Untitled page" msgid "Untitled page"
msgstr "Ingen tittel" msgstr "Ingen tittel"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "Navigasjon for hovudsida" msgstr "Navigasjon for hovudsida"
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "Heim" msgstr "Heim"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "Personleg profil og oversyn over vener" msgstr "Personleg profil og oversyn over vener"
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "Konto" msgstr "Konto"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "Endra e-posten, avataren, passordet eller profilen" msgstr "Endra e-posten, avataren, passordet eller profilen"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Kopla til" msgstr "Kopla til"
#: lib/action.php:436 #: lib/action.php:437
#, fuzzy #, fuzzy
msgid "Connect to services" msgid "Connect to services"
msgstr "Klarte ikkje å omdirigera til tenaren: %s" msgstr "Klarte ikkje å omdirigera til tenaren: %s"
#: lib/action.php:440 #: lib/action.php:441
#, fuzzy #, fuzzy
msgid "Change site configuration" msgid "Change site configuration"
msgstr "Navigasjon for hovudsida" msgstr "Navigasjon for hovudsida"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "Invitér" msgstr "Invitér"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "Inviter vennar og kollega til å bli med deg på %s" msgstr "Inviter vennar og kollega til å bli med deg på %s"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "Logg ut" msgstr "Logg ut"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "Logg ut or sida" msgstr "Logg ut or sida"
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "Opprett ny konto" msgstr "Opprett ny konto"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "Logg inn or sida" msgstr "Logg inn or sida"
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Hjelp" msgstr "Hjelp"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "Hjelp meg!" msgstr "Hjelp meg!"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "Søk" msgstr "Søk"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "Søk etter folk eller innhald" msgstr "Søk etter folk eller innhald"
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "Statusmelding" msgstr "Statusmelding"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "Lokale syningar" msgstr "Lokale syningar"
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "Sidenotis" msgstr "Sidenotis"
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "Andrenivås side navigasjon" msgstr "Andrenivås side navigasjon"
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "Om" msgstr "Om"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "OSS" msgstr "OSS"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "" msgstr ""
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "Personvern" msgstr "Personvern"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "Kjeldekode" msgstr "Kjeldekode"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Kontakt" msgstr "Kontakt"
#: lib/action.php:741 #: lib/action.php:742
#, fuzzy #, fuzzy
msgid "Badge" msgid "Badge"
msgstr "Dult" msgstr "Dult"
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "StatusNets programvarelisens" msgstr "StatusNets programvarelisens"
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4286,12 +4295,12 @@ msgstr ""
"**%%site.name%%** er ei mikrobloggingteneste av [%%site.broughtby%%](%%site." "**%%site.name%%** er ei mikrobloggingteneste av [%%site.broughtby%%](%%site."
"broughtbyurl%%). " "broughtbyurl%%). "
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** er ei mikrobloggingteneste. " msgstr "**%%site.name%%** er ei mikrobloggingteneste. "
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4302,32 +4311,32 @@ msgstr ""
"%s, tilgjengeleg under [GNU Affero General Public License](http://www.fsf." "%s, tilgjengeleg under [GNU Affero General Public License](http://www.fsf."
"org/licensing/licenses/agpl-3.0.html)." "org/licensing/licenses/agpl-3.0.html)."
#: lib/action.php:790 #: lib/action.php:791
#, fuzzy #, fuzzy
msgid "Site content license" msgid "Site content license"
msgstr "StatusNets programvarelisens" msgstr "StatusNets programvarelisens"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "Alle" msgstr "Alle"
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "lisens." msgstr "lisens."
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "Paginering" msgstr "Paginering"
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "« Etter" msgstr "« Etter"
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "Før »" msgstr "Før »"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Det var eit problem med sesjons billetten din." msgstr "Det var eit problem med sesjons billetten din."
@ -4387,6 +4396,16 @@ msgstr ""
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "" msgstr ""
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Endra passord"
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Endra passord"
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "Resultat frå kommandoen" msgstr "Resultat frå kommandoen"
@ -5076,7 +5095,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
#, fuzzy #, fuzzy
msgid "from" msgid "from"
msgstr " frå " msgstr " frå "
@ -5141,72 +5160,76 @@ msgstr "Send ei direkte melding"
msgid "To" msgid "To"
msgstr "Til" msgstr "Til"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "Tilgjenglege teikn" msgstr "Tilgjenglege teikn"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "Send ei melding" msgstr "Send ei melding"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "Kva skjer, %s?" msgstr "Kva skjer, %s?"
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "" msgstr ""
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "" msgstr ""
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
#, fuzzy #, fuzzy
msgid "N" msgid "N"
msgstr "Nei" msgstr "Nei"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:523 #: lib/noticelist.php:531
#, fuzzy #, fuzzy
msgid "in context" msgid "in context"
msgstr "Ingen innhald." msgstr "Ingen innhald."
#: lib/noticelist.php:548 #: lib/noticelist.php:556
#, fuzzy #, fuzzy
msgid "Repeated by" msgid "Repeated by"
msgstr "Lag" msgstr "Lag"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Svar på denne notisen" msgstr "Svar på denne notisen"
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "Svar" msgstr "Svar"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
#, fuzzy #, fuzzy
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Melding lagra" msgstr "Melding lagra"

View File

@ -10,8 +10,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-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:43:34+0000\n" "PO-Revision-Date: 2010-01-05 22:12:18+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"
@ -19,7 +19,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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\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"
@ -203,11 +203,11 @@ msgstr "Nie można zaktualizować wyglądu."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "Nie można zablokować siebie." msgstr "Nie można zablokować siebie."
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "Zablokowanie użytkownika nie powiodło się." msgstr "Zablokowanie użytkownika nie powiodło się."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "Odblokowanie użytkownika nie powiodło się." msgstr "Odblokowanie użytkownika nie powiodło się."
@ -322,31 +322,31 @@ msgid "Could not find target user."
msgstr "Nie można odnaleźć użytkownika docelowego." msgstr "Nie można odnaleźć użytkownika docelowego."
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 "Pseudonim może zawierać tylko małe litery i cyfry, bez spacji." msgstr "Pseudonim może zawierać tylko małe litery i cyfry, bez spacji."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "Pseudonim jest już używany. Spróbuj innego." msgstr "Pseudonim jest już używany. Spróbuj innego."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "To nie jest prawidłowy pseudonim." msgstr "To nie jest prawidłowy pseudonim."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "Strona domowa nie jest prawidłowym adresem URL." msgstr "Strona domowa nie jest prawidłowym adresem URL."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "Imię i nazwisko jest za długie (maksymalnie 255 znaków)." msgstr "Imię i nazwisko jest za długie (maksymalnie 255 znaków)."
@ -357,7 +357,7 @@ msgid "Description is too long (max %d chars)."
msgstr "Opis jest za długi (maksymalnie %d znaków)." msgstr "Opis jest za długi (maksymalnie %d znaków)."
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "Położenie jest za długie (maksymalnie 255 znaków)." msgstr "Położenie jest za długie (maksymalnie 255 znaków)."
@ -472,7 +472,7 @@ msgstr "Wpis jest za długi. Maksymalna długość wynosi %d znaków."
msgid "Not found" msgid "Not found"
msgstr "Nie odnaleziono" msgstr "Nie odnaleziono"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "Maksymalny rozmiar wpisu wynosi %d znaków, w tym adres URL załącznika." msgstr "Maksymalny rozmiar wpisu wynosi %d znaków, w tym adres URL załącznika."
@ -601,7 +601,7 @@ msgid "Preview"
msgstr "Podgląd" msgstr "Podgląd"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "Usuń" msgstr "Usuń"
@ -614,13 +614,13 @@ msgid "Crop"
msgstr "Przytnij" msgstr "Przytnij"
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -693,7 +693,7 @@ msgstr "Tak"
msgid "Block this user" msgid "Block this user"
msgstr "Zablokuj tego użytkownika" msgstr "Zablokuj tego użytkownika"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "Zapisanie informacji o blokadzie nie powiodło się." msgstr "Zapisanie informacji o blokadzie nie powiodło się."
@ -765,7 +765,7 @@ msgstr "Ten adres został już potwierdzony."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "Nie można zaktualizować użytkownika." msgstr "Nie można zaktualizować użytkownika."
@ -827,7 +827,7 @@ msgstr "Jesteś pewien, że chcesz usunąć ten wpis?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Nie usuwaj tego wpisu" msgstr "Nie usuwaj tego wpisu"
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Usuń ten wpis" msgstr "Usuń ten wpis"
@ -963,7 +963,7 @@ msgstr "Przywróć domyślne ustawienia"
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1268,9 +1268,9 @@ msgid "Featured users, page %d"
msgstr "Znani użytkownicy, strona %d" msgstr "Znani użytkownicy, strona %d"
#: actions/featured.php:99 #: actions/featured.php:99
#, fuzzy, php-format #, php-format
msgid "A selection of some great users on %s" msgid "A selection of some great users on %s"
msgstr "Wybór znanych użytkowników na %s" msgstr "Wybór znanych użytkowników w serwisie %s"
#: actions/file.php:34 #: actions/file.php:34
msgid "No notice ID." msgid "No notice ID."
@ -1460,7 +1460,7 @@ msgstr "Członkowie grupy %s, strona %d"
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "Lista użytkowników znajdujących się w tej grupie." msgstr "Lista użytkowników znajdujących się w tej grupie."
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "Administrator" msgstr "Administrator"
@ -1558,7 +1558,7 @@ msgstr "Tylko administrator może odblokowywać członków grupy."
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "Użytkownik nie został zablokowany w grupie." msgstr "Użytkownik nie został zablokowany w grupie."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "Błąd podczas usuwania blokady." msgstr "Błąd podczas usuwania blokady."
@ -1744,7 +1744,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "Wyślij" msgstr "Wyślij"
@ -1866,7 +1866,7 @@ msgstr "Niepoprawna nazwa użytkownika lub hasło."
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "Błąd podczas ustawiania użytkownika. Prawdopodobnie brak upoważnienia." msgstr "Błąd podczas ustawiania użytkownika. Prawdopodobnie brak upoważnienia."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Zaloguj się" msgstr "Zaloguj się"
@ -1979,7 +1979,7 @@ msgstr "Wysłano wiadomość"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "Wysłano bezpośrednią wiadomość do użytkownika %s" msgstr "Wysłano bezpośrednią wiadomość do użytkownika %s"
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "Błąd AJAX" msgstr "Błąd AJAX"
@ -1987,7 +1987,7 @@ msgstr "Błąd AJAX"
msgid "New notice" msgid "New notice"
msgstr "Nowy wpis" msgstr "Nowy wpis"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "Wysłano wpis" msgstr "Wysłano wpis"
@ -2418,72 +2418,80 @@ msgstr "Położenie"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Gdzie jesteś, np. \"miasto, województwo (lub region), kraj\"" msgstr "Gdzie jesteś, np. \"miasto, województwo (lub region), kraj\""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr "Podziel się swoim obecnym położeniem podczas wysyłania wpisów"
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "Znaczniki" msgstr "Znaczniki"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
"Znaczniki dla siebie (litery, liczby, -, . i _), oddzielone przecinkami lub " "Znaczniki dla siebie (litery, liczby, -, . i _), oddzielone przecinkami lub "
"spacjami" "spacjami"
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Język" msgstr "Język"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "Preferowany język" msgstr "Preferowany język"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "Strefa czasowa" msgstr "Strefa czasowa"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "W jakiej strefie czasowej zwykle się znajdujesz?" msgstr "W jakiej strefie czasowej zwykle się znajdujesz?"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
"Automatycznie subskrybuj każdego, kto mnie subskrybuje (najlepsze dla botów)" "Automatycznie subskrybuj każdego, kto mnie subskrybuje (najlepsze dla botów)"
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, php-format #, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "Wpis \"O mnie\" jest za długi (maksymalnie %d znaków)." msgstr "Wpis \"O mnie\" jest za długi (maksymalnie %d znaków)."
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "Nie wybrano strefy czasowej." msgstr "Nie wybrano strefy czasowej."
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "Język jest za długi (maksymalnie 50 znaków)." msgstr "Język jest za długi (maksymalnie 50 znaków)."
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Nieprawidłowy znacznik: \"%s\"" msgstr "Nieprawidłowy znacznik: \"%s\""
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Nie można zaktualizować użytkownika do automatycznej subskrypcji." msgstr "Nie można zaktualizować użytkownika do automatycznej subskrypcji."
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
msgid "Couldn't save location prefs."
msgstr "Nie można zapisać preferencji położenia."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Nie można zapisać profilu." msgstr "Nie można zapisać profilu."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Nie można zapisać znaczników." msgstr "Nie można zapisać znaczników."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "Zapisano ustawienia." msgstr "Zapisano ustawienia."
@ -2589,7 +2597,7 @@ msgstr ""
"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz " "Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz "
"pierwszym, który go wyśle." "pierwszym, który go wyśle."
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Chmura znaczników" msgstr "Chmura znaczników"
@ -2729,7 +2737,7 @@ msgstr "Nieprawidłowy kod zaproszenia."
msgid "Registration successful" msgid "Registration successful"
msgstr "Rejestracja powiodła się" msgstr "Rejestracja powiodła się"
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "Zarejestruj się" msgstr "Zarejestruj się"
@ -2921,7 +2929,7 @@ msgstr "Nie można powtórzyć własnego wpisu."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Już powtórzono ten wpis." msgstr "Już powtórzono ten wpis."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
msgid "Repeated" msgid "Repeated"
msgstr "Powtórzono" msgstr "Powtórzono"
@ -4073,16 +4081,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Zabroniono ci wysyłania wpisów na tej stronie." msgstr "Zabroniono ci wysyłania wpisów na tej stronie."
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Problem podczas zapisywania wpisu." msgstr "Problem podczas zapisywania wpisu."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Błąd bazy danych podczas wprowadzania odpowiedzi: %s" msgstr "Błąd bazy danych podczas wprowadzania odpowiedzi: %s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -4137,128 +4145,128 @@ msgstr "%s - %s"
msgid "Untitled page" msgid "Untitled page"
msgstr "Strona bez nazwy" msgstr "Strona bez nazwy"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "Główna nawigacja strony" msgstr "Główna nawigacja strony"
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "Strona domowa" msgstr "Strona domowa"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "Profil osobisty i oś czasu przyjaciół" msgstr "Profil osobisty i oś czasu przyjaciół"
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "Konto" msgstr "Konto"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "Zmień adres e-mail, awatar, hasło, profil" msgstr "Zmień adres e-mail, awatar, hasło, profil"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Połącz" msgstr "Połącz"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect to services" msgid "Connect to services"
msgstr "Połącz z serwisami" msgstr "Połącz z serwisami"
#: lib/action.php:440 #: lib/action.php:441
msgid "Change site configuration" msgid "Change site configuration"
msgstr "Zmień konfigurację strony" msgstr "Zmień konfigurację strony"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "Zaproś" msgstr "Zaproś"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "Zaproś przyjaciół i kolegów do dołączenia do ciebie na %s" msgstr "Zaproś przyjaciół i kolegów do dołączenia do ciebie na %s"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "Wyloguj się" msgstr "Wyloguj się"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "Wyloguj się ze strony" msgstr "Wyloguj się ze strony"
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "Utwórz konto" msgstr "Utwórz konto"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "Zaloguj się na stronę" msgstr "Zaloguj się na stronę"
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Pomoc" msgstr "Pomoc"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "Pomóż mi." msgstr "Pomóż mi."
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "Wyszukaj" msgstr "Wyszukaj"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "Wyszukaj osoby lub tekst" msgstr "Wyszukaj osoby lub tekst"
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "Wpis strony" msgstr "Wpis strony"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "Lokalne widoki" msgstr "Lokalne widoki"
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "Wpis strony" msgstr "Wpis strony"
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "Druga nawigacja strony" msgstr "Druga nawigacja strony"
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "O usłudze" msgstr "O usłudze"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "FAQ" msgstr "FAQ"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "TOS" msgstr "TOS"
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "Prywatność" msgstr "Prywatność"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "Kod źródłowy" msgstr "Kod źródłowy"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Kontakt" msgstr "Kontakt"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "Odznaka" msgstr "Odznaka"
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "Licencja oprogramowania StatusNet" msgstr "Licencja oprogramowania StatusNet"
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4267,12 +4275,12 @@ msgstr ""
"**%%site.name%%** jest usługą mikroblogowania prowadzoną przez [%%site." "**%%site.name%%** jest usługą mikroblogowania prowadzoną przez [%%site."
"broughtby%%](%%site.broughtbyurl%%). " "broughtby%%](%%site.broughtbyurl%%). "
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** jest usługą mikroblogowania. " msgstr "**%%site.name%%** jest usługą mikroblogowania. "
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4283,31 +4291,31 @@ msgstr ""
"status.net/) w wersji %s, dostępnego na [Powszechnej Licencji Publicznej GNU " "status.net/) w wersji %s, dostępnego na [Powszechnej Licencji Publicznej GNU "
"Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." "Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)."
#: lib/action.php:790 #: lib/action.php:791
msgid "Site content license" msgid "Site content license"
msgstr "Licencja zawartości strony" msgstr "Licencja zawartości strony"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "Wszystko " msgstr "Wszystko "
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "licencja." msgstr "licencja."
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "Paginacja" msgstr "Paginacja"
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "Później" msgstr "Później"
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "Wcześniej" msgstr "Wcześniej"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Wystąpił problem z tokenem sesji." msgstr "Wystąpił problem z tokenem sesji."
@ -4359,6 +4367,16 @@ msgstr "Powiadamia, kiedy pojawia się ten załącznik"
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "Znaczniki dla tego załącznika" msgstr "Znaczniki dla tego załącznika"
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Zmiana hasła"
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Zmiana hasła"
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "Wyniki polecenia" msgstr "Wyniki polecenia"
@ -4566,7 +4584,6 @@ msgstr[1] "Jesteś członkiem tych grup:"
msgstr[2] "Jesteś członkiem tych grup:" msgstr[2] "Jesteś członkiem tych grup:"
#: lib/command.php:745 #: lib/command.php:745
#, fuzzy
msgid "" msgid ""
"Commands:\n" "Commands:\n"
"on - turn on notifications\n" "on - turn on notifications\n"
@ -4610,38 +4627,41 @@ msgstr ""
"on - włącza powiadomienia\n" "on - włącza powiadomienia\n"
"off - wyłącza powiadomienia\n" "off - wyłącza powiadomienia\n"
"help - wyświetla tę pomoc\n" "help - wyświetla tę pomoc\n"
"follow <pseudonim> - subskrybuje użytkownika\n" "follow <pseudonim> - włącza obserwowanie użytkownika\n"
"groups - wyświetla listę grup, do których dołączono\n" "groups - wyświetla listę grup, do których dołączyłeś\n"
"subscriptions - wyświetla listę obserwowanych osób\n" "subscriptions - wyświetla listę obserwowanych osób\n"
"subscribers - wyświetla listę osób, które cię obserwują\n" "subscribers - wyświetla listę osób, które cię obserwują\n"
"leave <pseudonim> - rezygnuje z subskrypcji użytkownika\n" "leave <pseudonim> - rezygnuje z obserwowania użytkownika\n"
"d <pseudonim> <tekst> - bezpośrednia wiadomość do użytkownika\n" "d <pseudonim> <tekst> - bezpośrednia wiadomość do użytkownika\n"
"get <pseudonim> - uzyskuje ostatni wpis użytkownika\n" "get <pseudonim> - zwraca ostatni wpis użytkownika\n"
"whois <pseudonim> - uzyskuje informacje o profilu użytkownika\n" "whois <pseudonim> - zwraca informacje o profilu użytkownika\n"
"fav <pseudonim> - dodaje ostatni wpis użytkownika jako \"ulubiony\"\n" "fav <pseudonim> - dodaje ostatni wpis użytkownika jako \"ulubiony\"\n"
"fav #<identyfikator_wpisu> - dodaje wpis z podanym identyfikatorem jako " "fav #<identyfikator_wpisu> - dodaje wpis z podanym identyfikatorem jako "
"\"ulubiony\"\n" "\"ulubiony\"\n"
"repeat #<identyfikator_wpisu> - powtarza wiadomość z zadanym "
"identyfikatorem\n"
"repeat <pseudonim> - powtarza ostatnią wiadomość od użytkownika\n"
"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 logowania do interfejsu WWW\n" "login - pobiera odnośnik do zalogowania się do interfejsu WWW\n"
"drop <grupa> - opuszcza grupę\n" "drop <grupa> - opuszcza grupę\n"
"stats - uzyskuje statystyki\n" "stats - pobiera 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"
"unsub <pseudonim> - to samo co \"leave\"\n" "unsub <pseudonim> - to samo co \"leave\"\n"
"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> - przypomina użytkownikowi o aktualizacji.\n" "nudge <pseudonim> - przypomina użytkownikowi o aktualizacji\n"
"invite <numer telefonu> - jeszcze nie zaimplementowano.\n" "invite <numer telefonu> - jeszcze nie zaimplementowano\n"
"track <wyraz> - jeszcze nie zaimplementowano.\n" "track <wyraz> - jeszcze nie zaimplementowano\n"
"untrack <wyraz> - 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"
"tracking - jeszcze nie zaimplementowano.\n" "tracking - jeszcze nie zaimplementowano\n"
#: lib/common.php:199 #: lib/common.php:199
msgid "No configuration file found. " msgid "No configuration file found. "
@ -5157,7 +5177,7 @@ msgstr ""
"rozmowę z innymi użytkownikami. Inni mogą wysyłać ci wiadomości tylko dla " "rozmowę z innymi użytkownikami. Inni mogą wysyłać ci wiadomości tylko dla "
"twoich oczu." "twoich oczu."
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
msgid "from" msgid "from"
msgstr "z" msgstr "z"
@ -5222,69 +5242,73 @@ msgstr "Wyślij bezpośredni wpis"
msgid "To" msgid "To"
msgstr "Do" msgstr "Do"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "Dostępne znaki" msgstr "Dostępne znaki"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "Wyślij wpis" msgstr "Wyślij wpis"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "Co słychać, %s?" msgstr "Co słychać, %s?"
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "Załącz" msgstr "Załącz"
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "Załącz plik" msgstr "Załącz plik"
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr "Podziel się swoim położeniem"
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "N" msgid "N"
msgstr "Północ" msgstr "Północ"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "Południe" msgstr "Południe"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "Wschód" msgstr "Wschód"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "Zachód" msgstr "Zachód"
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "w" msgstr "w"
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "w rozmowie" msgstr "w rozmowie"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
msgid "Repeated by" msgid "Repeated by"
msgstr "Powtórzone przez" msgstr "Powtórzone przez"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Odpowiedz na ten wpis" msgstr "Odpowiedz na ten wpis"
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "Odpowiedz" msgstr "Odpowiedz"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Powtórzono wpis" msgstr "Powtórzono wpis"
@ -5414,9 +5438,8 @@ msgid "Popular"
msgstr "Popularne" msgstr "Popularne"
#: lib/repeatform.php:107 #: lib/repeatform.php:107
#, fuzzy
msgid "Repeat this notice?" msgid "Repeat this notice?"
msgstr "Powtórz ten wpis" msgstr "Powtórz ten wpis?"
#: lib/repeatform.php:132 #: lib/repeatform.php:132
msgid "Repeat this notice" msgid "Repeat this notice"

View File

@ -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-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:43:38+0000\n" "PO-Revision-Date: 2010-01-05 22:12:21+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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\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"
@ -197,11 +197,11 @@ msgstr "Não foi possível actualizar o seu design."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "Os utilizadores não podem bloquear-se a si próprios!" msgstr "Os utilizadores não podem bloquear-se a si próprios!"
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "Bloqueio do utilizador falhou." msgstr "Bloqueio do utilizador falhou."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "Desbloqueio do utilizador falhou." msgstr "Desbloqueio do utilizador falhou."
@ -315,31 +315,31 @@ msgid "Could not find target user."
msgstr "Não foi possível encontrar o utilizador de destino." msgstr "Não foi possível encontrar o utilizador 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:215
#: actions/register.php:205 #: actions/register.php:205
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 "Alcunha só deve conter letras minúsculas e números. Sem espaços." msgstr "Alcunha só deve conter letras minúsculas e números. Sem espaços."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "Alcunha já é usada. Tente outra." msgstr "Alcunha já é usada. Tente outra."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "Alcunha não é válida." msgstr "Alcunha não é válida."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "Página de acolhimento não é uma URL válida." msgstr "Página de acolhimento não é uma URL válida."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "Nome completo demasiado longo (máx. 255 caracteres)." msgstr "Nome completo demasiado longo (máx. 255 caracteres)."
@ -350,7 +350,7 @@ msgid "Description is too long (max %d chars)."
msgstr "Descrição demasiado longa (máx. 140 caracteres)." msgstr "Descrição demasiado longa (máx. 140 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "Localidade demasiado longa (máx. 255 caracteres)." msgstr "Localidade demasiado longa (máx. 255 caracteres)."
@ -465,7 +465,7 @@ msgstr "Demasiado longo. Tamanho máx. das notas é %d caracteres."
msgid "Not found" msgid "Not found"
msgstr "Não encontrado" msgstr "Não encontrado"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "Tamanho máx. das notas é %d caracteres, incluíndo a URL do anexo." msgstr "Tamanho máx. das notas é %d caracteres, incluíndo a URL do anexo."
@ -594,7 +594,7 @@ msgid "Preview"
msgstr "Antevisão" msgstr "Antevisão"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "Apagar" msgstr "Apagar"
@ -607,13 +607,13 @@ msgid "Crop"
msgstr "Cortar" msgstr "Cortar"
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -687,7 +687,7 @@ msgstr "Sim"
msgid "Block this user" msgid "Block this user"
msgstr "Bloquear este utilizador" msgstr "Bloquear este utilizador"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "Não foi possível gravar informação do bloqueio." msgstr "Não foi possível gravar informação do bloqueio."
@ -759,7 +759,7 @@ msgstr "Esse endereço já tinha sido confirmado."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "Não foi possível actualizar o utilizador." msgstr "Não foi possível actualizar o utilizador."
@ -821,7 +821,7 @@ msgstr "Tem a certeza de que quer apagar esta nota?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Não apagar esta nota" msgstr "Não apagar esta nota"
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Apagar esta nota" msgstr "Apagar esta nota"
@ -960,7 +960,7 @@ msgstr "Repor predefinição"
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1208,7 +1208,7 @@ msgstr "Esta nota já é uma favorita!"
#: actions/favor.php:92 lib/disfavorform.php:140 #: actions/favor.php:92 lib/disfavorform.php:140
msgid "Disfavor favorite" msgid "Disfavor favorite"
msgstr "Desfavorecer favorita" msgstr "Retirar das favoritas"
#: actions/favorited.php:65 lib/popularnoticesection.php:88 #: actions/favorited.php:65 lib/popularnoticesection.php:88
#: lib/publicgroupnav.php:93 #: lib/publicgroupnav.php:93
@ -1464,7 +1464,7 @@ msgstr "Membros do grupo %s, página %d"
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "Uma lista dos utilizadores neste grupo." msgstr "Uma lista dos utilizadores neste grupo."
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "Admin" msgstr "Admin"
@ -1562,7 +1562,7 @@ msgstr "Só um administrador pode desbloquear membros de um grupo."
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "Acesso do utilizador ao grupo não foi bloqueado." msgstr "Acesso do utilizador ao grupo não foi bloqueado."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "Erro ao remover o bloqueio." msgstr "Erro ao remover o bloqueio."
@ -1749,7 +1749,7 @@ msgstr "Mensagem pessoal"
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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "Enviar" msgstr "Enviar"
@ -1864,13 +1864,13 @@ msgstr "Chave inválida ou expirada."
#: actions/login.php:147 #: actions/login.php:147
msgid "Incorrect username or password." msgid "Incorrect username or password."
msgstr "Nome de utilizador ou palavra-passe incorrectos." msgstr "Nome de utilizador ou palavra-chave incorrectos."
#: actions/login.php:153 #: actions/login.php:153
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "Erro ao preparar o utilizador. Provavelmente não está autorizado." msgstr "Erro ao preparar o utilizador. Provavelmente não está autorizado."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Entrar" msgstr "Entrar"
@ -1902,7 +1902,7 @@ msgstr ""
#: actions/login.php:267 #: actions/login.php:267
msgid "Lost or forgotten password?" msgid "Lost or forgotten password?"
msgstr "Perdeu ou esqueceu-se da palavra-passe?" msgstr "Perdeu ou esqueceu-se da palavra-chave?"
#: actions/login.php:286 #: actions/login.php:286
msgid "" msgid ""
@ -1910,7 +1910,7 @@ msgid ""
"changing your settings." "changing your settings."
msgstr "" msgstr ""
"Por razões de segurança, por favor reintroduza o seu nome de utilizador e " "Por razões de segurança, por favor reintroduza o seu nome de utilizador e "
"palavra-passe antes de alterar as suas configurações." "palavra-chave antes de alterar as configurações."
#: actions/login.php:290 #: actions/login.php:290
#, php-format #, php-format
@ -1983,7 +1983,7 @@ msgstr "Mensagem enviada"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "Mensagem directa para %s enviada" msgstr "Mensagem directa para %s enviada"
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "Erro do Ajax" msgstr "Erro do Ajax"
@ -1991,7 +1991,7 @@ msgstr "Erro do Ajax"
msgid "New notice" msgid "New notice"
msgstr "Nota nova" msgstr "Nota nova"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "Nota publicada" msgstr "Nota publicada"
@ -2220,7 +2220,7 @@ msgstr "Sem acesso de escrita no directório do fundo: %s"
#: actions/pathsadminpanel.php:160 #: actions/pathsadminpanel.php:160
#, php-format #, php-format
msgid "Locales directory not readable: %s" msgid "Locales directory not readable: %s"
msgstr "Sem acesso de leitura do directório do locales: %s" msgstr "Sem acesso de leitura ao directório do locales: %s"
#: actions/pathsadminpanel.php:166 #: actions/pathsadminpanel.php:166
msgid "Invalid SSL server. The maximum length is 255 characters." msgid "Invalid SSL server. The maximum length is 255 characters."
@ -2423,72 +2423,80 @@ msgstr "Localidade"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Onde está, por ex. \"Cidade, Região, País\"" msgstr "Onde está, por ex. \"Cidade, Região, País\""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr "Compartilhar a minha localização presente ao publicar notas"
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "Categorias" msgstr "Categorias"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
"Categorias para si (letras, números, -, ., _), separadas por vírgulas ou " "Categorias para si (letras, números, -, ., _), separadas por vírgulas ou "
"espaços" "espaços"
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Língua" msgstr "Língua"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "Língua preferida" msgstr "Língua preferida"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "Fuso horário" msgstr "Fuso horário"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "Em que fuso horário se encontra normalmente?" msgstr "Em que fuso horário se encontra normalmente?"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
"Subscrever automaticamente quem me subscreva (óptimo para seres não-humanos)" "Subscrever automaticamente quem me subscreva (óptimo para seres não-humanos)"
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, php-format #, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "Biografia demasiado extensa (máx. %d caracteres)." msgstr "Biografia demasiado extensa (máx. %d caracteres)."
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "Fuso horário não foi seleccionado." msgstr "Fuso horário não foi seleccionado."
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "Língua é demasiado extensa (máx. 50 caracteres)." msgstr "Língua é demasiado extensa (máx. 50 caracteres)."
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Categoria inválida: \"%s\"" msgstr "Categoria inválida: \"%s\""
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Não foi possível actualizar o utilizador para subscrição automática." msgstr "Não foi possível actualizar o utilizador para subscrição automática."
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
msgid "Couldn't save location prefs."
msgstr "Não foi possível gravar as preferências de localização."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Não foi possível gravar o perfil." msgstr "Não foi possível gravar o perfil."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Não foi possível gravar as categorias." msgstr "Não foi possível gravar as categorias."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "Configurações gravadas." msgstr "Configurações gravadas."
@ -2597,7 +2605,7 @@ msgstr ""
"Podia [registar uma conta](%%action.register%%) e ser a primeira pessoa a " "Podia [registar uma conta](%%action.register%%) e ser a primeira pessoa a "
"publicar uma!" "publicar uma!"
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Nuvem de categorias" msgstr "Nuvem de categorias"
@ -2726,7 +2734,7 @@ msgstr "Erro ao configurar utilizador."
#: actions/recoverpassword.php:382 #: actions/recoverpassword.php:382
msgid "New password successfully saved. You are now logged in." msgid "New password successfully saved. You are now logged in."
msgstr "Nova palavra-passe foi guardada com sucesso. Está agora conectado." msgstr "A palavra-chave nova foi gravada com sucesso. Iniciou uma sessão."
#: 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."
@ -2740,7 +2748,7 @@ msgstr "Desculpe, código de convite inválido."
msgid "Registration successful" msgid "Registration successful"
msgstr "Registo efectuado" msgstr "Registo efectuado"
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "Registar" msgstr "Registar"
@ -2932,7 +2940,7 @@ msgstr "Não pode repetir a sua própria nota."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Já repetiu essa nota." msgstr "Já repetiu essa nota."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
msgid "Repeated" msgid "Repeated"
msgstr "Repetida" msgstr "Repetida"
@ -4081,16 +4089,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Está proibido de publicar notas neste site." msgstr "Está proibido de publicar notas neste site."
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Problema na gravação da nota." msgstr "Problema na gravação da nota."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Ocorreu um erro na base de dados ao inserir a resposta: %s" msgstr "Ocorreu um erro na base de dados ao inserir a resposta: %s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -4118,7 +4126,7 @@ msgstr "Carregar um avatar"
#: lib/accountsettingsaction.php:116 #: lib/accountsettingsaction.php:116
msgid "Change your password" msgid "Change your password"
msgstr "Modificar a sua palavra-passe" msgstr "Modificar a sua palavra-chave"
#: lib/accountsettingsaction.php:120 #: lib/accountsettingsaction.php:120
msgid "Change email handling" msgid "Change email handling"
@ -4145,128 +4153,128 @@ msgstr "%s - %s"
msgid "Untitled page" msgid "Untitled page"
msgstr "Página sem título" msgstr "Página sem título"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "Navegação primária deste site" msgstr "Navegação primária deste site"
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "Início" msgstr "Início"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "Perfil pessoal e notas dos amigos" msgstr "Perfil pessoal e notas dos amigos"
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "Conta" msgstr "Conta"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "Altere o seu endereço electrónico, avatar, palavra-chave, perfil" msgstr "Altere o seu endereço electrónico, avatar, palavra-chave, perfil"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Ligar" msgstr "Ligar"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect to services" msgid "Connect to services"
msgstr "Ligar aos serviços" msgstr "Ligar aos serviços"
#: lib/action.php:440 #: lib/action.php:441
msgid "Change site configuration" msgid "Change site configuration"
msgstr "Alterar a configuração do site" msgstr "Alterar a configuração do site"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "Convidar" msgstr "Convidar"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "Convidar amigos e colegas para se juntarem a si em %s" msgstr "Convidar amigos e colegas para se juntarem a si em %s"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "Sair" msgstr "Sair"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "Terminar esta sessão" msgstr "Terminar esta sessão"
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "Criar uma conta" msgstr "Criar uma conta"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "Iniciar uma sessão" msgstr "Iniciar uma sessão"
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Ajuda" msgstr "Ajuda"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "Ajudem-me!" msgstr "Ajudem-me!"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "Pesquisa" msgstr "Pesquisa"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "Procurar pessoas ou pesquisar texto" msgstr "Procurar pessoas ou pesquisar texto"
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "Aviso do site" msgstr "Aviso do site"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "Vistas locais" msgstr "Vistas locais"
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "Aviso da página" msgstr "Aviso da página"
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "Navegação secundária deste site" msgstr "Navegação secundária deste site"
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "Sobre" msgstr "Sobre"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "FAQ" msgstr "FAQ"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "Condições do Serviço" msgstr "Condições do Serviço"
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "Privacidade" msgstr "Privacidade"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "Código" msgstr "Código"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Contacto" msgstr "Contacto"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "Emblema" msgstr "Emblema"
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "Licença de software do StatusNet" msgstr "Licença de software do StatusNet"
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4275,12 +4283,12 @@ 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:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** é um serviço de microblogues. " msgstr "**%%site.name%%** é um serviço de microblogues. "
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4291,31 +4299,31 @@ msgstr ""
"disponibilizado nos termos da [GNU Affero General Public License](http://www." "disponibilizado nos termos da [GNU Affero General Public License](http://www."
"fsf.org/licensing/licenses/agpl-3.0.html)." "fsf.org/licensing/licenses/agpl-3.0.html)."
#: lib/action.php:790 #: lib/action.php:791
msgid "Site content license" msgid "Site content license"
msgstr "Licença de conteúdos do site" msgstr "Licença de conteúdos do site"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "Tudo " msgstr "Tudo "
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "licença." msgstr "licença."
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "Paginação" msgstr "Paginação"
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "Depois" msgstr "Posteriores"
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "Antes" msgstr "Anteriores"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Ocorreu um problema com a sua chave de sessão." msgstr "Ocorreu um problema com a sua chave de sessão."
@ -4367,6 +4375,16 @@ msgstr "Notas em que este anexo aparece"
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "Categorias para este anexo" msgstr "Categorias para este anexo"
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Mudança da palavra-chave"
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Mudança da palavra-chave"
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "Resultados do comando" msgstr "Resultados do comando"
@ -4697,15 +4715,15 @@ msgstr "Predefinições do design repostas"
#: lib/disfavorform.php:114 lib/disfavorform.php:140 #: lib/disfavorform.php:114 lib/disfavorform.php:140
msgid "Disfavor this notice" msgid "Disfavor this notice"
msgstr "Desfavorecer esta nota" msgstr "Retirar esta nota das favoritas"
#: lib/favorform.php:114 lib/favorform.php:140 #: lib/favorform.php:114 lib/favorform.php:140
msgid "Favor this notice" msgid "Favor this notice"
msgstr "Favorecer esta nota" msgstr "Eleger esta nota como favorita"
#: lib/favorform.php:140 #: lib/favorform.php:140
msgid "Favor" msgid "Favor"
msgstr "Favorecer" msgstr "Eleger como favorita"
#: lib/feed.php:85 #: lib/feed.php:85
msgid "RSS 1.0" msgid "RSS 1.0"
@ -5160,7 +5178,7 @@ msgstr ""
"conversa com outros utilizadores. Outros podem enviar-lhe mensagens, a que " "conversa com outros utilizadores. Outros podem enviar-lhe mensagens, a que "
"só você terá acesso." "só você terá acesso."
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
msgid "from" msgid "from"
msgstr "de" msgstr "de"
@ -5228,69 +5246,73 @@ msgstr "Enviar uma nota directa"
msgid "To" msgid "To"
msgstr "Para" msgstr "Para"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "Caracteres disponíveis" msgstr "Caracteres disponíveis"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "Enviar uma nota" msgstr "Enviar uma nota"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "Novidades, %s?" msgstr "Novidades, %s?"
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "Anexar" msgstr "Anexar"
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "Anexar um ficheiro" msgstr "Anexar um ficheiro"
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr "Compartilhe a sua localização"
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "N" msgid "N"
msgstr "N" msgstr "N"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "S" msgstr "S"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "E" msgstr "E"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "O" msgstr "O"
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "coords." msgstr "coords."
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "em contexto" msgstr "em contexto"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
msgid "Repeated by" msgid "Repeated by"
msgstr "Repetida por" msgstr "Repetida por"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Responder a esta nota" msgstr "Responder a esta nota"
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "Responder" msgstr "Responder"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Nota repetida" msgstr "Nota repetida"
@ -5420,9 +5442,8 @@ msgid "Popular"
msgstr "Populares" msgstr "Populares"
#: lib/repeatform.php:107 #: lib/repeatform.php:107
#, fuzzy
msgid "Repeat this notice?" msgid "Repeat this notice?"
msgstr "Repetir esta nota" msgstr "Repetir esta nota?"
#: lib/repeatform.php:132 #: lib/repeatform.php:132
msgid "Repeat this notice" msgid "Repeat this notice"

File diff suppressed because it is too large Load Diff

View File

@ -10,12 +10,12 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: StatusNet\n" "Project-Id-Version: StatusNet\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:43:44+0000\n" "PO-Revision-Date: 2010-01-05 22:12:28+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 (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\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"
@ -198,11 +198,11 @@ msgstr "Не удаётся обновить ваше оформление."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "Вы не можете заблокировать самого себя!" msgstr "Вы не можете заблокировать самого себя!"
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "Неудача при блокировке пользователя." msgstr "Неудача при блокировке пользователя."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "Неудача при разблокировке пользователя." msgstr "Неудача при разблокировке пользователя."
@ -320,32 +320,32 @@ msgid "Could not find target user."
msgstr "Не удаётся найти целевого пользователя." msgstr "Не удаётся найти целевого пользователя."
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 ""
"Имя должно состоять только из прописных букв и цифр и не иметь пробелов." "Имя должно состоять только из прописных букв и цифр и не иметь пробелов."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое." msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "Неверное имя." msgstr "Неверное имя."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "URL Главной страницы неверен." msgstr "URL Главной страницы неверен."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "Полное имя слишком длинное (не больше 255 знаков)." msgstr "Полное имя слишком длинное (не больше 255 знаков)."
@ -356,7 +356,7 @@ msgid "Description is too long (max %d chars)."
msgstr "Слишком длинное описание (максимум %d символов)" msgstr "Слишком длинное описание (максимум %d символов)"
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "Слишком длинное месторасположение (максимум 255 знаков)." msgstr "Слишком длинное месторасположение (максимум 255 знаков)."
@ -471,7 +471,7 @@ msgstr "Слишком длинная запись. Максимальная д
msgid "Not found" msgid "Not found"
msgstr "Не найдено" msgstr "Не найдено"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "Максимальная длина записи — %d символов, включая URL вложения." msgstr "Максимальная длина записи — %d символов, включая URL вложения."
@ -601,7 +601,7 @@ msgid "Preview"
msgstr "Просмотр" msgstr "Просмотр"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "Удалить" msgstr "Удалить"
@ -614,13 +614,13 @@ msgid "Crop"
msgstr "Обрезать" msgstr "Обрезать"
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -693,7 +693,7 @@ msgstr "Да"
msgid "Block this user" msgid "Block this user"
msgstr "Заблокировать пользователя." msgstr "Заблокировать пользователя."
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "Не удаётся сохранить информацию о блокировании." msgstr "Не удаётся сохранить информацию о блокировании."
@ -765,7 +765,7 @@ msgstr "Этот адрес уже подтверждён."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "Не удаётся обновить пользователя." msgstr "Не удаётся обновить пользователя."
@ -827,7 +827,7 @@ msgstr "Вы уверены, что хотите удалить эту запи
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Не удалять эту запись" msgstr "Не удалять эту запись"
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Удалить эту запись" msgstr "Удалить эту запись"
@ -965,7 +965,7 @@ msgstr "Восстановить значения по умолчанию"
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1475,7 +1475,7 @@ msgstr "Участники группы %s, страница %d"
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "Список пользователей, являющихся членами этой группы." msgstr "Список пользователей, являющихся членами этой группы."
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "Настройки" msgstr "Настройки"
@ -1573,7 +1573,7 @@ msgstr "Только администратор может разблокиро
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "Пользователь не заблокировал вас из группы." msgstr "Пользователь не заблокировал вас из группы."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "Ошибка при удалении данного блока." msgstr "Ошибка при удалении данного блока."
@ -1760,7 +1760,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "ОК" msgstr "ОК"
@ -1882,7 +1882,7 @@ msgstr "Некорректное имя или пароль."
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "Ошибка установки пользователя. Вы, вероятно, не авторизованы." msgstr "Ошибка установки пользователя. Вы, вероятно, не авторизованы."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Вход" msgstr "Вход"
@ -1994,7 +1994,7 @@ msgstr "Сообщение отправлено"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "Прямое сообщение для %s послано" msgstr "Прямое сообщение для %s послано"
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "Ошибка AJAX" msgstr "Ошибка AJAX"
@ -2002,7 +2002,7 @@ msgstr "Ошибка AJAX"
msgid "New notice" msgid "New notice"
msgstr "Новая запись" msgstr "Новая запись"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "Запись опубликована" msgstr "Запись опубликована"
@ -2433,71 +2433,80 @@ msgstr "Месторасположение"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Где вы находитесь, например «Город, область, страна»" msgstr "Где вы находитесь, например «Город, область, страна»"
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "Теги" msgstr "Теги"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
"Теги для самого себя (буквы, цифры, -, ., и _), разделенные запятой или " "Теги для самого себя (буквы, цифры, -, ., и _), разделенные запятой или "
"пробелом" "пробелом"
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Язык" msgstr "Язык"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "Предпочитаемый язык" msgstr "Предпочитаемый язык"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "Часовой пояс" msgstr "Часовой пояс"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "В каком часовом поясе Вы обычно находитесь?" msgstr "В каком часовом поясе Вы обычно находитесь?"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "Автоматически подписываться на всех, кто подписался на меня" msgstr "Автоматически подписываться на всех, кто подписался на меня"
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, php-format #, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "Слишком длинная биография (максимум %d символов)." msgstr "Слишком длинная биография (максимум %d символов)."
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "Часовой пояс не выбран." msgstr "Часовой пояс не выбран."
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "Слишком длинный язык (более 50 символов). " msgstr "Слишком длинный язык (более 50 символов). "
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Неверный тег: «%s»" msgstr "Неверный тег: «%s»"
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Не удаётся обновить пользователя для автоподписки." msgstr "Не удаётся обновить пользователя для автоподписки."
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
#, fuzzy
msgid "Couldn't save location prefs."
msgstr "Не удаётся сохранить теги."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Не удаётся сохранить профиль." msgstr "Не удаётся сохранить профиль."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Не удаётся сохранить теги." msgstr "Не удаётся сохранить теги."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "Настройки сохранены." msgstr "Настройки сохранены."
@ -2602,7 +2611,7 @@ msgstr ""
"Почему бы не [зарегистрироваться](%%action.register%%), чтобы отправить " "Почему бы не [зарегистрироваться](%%action.register%%), чтобы отправить "
"первым?" "первым?"
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Облако тегов" msgstr "Облако тегов"
@ -2742,7 +2751,7 @@ msgstr "Извините, неверный пригласительный код
msgid "Registration successful" msgid "Registration successful"
msgstr "Регистрация успешна!" msgstr "Регистрация успешна!"
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "Регистрация" msgstr "Регистрация"
@ -2934,7 +2943,7 @@ msgstr "Вы не можете повторить собственную зап
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Вы уже повторили эту запись." msgstr "Вы уже повторили эту запись."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
msgid "Repeated" msgid "Repeated"
msgstr "Повторено" msgstr "Повторено"
@ -4088,16 +4097,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Вам запрещено поститься на этом сайте (бан)" msgstr "Вам запрещено поститься на этом сайте (бан)"
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Проблемы с сохранением записи." msgstr "Проблемы с сохранением записи."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Ошибка баз данных при вставке ответа для %s" msgstr "Ошибка баз данных при вставке ответа для %s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -4152,128 +4161,128 @@ msgstr "%s (%s)"
msgid "Untitled page" msgid "Untitled page"
msgstr "Страница без названия" msgstr "Страница без названия"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "Главная навигация" msgstr "Главная навигация"
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "Моё" msgstr "Моё"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "Личный профиль и лента друзей" msgstr "Личный профиль и лента друзей"
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "Настройки" msgstr "Настройки"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "Изменить ваш email, аватару, пароль, профиль" msgstr "Изменить ваш email, аватару, пароль, профиль"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Соединить" msgstr "Соединить"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect to services" msgid "Connect to services"
msgstr "Соединить с сервисами" msgstr "Соединить с сервисами"
#: lib/action.php:440 #: lib/action.php:441
msgid "Change site configuration" msgid "Change site configuration"
msgstr "Изменить конфигурацию сайта" msgstr "Изменить конфигурацию сайта"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "Пригласить" msgstr "Пригласить"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "Пригласи друзей и коллег стать такими же как ты участниками %s" msgstr "Пригласи друзей и коллег стать такими же как ты участниками %s"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "Выход" msgstr "Выход"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "Выйти" msgstr "Выйти"
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "Создать новый аккаунт" msgstr "Создать новый аккаунт"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "Войти" msgstr "Войти"
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Помощь" msgstr "Помощь"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "Помощь" msgstr "Помощь"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "Поиск" msgstr "Поиск"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "Искать людей или текст" msgstr "Искать людей или текст"
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "Новая запись" msgstr "Новая запись"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "Локальные виды" msgstr "Локальные виды"
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "Новая запись" msgstr "Новая запись"
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "Навигация по подпискам" msgstr "Навигация по подпискам"
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "О проекте" msgstr "О проекте"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "ЧаВо" msgstr "ЧаВо"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "TOS" msgstr "TOS"
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "Пользовательское соглашение" msgstr "Пользовательское соглашение"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "Исходный код" msgstr "Исходный код"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Контактная информация" msgstr "Контактная информация"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "Бедж" msgstr "Бедж"
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "StatusNet лицензия" msgstr "StatusNet лицензия"
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4282,12 +4291,12 @@ msgstr ""
"**%%site.name%%** — это сервис микроблогинга, созданный для вас при помощи [%" "**%%site.name%%** — это сервис микроблогинга, созданный для вас при помощи [%"
"%site.broughtby%%](%%site.broughtbyurl%%). " "%site.broughtby%%](%%site.broughtbyurl%%). "
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** — сервис микроблогинга. " msgstr "**%%site.name%%** — сервис микроблогинга. "
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4299,31 +4308,31 @@ msgstr ""
"лицензией [GNU Affero General Public License](http://www.fsf.org/licensing/" "лицензией [GNU Affero General Public License](http://www.fsf.org/licensing/"
"licenses/agpl-3.0.html)." "licenses/agpl-3.0.html)."
#: lib/action.php:790 #: lib/action.php:791
msgid "Site content license" msgid "Site content license"
msgstr "Лицензия содержимого сайта" msgstr "Лицензия содержимого сайта"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "All " msgstr "All "
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "license." msgstr "license."
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "Разбиение на страницы" msgstr "Разбиение на страницы"
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "Сюда" msgstr "Сюда"
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "Туда" msgstr "Туда"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста." msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста."
@ -4375,6 +4384,16 @@ msgstr "Сообщает, где появляется это вложение"
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "Теги для этого вложения" msgstr "Теги для этого вложения"
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Пароль сохранён."
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Пароль сохранён."
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "Команда исполнена" msgstr "Команда исполнена"
@ -4933,7 +4952,7 @@ msgstr ""
#: lib/mail.php:236 #: lib/mail.php:236
#, php-format #, php-format
msgid "%1$s is now listening to your notices on %2$s." msgid "%1$s is now listening to your notices on %2$s."
msgstr "%1$s сейчас слушает ваши заметки на %2$s." msgstr "%1$s теперь следит за вашими записями на %2$s."
#: lib/mail.php:241 #: lib/mail.php:241
#, php-format #, php-format
@ -5170,7 +5189,7 @@ msgstr ""
"вовлечения других пользователей в разговор. Сообщения, получаемые от других " "вовлечения других пользователей в разговор. Сообщения, получаемые от других "
"людей, видите только вы." "людей, видите только вы."
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
msgid "from" msgid "from"
msgstr "от " msgstr "от "
@ -5237,69 +5256,73 @@ msgstr "Послать прямую запись"
msgid "To" msgid "To"
msgstr "Для" msgstr "Для"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "6 или больше знаков" msgstr "6 или больше знаков"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "Послать запись" msgstr "Послать запись"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "Что нового, %s?" msgstr "Что нового, %s?"
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "Прикрепить" msgstr "Прикрепить"
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "Прикрепить файл" msgstr "Прикрепить файл"
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\" %4$s %5$u°%6$u'%7$u\" %8$s" msgstr "%1$u°%2$u'%3$u\" %4$s %5$u°%6$u'%7$u\" %8$s"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "N" msgid "N"
msgstr "с. ш." msgstr "с. ш."
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "ю. ш." msgstr "ю. ш."
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "в. д." msgstr "в. д."
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "з. д." msgstr "з. д."
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "на" msgstr "на"
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "в контексте" msgstr "в контексте"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
msgid "Repeated by" msgid "Repeated by"
msgstr "Повторено" msgstr "Повторено"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Ответить на эту запись" msgstr "Ответить на эту запись"
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "Ответить" msgstr "Ответить"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Запись повторена" msgstr "Запись повторена"
@ -5429,9 +5452,8 @@ msgid "Popular"
msgstr "Популярное" msgstr "Популярное"
#: lib/repeatform.php:107 #: lib/repeatform.php:107
#, fuzzy
msgid "Repeat this notice?" msgid "Repeat this notice?"
msgstr "Повторить эту запись" msgstr "Повторить эту запись?"
#: lib/repeatform.php:132 #: lib/repeatform.php:132
msgid "Repeat this notice" msgid "Repeat this notice"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2009-12-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+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"
@ -184,11 +184,11 @@ msgstr ""
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "" msgstr ""
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "" msgstr ""
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "" msgstr ""
@ -300,31 +300,31 @@ msgid "Could not find target user."
msgstr "" msgstr ""
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 ""
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "" msgstr ""
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "" msgstr ""
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "" msgstr ""
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "" msgstr ""
@ -335,7 +335,7 @@ msgid "Description is too long (max %d chars)."
msgstr "" msgstr ""
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "" msgstr ""
@ -450,7 +450,7 @@ msgstr ""
msgid "Not found" msgid "Not found"
msgstr "" msgstr ""
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "" msgstr ""
@ -579,7 +579,7 @@ msgid "Preview"
msgstr "" msgstr ""
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -592,13 +592,13 @@ msgid "Crop"
msgstr "" msgstr ""
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -668,7 +668,7 @@ msgstr ""
msgid "Block this user" msgid "Block this user"
msgstr "" msgstr ""
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "" msgstr ""
@ -740,7 +740,7 @@ msgstr ""
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "" msgstr ""
@ -800,7 +800,7 @@ msgstr ""
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "" msgstr ""
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "" msgstr ""
@ -934,7 +934,7 @@ msgstr ""
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1416,7 +1416,7 @@ msgstr ""
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "" msgstr ""
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "" msgstr ""
@ -1503,7 +1503,7 @@ msgstr ""
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "" msgstr ""
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "" msgstr ""
@ -1672,7 +1672,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:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "" msgstr ""
@ -1768,7 +1768,7 @@ msgstr ""
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "" msgstr ""
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "" msgstr ""
@ -1875,7 +1875,7 @@ msgstr ""
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "" msgstr ""
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "" msgstr ""
@ -1883,7 +1883,7 @@ msgstr ""
msgid "New notice" msgid "New notice"
msgstr "" msgstr ""
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "" msgstr ""
@ -2300,69 +2300,77 @@ msgstr ""
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "" msgstr ""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "" msgstr ""
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "" msgstr ""
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "" msgstr ""
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "" msgstr ""
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "" msgstr ""
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, php-format #, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "" msgstr ""
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "" msgstr ""
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "" msgstr ""
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "" msgstr ""
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "" msgstr ""
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
msgid "Couldn't save location prefs."
msgstr ""
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "" msgstr ""
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "" msgstr ""
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "" msgstr ""
@ -2455,7 +2463,7 @@ msgid ""
"one!" "one!"
msgstr "" msgstr ""
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "" msgstr ""
@ -2591,7 +2599,7 @@ msgstr ""
msgid "Registration successful" msgid "Registration successful"
msgstr "" msgstr ""
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "" msgstr ""
@ -2755,7 +2763,7 @@ msgstr ""
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "" msgstr ""
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
msgid "Repeated" msgid "Repeated"
msgstr "" msgstr ""
@ -3825,16 +3833,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "" msgstr ""
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "" msgstr ""
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "" msgstr ""
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "" msgstr ""
@ -3889,140 +3897,140 @@ msgstr ""
msgid "Untitled page" msgid "Untitled page"
msgstr "" msgstr ""
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "" msgstr ""
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "" msgstr ""
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "" msgstr ""
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "" msgstr ""
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "" msgstr ""
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "" msgstr ""
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect to services" msgid "Connect to services"
msgstr "" msgstr ""
#: lib/action.php:440 #: lib/action.php:441
msgid "Change site configuration" msgid "Change site configuration"
msgstr "" msgstr ""
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "" msgstr ""
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "" msgstr ""
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "" msgstr ""
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "" msgstr ""
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "" msgstr ""
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "" msgstr ""
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "" msgstr ""
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "" msgstr ""
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "" msgstr ""
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "" msgstr ""
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "" msgstr ""
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "" msgstr ""
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "" msgstr ""
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "" msgstr ""
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "" msgstr ""
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "" msgstr ""
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "" msgstr ""
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "" msgstr ""
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "" msgstr ""
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "" msgstr ""
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "" msgstr ""
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
"broughtby%%](%%site.broughtbyurl%%). " "broughtby%%](%%site.broughtbyurl%%). "
msgstr "" msgstr ""
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "" msgstr ""
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4030,31 +4038,31 @@ msgid ""
"org/licensing/licenses/agpl-3.0.html)." "org/licensing/licenses/agpl-3.0.html)."
msgstr "" msgstr ""
#: lib/action.php:790 #: lib/action.php:791
msgid "Site content license" msgid "Site content license"
msgstr "" msgstr ""
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "" msgstr ""
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "" msgstr ""
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "" msgstr ""
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "" msgstr ""
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "" msgstr ""
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "" msgstr ""
@ -4106,6 +4114,14 @@ msgstr ""
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "" msgstr ""
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
msgid "Password changing failed"
msgstr ""
#: lib/authenticationplugin.php:197
msgid "Password changing is not allowed"
msgstr ""
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "" msgstr ""
@ -4766,7 +4782,7 @@ msgid ""
"users in conversation. People can send you messages for your eyes only." "users in conversation. People can send you messages for your eyes only."
msgstr "" msgstr ""
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
msgid "from" msgid "from"
msgstr "" msgstr ""
@ -4830,69 +4846,73 @@ msgstr ""
msgid "To" msgid "To"
msgstr "" msgstr ""
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "" msgstr ""
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "" msgstr ""
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "" msgstr ""
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "" msgstr ""
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "" msgstr ""
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "N" msgid "N"
msgstr "" msgstr ""
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "" msgstr ""
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "" msgstr ""
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "" msgstr ""
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "" msgstr ""
#: lib/noticelist.php:548 #: lib/noticelist.php:556
msgid "Repeated by" msgid "Repeated by"
msgstr "" msgstr ""
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "" msgstr ""
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "" msgstr ""
#: lib/noticelist.php:620 #: lib/noticelist.php:628
msgid "Notice repeated" msgid "Notice repeated"
msgstr "" msgstr ""

View File

@ -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-25 09:42+0000\n" "POT-Creation-Date: 2010-01-05 22:10+0000\n"
"PO-Revision-Date: 2009-12-25 09:43:47+0000\n" "PO-Revision-Date: 2010-01-05 22:12:32+0000\n"
"Language-Team: Swedish\n" "Language-Team: Swedish\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"X-Generator: MediaWiki 1.16alpha (r60380); Translate extension (2009-12-06)\n" "X-Generator: MediaWiki 1.16alpha (r60693); Translate extension (2010-01-04)\n"
"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n"
"X-Language-Code: sv\n" "X-Language-Code: sv\n"
"X-Message-Group: out-statusnet\n" "X-Message-Group: out-statusnet\n"
@ -196,11 +196,11 @@ msgstr "Kunde inte uppdatera din profils utseende."
msgid "You cannot block yourself!" msgid "You cannot block yourself!"
msgstr "Du kan inte blockera dig själv!" msgstr "Du kan inte blockera dig själv!"
#: actions/apiblockcreate.php:119 #: actions/apiblockcreate.php:126
msgid "Block user failed." msgid "Block user failed."
msgstr "Blockering av användare misslyckades." msgstr "Blockering av användare misslyckades."
#: actions/apiblockdestroy.php:107 #: actions/apiblockdestroy.php:114
msgid "Unblock user failed." msgid "Unblock user failed."
msgstr "Hävning av blockering av användare misslyckades." msgstr "Hävning av blockering av användare misslyckades."
@ -312,32 +312,32 @@ msgid "Could not find target user."
msgstr "" msgstr ""
#: 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:215
#: actions/register.php:205 #: actions/register.php:205
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 ""
"Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag." "Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag."
#: 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:238
#: actions/register.php:208 #: actions/register.php:208
msgid "Nickname already in use. Try another one." msgid "Nickname already in use. Try another one."
msgstr "Smeknamnet används redan. Försök med ett annat." msgstr "Smeknamnet används redan. Försök med ett annat."
#: actions/apigroupcreate.php:180 actions/editgroup.php:189 #: actions/apigroupcreate.php:180 actions/editgroup.php:189
#: actions/newgroup.php:133 actions/profilesettings.php:211 #: actions/newgroup.php:133 actions/profilesettings.php:218
#: actions/register.php:210 #: actions/register.php:210
msgid "Not a valid nickname." msgid "Not a valid nickname."
msgstr "Inte ett giltigt smeknamn." msgstr "Inte ett giltigt smeknamn."
#: actions/apigroupcreate.php:196 actions/editgroup.php:195 #: actions/apigroupcreate.php:196 actions/editgroup.php:195
#: actions/newgroup.php:139 actions/profilesettings.php:215 #: actions/newgroup.php:139 actions/profilesettings.php:222
#: actions/register.php:217 #: actions/register.php:217
msgid "Homepage is not a valid URL." msgid "Homepage is not a valid URL."
msgstr "Hemsida är inte en giltig URL." msgstr "Hemsida är inte en giltig URL."
#: actions/apigroupcreate.php:205 actions/editgroup.php:198 #: actions/apigroupcreate.php:205 actions/editgroup.php:198
#: actions/newgroup.php:142 actions/profilesettings.php:218 #: actions/newgroup.php:142 actions/profilesettings.php:225
#: actions/register.php:220 #: actions/register.php:220
msgid "Full name is too long (max 255 chars)." msgid "Full name is too long (max 255 chars)."
msgstr "Fullständigt namn är för långt (max 255 tecken)." msgstr "Fullständigt namn är för långt (max 255 tecken)."
@ -348,7 +348,7 @@ msgid "Description is too long (max %d chars)."
msgstr "Beskrivning är för lång (max 140 tecken)" msgstr "Beskrivning är för lång (max 140 tecken)"
#: 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:232
#: actions/register.php:227 #: actions/register.php:227
msgid "Location is too long (max 255 chars)." msgid "Location is too long (max 255 chars)."
msgstr "Beskrivning av plats är för lång (max 255 tecken)." msgstr "Beskrivning av plats är för lång (max 255 tecken)."
@ -463,7 +463,7 @@ msgstr "Det är för långt. Maximal notisstorlek är %d tecken."
msgid "Not found" msgid "Not found"
msgstr "Hittades inte" msgstr "Hittades inte"
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191 #: actions/apistatusesupdate.php:221 actions/newnotice.php:178
#, php-format #, php-format
msgid "Max notice size is %d chars, including attachment URL." msgid "Max notice size is %d chars, including attachment URL."
msgstr "Maximal notisstorlek är %d tecken, inklusive bilage-URL." msgstr "Maximal notisstorlek är %d tecken, inklusive bilage-URL."
@ -593,7 +593,7 @@ msgid "Preview"
msgstr "Förhandsgranska" msgstr "Förhandsgranska"
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66 #: actions/avatarsettings.php:149 lib/deleteuserform.php:66
#: lib/noticelist.php:603 #: lib/noticelist.php:611
msgid "Delete" msgid "Delete"
msgstr "Ta bort" msgstr "Ta bort"
@ -606,13 +606,13 @@ msgid "Crop"
msgstr "Beskär" msgstr "Beskär"
#: actions/avatarsettings.php:268 actions/disfavor.php:74 #: actions/avatarsettings.php:268 actions/disfavor.php:74
#: actions/emailsettings.php:238 actions/favor.php:75 #: actions/emailsettings.php:238 actions/favor.php:75 actions/geocode.php:50
#: 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:135 actions/makeadmin.php:66 #: actions/invite.php:56 actions/login.php:135 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:194 actions/recoverpassword.php:337
#: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/register.php:165 actions/remotesubscribe.php:77
#: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38 #: actions/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
#: actions/subscribe.php:46 actions/tagother.php:166 #: actions/subscribe.php:46 actions/tagother.php:166
@ -685,7 +685,7 @@ msgstr "Ja"
msgid "Block this user" msgid "Block this user"
msgstr "Blockera denna användare" msgstr "Blockera denna användare"
#: actions/block.php:162 #: actions/block.php:167
msgid "Failed to save block information." msgid "Failed to save block information."
msgstr "Misslyckades att spara blockeringsinformation." msgstr "Misslyckades att spara blockeringsinformation."
@ -758,7 +758,7 @@ msgstr "Denna adress har redan blivit bekräftad."
#: actions/confirmaddress.php:114 actions/emailsettings.php:296 #: actions/confirmaddress.php:114 actions/emailsettings.php:296
#: actions/emailsettings.php:427 actions/imsettings.php:258 #: actions/emailsettings.php:427 actions/imsettings.php:258
#: actions/imsettings.php:401 actions/othersettings.php:174 #: actions/imsettings.php:401 actions/othersettings.php:174
#: actions/profilesettings.php:276 actions/smssettings.php:278 #: actions/profilesettings.php:283 actions/smssettings.php:278
#: actions/smssettings.php:420 #: actions/smssettings.php:420
msgid "Couldn't update user." msgid "Couldn't update user."
msgstr "Kunde inte uppdatera användare." msgstr "Kunde inte uppdatera användare."
@ -820,7 +820,7 @@ msgstr "Är du säker på att du vill ta bort denna notis?"
msgid "Do not delete this notice" msgid "Do not delete this notice"
msgstr "Ta inte bort denna notis" msgstr "Ta inte bort denna notis"
#: actions/deletenotice.php:146 lib/noticelist.php:603 #: actions/deletenotice.php:146 lib/noticelist.php:611
msgid "Delete this notice" msgid "Delete this notice"
msgstr "Ta bort denna notis" msgstr "Ta bort denna notis"
@ -958,7 +958,7 @@ msgstr "Återställ till standardvärde"
#: actions/designadminpanel.php:586 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:324 actions/profilesettings.php:167 #: actions/pathsadminpanel.php:324 actions/profilesettings.php:174
#: actions/siteadminpanel.php:388 actions/smssettings.php:181 #: actions/siteadminpanel.php:388 actions/smssettings.php:181
#: actions/subscriptions.php:203 actions/tagother.php:154 #: actions/subscriptions.php:203 actions/tagother.php:154
#: actions/useradminpanel.php:313 lib/designsettings.php:256 #: actions/useradminpanel.php:313 lib/designsettings.php:256
@ -1456,7 +1456,7 @@ msgstr "%s gruppmedlemmar, sida %d"
msgid "A list of the users in this group." msgid "A list of the users in this group."
msgstr "En lista av användarna i denna grupp." msgstr "En lista av användarna i denna grupp."
#: actions/groupmembers.php:175 lib/action.php:440 lib/groupnav.php:107 #: actions/groupmembers.php:175 lib/action.php:441 lib/groupnav.php:107
msgid "Admin" msgid "Admin"
msgstr "Administratör" msgstr "Administratör"
@ -1555,7 +1555,7 @@ msgstr "Bara en administratör kan häva blockering av gruppmedlemmar."
msgid "User is not blocked from group." msgid "User is not blocked from group."
msgstr "Användare är inte blockerad från grupp." msgstr "Användare är inte blockerad från grupp."
#: actions/groupunblock.php:128 actions/unblock.php:77 #: actions/groupunblock.php:128 actions/unblock.php:86
msgid "Error removing the block." msgid "Error removing the block."
msgstr "Fel vid hävning av blockering." msgstr "Fel vid hävning av blockering."
@ -1741,7 +1741,7 @@ msgstr "Personligt meddelande"
msgid "Optionally add a personal message to the invitation." msgid "Optionally add a personal message to the invitation."
msgstr "Om du vill, skriv ett personligt meddelande till inbjudan." msgstr "Om du vill, skriv ett personligt meddelande till inbjudan."
#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:222 #: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
msgid "Send" msgid "Send"
msgstr "Skicka" msgstr "Skicka"
@ -1837,7 +1837,7 @@ msgstr "Felaktigt användarnamn eller lösenord."
msgid "Error setting user. You are probably not authorized." msgid "Error setting user. You are probably not authorized."
msgstr "Fel vid inställning av användare. Du har sannolikt inte tillstånd." msgstr "Fel vid inställning av användare. Du har sannolikt inte tillstånd."
#: actions/login.php:208 actions/login.php:261 lib/action.php:458 #: actions/login.php:208 actions/login.php:261 lib/action.php:459
#: lib/logingroupnav.php:79 #: lib/logingroupnav.php:79
msgid "Login" msgid "Login"
msgstr "Logga in" msgstr "Logga in"
@ -1950,7 +1950,7 @@ msgstr "Meddelande skickat"
msgid "Direct message to %s sent" msgid "Direct message to %s sent"
msgstr "Direktmeddelande till %s skickat" msgstr "Direktmeddelande till %s skickat"
#: actions/newmessage.php:210 actions/newnotice.php:250 lib/channel.php:170 #: actions/newmessage.php:210 actions/newnotice.php:245 lib/channel.php:170
msgid "Ajax Error" msgid "Ajax Error"
msgstr "AJAX-fel" msgstr "AJAX-fel"
@ -1958,7 +1958,7 @@ msgstr "AJAX-fel"
msgid "New notice" msgid "New notice"
msgstr "Ny notis" msgstr "Ny notis"
#: actions/newnotice.php:216 #: actions/newnotice.php:211
msgid "Notice posted" msgid "Notice posted"
msgstr "Notis postad" msgstr "Notis postad"
@ -2387,72 +2387,81 @@ msgstr "Plats"
msgid "Where you are, like \"City, State (or Region), Country\"" msgid "Where you are, like \"City, State (or Region), Country\""
msgstr "Var du håller till, såsom \"Stad, Län, Land\"" msgstr "Var du håller till, såsom \"Stad, Län, Land\""
#: actions/profilesettings.php:138 actions/tagother.php:149 #: actions/profilesettings.php:138
msgid "Share my current location when posting notices"
msgstr ""
#: actions/profilesettings.php:145 actions/tagother.php:149
#: actions/tagother.php:209 lib/subscriptionlist.php:106 #: actions/tagother.php:209 lib/subscriptionlist.php:106
#: lib/subscriptionlist.php:108 lib/userprofile.php:209 #: lib/subscriptionlist.php:108 lib/userprofile.php:209
msgid "Tags" msgid "Tags"
msgstr "Taggar" msgstr "Taggar"
#: actions/profilesettings.php:140 #: actions/profilesettings.php:147
msgid "" msgid ""
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
msgstr "" msgstr ""
"Taggar för dig själv (bokstäver, nummer, -, ., och _), separerade med " "Taggar för dig själv (bokstäver, nummer, -, ., och _), separerade med "
"kommatecken eller mellanslag" "kommatecken eller mellanslag"
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294 #: actions/profilesettings.php:151 actions/siteadminpanel.php:294
msgid "Language" msgid "Language"
msgstr "Språk" msgstr "Språk"
#: actions/profilesettings.php:145 #: actions/profilesettings.php:152
msgid "Preferred language" msgid "Preferred language"
msgstr "Föredraget språk" msgstr "Föredraget språk"
#: actions/profilesettings.php:154 #: actions/profilesettings.php:161
msgid "Timezone" msgid "Timezone"
msgstr "Tidszon" msgstr "Tidszon"
#: actions/profilesettings.php:155 #: actions/profilesettings.php:162
msgid "What timezone are you normally in?" msgid "What timezone are you normally in?"
msgstr "I vilken tidszon befinner du dig normalt?" msgstr "I vilken tidszon befinner du dig normalt?"
#: actions/profilesettings.php:160 #: actions/profilesettings.php:167
msgid "" msgid ""
"Automatically subscribe to whoever subscribes to me (best for non-humans)" "Automatically subscribe to whoever subscribes to me (best for non-humans)"
msgstr "" msgstr ""
"Prenumerera automatiskt på den prenumererar på mig (bäst för icke-människa) " "Prenumerera automatiskt på den prenumererar på mig (bäst för icke-människa) "
#: actions/profilesettings.php:221 actions/register.php:223 #: actions/profilesettings.php:228 actions/register.php:223
#, php-format #, php-format
msgid "Bio is too long (max %d chars)." msgid "Bio is too long (max %d chars)."
msgstr "Biografin är för lång (max %d tecken)." msgstr "Biografin är för lång (max %d tecken)."
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164 #: actions/profilesettings.php:235 actions/siteadminpanel.php:164
msgid "Timezone not selected." msgid "Timezone not selected."
msgstr "Tidszon inte valt." msgstr "Tidszon inte valt."
#: actions/profilesettings.php:234 #: actions/profilesettings.php:241
msgid "Language is too long (max 50 chars)." msgid "Language is too long (max 50 chars)."
msgstr "Språknamn är för långt (max 50 tecken)." msgstr "Språknamn är för långt (max 50 tecken)."
#: actions/profilesettings.php:246 actions/tagother.php:178 #: actions/profilesettings.php:253 actions/tagother.php:178
#, php-format #, php-format
msgid "Invalid tag: \"%s\"" msgid "Invalid tag: \"%s\""
msgstr "Ogiltig tagg: \"%s\"" msgstr "Ogiltig tagg: \"%s\""
#: actions/profilesettings.php:295 #: actions/profilesettings.php:302
msgid "Couldn't update user for autosubscribe." msgid "Couldn't update user for autosubscribe."
msgstr "Kunde inte uppdatera användaren för automatisk prenumeration." msgstr "Kunde inte uppdatera användaren för automatisk prenumeration."
#: actions/profilesettings.php:328 #: actions/profilesettings.php:354
#, fuzzy
msgid "Couldn't save location prefs."
msgstr "Kunde inte spara taggar."
#: actions/profilesettings.php:366
msgid "Couldn't save profile." msgid "Couldn't save profile."
msgstr "Kunde inte spara profil." msgstr "Kunde inte spara profil."
#: actions/profilesettings.php:336 #: actions/profilesettings.php:374
msgid "Couldn't save tags." msgid "Couldn't save tags."
msgstr "Kunde inte spara taggar." msgstr "Kunde inte spara taggar."
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 #: actions/profilesettings.php:382 lib/adminpanelaction.php:126
msgid "Settings saved." msgid "Settings saved."
msgstr "Inställningar sparade." msgstr "Inställningar sparade."
@ -2558,7 +2567,7 @@ msgstr ""
"Varför inte [registrera ett konto](%%action.register%%) och bli först att " "Varför inte [registrera ett konto](%%action.register%%) och bli först att "
"posta en!" "posta en!"
#: actions/publictagcloud.php:135 #: actions/publictagcloud.php:131
msgid "Tag cloud" msgid "Tag cloud"
msgstr "Taggmoln" msgstr "Taggmoln"
@ -2699,7 +2708,7 @@ msgstr "Ledsen, ogiltig inbjudningskod."
msgid "Registration successful" msgid "Registration successful"
msgstr "Registreringen genomförd" msgstr "Registreringen genomförd"
#: actions/register.php:114 actions/register.php:502 lib/action.php:455 #: actions/register.php:114 actions/register.php:502 lib/action.php:456
#: lib/logingroupnav.php:85 #: lib/logingroupnav.php:85
msgid "Register" msgid "Register"
msgstr "Registrera" msgstr "Registrera"
@ -2879,7 +2888,7 @@ msgstr "Du kan inte upprepa din egna notis."
msgid "You already repeated that notice." msgid "You already repeated that notice."
msgstr "Du har redan upprepat denna notis." msgstr "Du har redan upprepat denna notis."
#: actions/repeat.php:114 lib/noticelist.php:621 #: actions/repeat.php:114 lib/noticelist.php:629
msgid "Repeated" msgid "Repeated"
msgstr "Upprepad" msgstr "Upprepad"
@ -4018,16 +4027,16 @@ msgstr ""
msgid "You are banned from posting notices on this site." msgid "You are banned from posting notices on this site."
msgstr "Du är utestängd från att posta notiser på denna webbplats." msgstr "Du är utestängd från att posta notiser på denna webbplats."
#: classes/Notice.php:319 classes/Notice.php:344 #: classes/Notice.php:309 classes/Notice.php:334
msgid "Problem saving notice." msgid "Problem saving notice."
msgstr "Problem med att spara notis." msgstr "Problem med att spara notis."
#: classes/Notice.php:1044 #: classes/Notice.php:1034
#, php-format #, php-format
msgid "DB error inserting reply: %s" msgid "DB error inserting reply: %s"
msgstr "Databasfel vid infogning av svar: %s" msgstr "Databasfel vid infogning av svar: %s"
#: classes/Notice.php:1371 #: classes/Notice.php:1361
#, php-format #, php-format
msgid "RT @%1$s %2$s" msgid "RT @%1$s %2$s"
msgstr "RT @%1$s %2$s" msgstr "RT @%1$s %2$s"
@ -4082,128 +4091,128 @@ msgstr "%s - %s"
msgid "Untitled page" msgid "Untitled page"
msgstr "Namnlös sida" msgstr "Namnlös sida"
#: lib/action.php:425 #: lib/action.php:426
msgid "Primary site navigation" msgid "Primary site navigation"
msgstr "Primär webbplatsnavigation" msgstr "Primär webbplatsnavigation"
#: lib/action.php:431 #: lib/action.php:432
msgid "Home" msgid "Home"
msgstr "Hem" msgstr "Hem"
#: lib/action.php:431 #: lib/action.php:432
msgid "Personal profile and friends timeline" msgid "Personal profile and friends timeline"
msgstr "Personlig profil och vänners tidslinje" msgstr "Personlig profil och vänners tidslinje"
#: lib/action.php:433 #: lib/action.php:434
msgid "Account" msgid "Account"
msgstr "Konto" msgstr "Konto"
#: lib/action.php:433 #: lib/action.php:434
msgid "Change your email, avatar, password, profile" msgid "Change your email, avatar, password, profile"
msgstr "Ändra din e-post, avatar, lösenord, profil" msgstr "Ändra din e-post, avatar, lösenord, profil"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect" msgid "Connect"
msgstr "Anslut" msgstr "Anslut"
#: lib/action.php:436 #: lib/action.php:437
msgid "Connect to services" msgid "Connect to services"
msgstr "Anslut till tjänster" msgstr "Anslut till tjänster"
#: lib/action.php:440 #: lib/action.php:441
msgid "Change site configuration" msgid "Change site configuration"
msgstr "Ändra webbplatskonfiguration" msgstr "Ändra webbplatskonfiguration"
#: lib/action.php:444 lib/subgroupnav.php:105 #: lib/action.php:445 lib/subgroupnav.php:105
msgid "Invite" msgid "Invite"
msgstr "Bjud in" msgstr "Bjud in"
#: lib/action.php:445 lib/subgroupnav.php:106 #: lib/action.php:446 lib/subgroupnav.php:106
#, php-format #, php-format
msgid "Invite friends and colleagues to join you on %s" msgid "Invite friends and colleagues to join you on %s"
msgstr "Bjud in vänner och kollegor att gå med dig på %s" msgstr "Bjud in vänner och kollegor att gå med dig på %s"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout" msgid "Logout"
msgstr "Logga ut" msgstr "Logga ut"
#: lib/action.php:450 #: lib/action.php:451
msgid "Logout from the site" msgid "Logout from the site"
msgstr "Logga ut från webbplatsen" msgstr "Logga ut från webbplatsen"
#: lib/action.php:455 #: lib/action.php:456
msgid "Create an account" msgid "Create an account"
msgstr "Skapa ett konto" msgstr "Skapa ett konto"
#: lib/action.php:458 #: lib/action.php:459
msgid "Login to the site" msgid "Login to the site"
msgstr "Logga in på webbplatsen" msgstr "Logga in på webbplatsen"
#: lib/action.php:461 lib/action.php:724 #: lib/action.php:462 lib/action.php:725
msgid "Help" msgid "Help"
msgstr "Hjälp" msgstr "Hjälp"
#: lib/action.php:461 #: lib/action.php:462
msgid "Help me!" msgid "Help me!"
msgstr "Hjälp mig!" msgstr "Hjälp mig!"
#: lib/action.php:464 lib/searchaction.php:127 #: lib/action.php:465 lib/searchaction.php:127
msgid "Search" msgid "Search"
msgstr "Sök" msgstr "Sök"
#: lib/action.php:464 #: lib/action.php:465
msgid "Search for people or text" msgid "Search for people or text"
msgstr "Sök efter personer eller text" msgstr "Sök efter personer eller text"
#: lib/action.php:485 #: lib/action.php:486
msgid "Site notice" msgid "Site notice"
msgstr "Webbplatsnotis" msgstr "Webbplatsnotis"
#: lib/action.php:551 #: lib/action.php:552
msgid "Local views" msgid "Local views"
msgstr "Lokala vyer" msgstr "Lokala vyer"
#: lib/action.php:617 #: lib/action.php:618
msgid "Page notice" msgid "Page notice"
msgstr "Sidnotis" msgstr "Sidnotis"
#: lib/action.php:719 #: lib/action.php:720
msgid "Secondary site navigation" msgid "Secondary site navigation"
msgstr "Sekundär webbplatsnavigation" msgstr "Sekundär webbplatsnavigation"
#: lib/action.php:726 #: lib/action.php:727
msgid "About" msgid "About"
msgstr "Om" msgstr "Om"
#: lib/action.php:728 #: lib/action.php:729
msgid "FAQ" msgid "FAQ"
msgstr "Frågor & svar" msgstr "Frågor & svar"
#: lib/action.php:732 #: lib/action.php:733
msgid "TOS" msgid "TOS"
msgstr "Användarvillkor" msgstr "Användarvillkor"
#: lib/action.php:735 #: lib/action.php:736
msgid "Privacy" msgid "Privacy"
msgstr "Sekretess" msgstr "Sekretess"
#: lib/action.php:737 #: lib/action.php:738
msgid "Source" msgid "Source"
msgstr "Källa" msgstr "Källa"
#: lib/action.php:739 #: lib/action.php:740
msgid "Contact" msgid "Contact"
msgstr "Kontakt" msgstr "Kontakt"
#: lib/action.php:741 #: lib/action.php:742
msgid "Badge" msgid "Badge"
msgstr "Emblem" msgstr "Emblem"
#: lib/action.php:769 #: lib/action.php:770
msgid "StatusNet software license" msgid "StatusNet software license"
msgstr "Programvarulicens för StatusNet" msgstr "Programvarulicens för StatusNet"
#: lib/action.php:772 #: lib/action.php:773
#, php-format #, php-format
msgid "" msgid ""
"**%%site.name%%** is a microblogging service brought to you by [%%site." "**%%site.name%%** is a microblogging service brought to you by [%%site."
@ -4212,12 +4221,12 @@ msgstr ""
"**%%site.name%%** är en mikrobloggtjänst tillhandahållen av [%%site.broughtby" "**%%site.name%%** är en mikrobloggtjänst tillhandahållen av [%%site.broughtby"
"%%](%%site.broughtbyurl%%)" "%%](%%site.broughtbyurl%%)"
#: lib/action.php:774 #: lib/action.php:775
#, php-format #, php-format
msgid "**%%site.name%%** is a microblogging service. " msgid "**%%site.name%%** is a microblogging service. "
msgstr "**%%site.name%%** är en mikrobloggtjänst." msgstr "**%%site.name%%** är en mikrobloggtjänst."
#: lib/action.php:776 #: lib/action.php:777
#, php-format #, php-format
msgid "" msgid ""
"It runs the [StatusNet](http://status.net/) microblogging software, version %" "It runs the [StatusNet](http://status.net/) microblogging software, version %"
@ -4228,31 +4237,31 @@ msgstr ""
"version %s, tillgänglig under [GNU Affero General Public License](http://www." "version %s, tillgänglig under [GNU Affero General Public License](http://www."
"fsf.org/licensing/licenses/agpl-3.0.html)." "fsf.org/licensing/licenses/agpl-3.0.html)."
#: lib/action.php:790 #: lib/action.php:791
msgid "Site content license" msgid "Site content license"
msgstr "Licens för webbplatsinnehåll" msgstr "Licens för webbplatsinnehåll"
#: lib/action.php:799 #: lib/action.php:800
msgid "All " msgid "All "
msgstr "Alla " msgstr "Alla "
#: lib/action.php:804 #: lib/action.php:805
msgid "license." msgid "license."
msgstr "licens." msgstr "licens."
#: lib/action.php:1098 #: lib/action.php:1099
msgid "Pagination" msgid "Pagination"
msgstr "Numrering av sidor" msgstr "Numrering av sidor"
#: lib/action.php:1107 #: lib/action.php:1108
msgid "After" msgid "After"
msgstr "Senare" msgstr "Senare"
#: lib/action.php:1115 #: lib/action.php:1116
msgid "Before" msgid "Before"
msgstr "Tidigare" msgstr "Tidigare"
#: lib/action.php:1163 #: lib/action.php:1164
msgid "There was a problem with your session token." msgid "There was a problem with your session token."
msgstr "Det var ett problem med din sessions-token." msgstr "Det var ett problem med din sessions-token."
@ -4304,6 +4313,16 @@ msgstr "Notiser där denna bilaga förekommer"
msgid "Tags for this attachment" msgid "Tags for this attachment"
msgstr "Taggar för denna billaga" msgstr "Taggar för denna billaga"
#: lib/authenticationplugin.php:182 lib/authenticationplugin.php:187
#, fuzzy
msgid "Password changing failed"
msgstr "Byte av lösenord"
#: lib/authenticationplugin.php:197
#, fuzzy
msgid "Password changing is not allowed"
msgstr "Byte av lösenord"
#: lib/channel.php:138 lib/channel.php:158 #: lib/channel.php:138 lib/channel.php:158
msgid "Command results" msgid "Command results"
msgstr "Resultat av kommando" msgstr "Resultat av kommando"
@ -4983,7 +5002,7 @@ msgstr ""
"engagera andra användare i konversationen. Folk kan skicka meddelanden till " "engagera andra användare i konversationen. Folk kan skicka meddelanden till "
"dig som bara du ser." "dig som bara du ser."
#: lib/mailbox.php:227 lib/noticelist.php:469 #: lib/mailbox.php:227 lib/noticelist.php:477
msgid "from" msgid "from"
msgstr "från" msgstr "från"
@ -5051,69 +5070,73 @@ msgstr "Skicka ett direktinlägg"
msgid "To" msgid "To"
msgstr "Till" msgstr "Till"
#: lib/messageform.php:159 lib/noticeform.php:183 #: lib/messageform.php:159 lib/noticeform.php:185
msgid "Available characters" msgid "Available characters"
msgstr "Tillgängliga tecken" msgstr "Tillgängliga tecken"
#: lib/noticeform.php:158 #: lib/noticeform.php:160
msgid "Send a notice" msgid "Send a notice"
msgstr "Skicka ett inlägg" msgstr "Skicka ett inlägg"
#: lib/noticeform.php:171 #: lib/noticeform.php:173
#, php-format #, php-format
msgid "What's up, %s?" msgid "What's up, %s?"
msgstr "Vad är på gång, %s?" msgstr "Vad är på gång, %s?"
#: lib/noticeform.php:190 #: lib/noticeform.php:192
msgid "Attach" msgid "Attach"
msgstr "Bifoga" msgstr "Bifoga"
#: lib/noticeform.php:194 #: lib/noticeform.php:196
msgid "Attach a file" msgid "Attach a file"
msgstr "Bifoga en fil" msgstr "Bifoga en fil"
#: lib/noticelist.php:420 #: lib/noticeform.php:212
msgid "Share your location"
msgstr ""
#: lib/noticelist.php:428
#, php-format #, php-format
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s" msgstr "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "N" msgid "N"
msgstr "N" msgstr "N"
#: lib/noticelist.php:421 #: lib/noticelist.php:429
msgid "S" msgid "S"
msgstr "S" msgstr "S"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "E" msgid "E"
msgstr "Ö" msgstr "Ö"
#: lib/noticelist.php:422 #: lib/noticelist.php:430
msgid "W" msgid "W"
msgstr "V" msgstr "V"
#: lib/noticelist.php:428 #: lib/noticelist.php:436
msgid "at" msgid "at"
msgstr "på" msgstr "på"
#: lib/noticelist.php:523 #: lib/noticelist.php:531
msgid "in context" msgid "in context"
msgstr "i sammanhang" msgstr "i sammanhang"
#: lib/noticelist.php:548 #: lib/noticelist.php:556
msgid "Repeated by" msgid "Repeated by"
msgstr "Upprepad av" msgstr "Upprepad av"
#: lib/noticelist.php:577 #: lib/noticelist.php:585
msgid "Reply to this notice" msgid "Reply to this notice"
msgstr "Svara på detta inlägg" msgstr "Svara på detta inlägg"
#: lib/noticelist.php:578 #: lib/noticelist.php:586
msgid "Reply" msgid "Reply"
msgstr "Svara" msgstr "Svara"
#: lib/noticelist.php:620 #: lib/noticelist.php:628
msgid "Notice repeated" msgid "Notice repeated"
msgstr "Notis upprepad" msgstr "Notis upprepad"

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