Merge commit 'origin/0.9.x' into 0.9.x
This commit is contained in:
commit
4de09d6bd4
15
EVENTS.txt
15
EVENTS.txt
@ -640,3 +640,18 @@ EndLog: After writing to the logs
|
||||
- $msg
|
||||
- $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
21
README
@ -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
|
||||
"proper behaviour" hasn't been defined here, so handle with care.
|
||||
|
||||
If fancy URLs is enabled, access to file attachments can also be
|
||||
restricted to logged-in users only. Uncomment the appropriate rewrite
|
||||
rule in .htaccess or your server's httpd.conf. (This most likely will
|
||||
not work if you are using a virtual server for attachments, so consider
|
||||
the performance/security tradeoff.)
|
||||
Access to file attachments can also be restricted to logged-in users only.
|
||||
1. Add a directory outside the web root where your file uploads will be
|
||||
stored. Usually a command like this will work:
|
||||
|
||||
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
|
||||
=========
|
||||
@ -1612,6 +1622,7 @@ if anyone's been overlooked in error.
|
||||
* Craig Andrews
|
||||
* mEDI
|
||||
* Brett Taylor
|
||||
* Brigitte Schuster
|
||||
|
||||
Thanks also to the developers of our upstream library code and to the
|
||||
thousands of people who have tried out Identi.ca, installed StatusNet,
|
||||
|
@ -109,9 +109,16 @@ class ApiBlockCreateAction extends ApiAuthAction
|
||||
return;
|
||||
}
|
||||
|
||||
if ($this->user->hasBlocked($this->other)
|
||||
|| $this->user->block($this->other)
|
||||
) {
|
||||
if (!$this->user->hasBlocked($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->showProfile($this->other, $this->format);
|
||||
$this->endDocument($this->format);
|
||||
|
@ -97,9 +97,16 @@ class ApiBlockDestroyAction extends ApiAuthAction
|
||||
return;
|
||||
}
|
||||
|
||||
if (!$this->user->hasBlocked($this->other)
|
||||
|| $this->user->unblock($this->other)
|
||||
) {
|
||||
if ($this->user->hasBlocked($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->showProfile($this->other, $this->format);
|
||||
$this->endDocument($this->format);
|
||||
|
@ -108,7 +108,7 @@ class ApiGroupLeaveAction extends ApiAuthAction
|
||||
$member = new Group_member();
|
||||
|
||||
$member->group_id = $this->group->id;
|
||||
$member->profile_id = $this->auth->id;
|
||||
$member->profile_id = $this->auth_user->id;
|
||||
|
||||
if (!$member->find(true)) {
|
||||
$this->serverError(_('You are not a member of this group.'));
|
||||
@ -118,12 +118,12 @@ class ApiGroupLeaveAction extends ApiAuthAction
|
||||
$result = $member->delete();
|
||||
|
||||
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.'),
|
||||
_('Could not remove user %s from group %s.'),
|
||||
$this->user->nickname,
|
||||
$this->$group->nickname
|
||||
$this->group->nickname
|
||||
)
|
||||
);
|
||||
return;
|
||||
|
@ -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;
|
||||
|
||||
try {
|
||||
@ -235,11 +229,15 @@ class ApiStatusesUpdateAction extends ApiAuthAction
|
||||
|
||||
$options = array('reply_to' => $reply_to);
|
||||
|
||||
if (!empty($location)) {
|
||||
$options['lat'] = $location->lat;
|
||||
$options['lon'] = $location->lon;
|
||||
$options['location_id'] = $location->location_id;
|
||||
$options['location_ns'] = $location->location_ns;
|
||||
if ($this->user->shareLocation()) {
|
||||
|
||||
$locOptions = Notice::locationOptions($this->lat,
|
||||
$this->lon,
|
||||
null,
|
||||
null,
|
||||
$this->user->getProfile());
|
||||
|
||||
$options = array_merge($options, $locOptions);
|
||||
}
|
||||
|
||||
$this->notice =
|
||||
|
@ -156,7 +156,12 @@ class BlockAction extends ProfileFormAction
|
||||
{
|
||||
$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) {
|
||||
$this->serverError(_('Failed to save block information.'));
|
||||
@ -164,4 +169,3 @@ class BlockAction extends ProfileFormAction
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -185,11 +185,7 @@ class FavoritedAction extends Action
|
||||
|
||||
function showContent()
|
||||
{
|
||||
if (common_config('db', 'type') == 'pgsql') {
|
||||
$weightexpr='sum(exp(-extract(epoch from (now() - fave.modified)) / %s))';
|
||||
} else {
|
||||
$weightexpr='sum(exp(-(now() - fave.modified) / %s))';
|
||||
}
|
||||
$weightexpr = common_sql_weight('fave.modified', common_config('popular', 'dropoff'));
|
||||
|
||||
$qry = 'SELECT notice.*, '.
|
||||
$weightexpr . ' as weight ' .
|
||||
@ -207,7 +203,7 @@ class FavoritedAction extends Action
|
||||
}
|
||||
|
||||
$notice = Memcached_DataObject::cachedQuery('Notice',
|
||||
sprintf($qry, common_config('popular', 'dropoff')),
|
||||
$qry,
|
||||
600);
|
||||
|
||||
$nl = new NoticeList($notice, $this);
|
||||
|
98
actions/geocode.php
Normal file
98
actions/geocode.php
Normal 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;
|
||||
}
|
||||
}
|
||||
?>
|
@ -1,13 +1,13 @@
|
||||
<?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
|
||||
* access to file attachments after login.
|
||||
* Return a requested file
|
||||
*
|
||||
* 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
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
@ -20,28 +20,32 @@
|
||||
* 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 Personal
|
||||
* @category PrivateAttachments
|
||||
* @package StatusNet
|
||||
* @author Jeffery To <jeffery.to@gmail.com>
|
||||
* @copyright 2008-2009 StatusNet, Inc.
|
||||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
|
||||
* @copyright 2009 StatusNet, Inc.
|
||||
* @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0
|
||||
* @link http://status.net/
|
||||
*/
|
||||
|
||||
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
||||
if (!defined('STATUSNET')) {
|
||||
exit(1);
|
||||
}
|
||||
|
||||
require_once 'MIME/Type.php';
|
||||
|
||||
/**
|
||||
* Action for getting a file attachment
|
||||
* An action for returning a requested file
|
||||
*
|
||||
* @category Personal
|
||||
* @package StatusNet
|
||||
* @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
|
||||
* @link http://status.net/
|
||||
* The StatusNet system will do an implicit user check if the site is
|
||||
* private before allowing this to continue
|
||||
*
|
||||
* @category PrivateAttachments
|
||||
* @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
|
||||
@ -68,7 +72,7 @@ class GetfileAction extends Action
|
||||
$path = null;
|
||||
|
||||
if ($filename) {
|
||||
$path = common_config('attachments', 'dir') . $filename;
|
||||
$path = File::path($filename);
|
||||
}
|
||||
|
||||
if (empty($path) or !file_exists($path)) {
|
||||
@ -103,6 +107,10 @@ class GetfileAction extends Action
|
||||
|
||||
function lastModified()
|
||||
{
|
||||
if (common_config('site', 'use_x_sendfile')) {
|
||||
return null;
|
||||
}
|
||||
|
||||
return filemtime($this->path);
|
||||
}
|
||||
|
||||
@ -114,8 +122,24 @@ class GetfileAction extends Action
|
||||
*
|
||||
* @return string etag http header
|
||||
*/
|
||||
|
||||
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);
|
||||
return '"' . $stat['ino'] . '-' . $stat['size'] . '-' . $stat['mtime'] . '"';
|
||||
}
|
||||
@ -133,13 +157,19 @@ class GetfileAction extends Action
|
||||
// undo headers set by PHP sessions
|
||||
$sec = session_cache_expire() * 60;
|
||||
header('Expires: ' . date(DATE_RFC1123, time() + $sec));
|
||||
header('Cache-Control: public, max-age=' . $sec);
|
||||
header('Pragma: public');
|
||||
header('Cache-Control: max-age=' . $sec);
|
||||
|
||||
parent::handle($args);
|
||||
|
||||
$path = $this->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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -123,8 +123,8 @@ class LeavegroupAction extends Action
|
||||
$result = $member->delete();
|
||||
|
||||
if (!$result) {
|
||||
common_log_db_error($member, 'INSERT', __FILE__);
|
||||
$this->serverError(sprintf(_('Could not remove user %s to group %s'),
|
||||
common_log_db_error($member, 'DELETE', __FILE__);
|
||||
$this->serverError(sprintf(_('Could not remove user %s from group %s'),
|
||||
$cur->nickname, $this->group->nickname));
|
||||
}
|
||||
|
||||
|
@ -164,19 +164,6 @@ class NewnoticeAction extends Action
|
||||
$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 = MediaFile::fromUpload('attach');
|
||||
|
||||
@ -195,12 +182,20 @@ class NewnoticeAction extends Action
|
||||
}
|
||||
}
|
||||
|
||||
$notice = Notice::saveNew($user->id, $content_shortened, 'web',
|
||||
array('reply_to' => ($replyto == 'false') ? null : $replyto,
|
||||
'lat' => $lat,
|
||||
'lon' => $lon,
|
||||
'location_id' => $location_id,
|
||||
'location_ns' => $location_ns));
|
||||
$options = array('reply_to' => ($replyto == 'false') ? null : $replyto);
|
||||
|
||||
if ($user->shareLocation() && $this->arg('notice_data-geo')) {
|
||||
|
||||
$locOptions = Notice::locationOptions($this->trimmed('lat'),
|
||||
$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)) {
|
||||
$upload->attachToNotice($notice);
|
||||
|
@ -133,6 +133,13 @@ class ProfilesettingsAction extends AccountSettingsAction
|
||||
($this->arg('location')) ? $this->arg('location') : $profile->location,
|
||||
_('Where you are, like "City, State (or Region), Country"'));
|
||||
$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));
|
||||
$this->elementStart('li');
|
||||
$this->input('tags', _('Tags'),
|
||||
@ -309,7 +316,12 @@ class ProfilesettingsAction extends AccountSettingsAction
|
||||
|
||||
$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->lon = $loc->lon;
|
||||
$profile->location_id = $loc->location_id;
|
||||
@ -318,6 +330,37 @@ class ProfilesettingsAction extends AccountSettingsAction
|
||||
|
||||
$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('New profile: ' . common_log_objstring($profile), __FILE__);
|
||||
|
||||
|
@ -105,12 +105,8 @@ class PublictagcloudAction extends Action
|
||||
|
||||
#Add the aggregated columns...
|
||||
$tags->selectAdd('max(notice_id) as last_notice_id');
|
||||
if(common_config('db','type')=='pgsql') {
|
||||
$calc='sum(exp(-extract(epoch from (now()-created))/%s)) as weight';
|
||||
} else {
|
||||
$calc='sum(exp(-(now() - created)/%s)) as weight';
|
||||
}
|
||||
$tags->selectAdd(sprintf($calc, common_config('tag', 'dropoff')));
|
||||
$calc = common_sql_weight('created', common_config('tag', 'dropoff'));
|
||||
$tags->selectAdd($calc . ' as weight');
|
||||
$tags->groupBy('tag');
|
||||
$tags->orderBy('weight DESC');
|
||||
|
||||
@ -136,7 +132,12 @@ class PublictagcloudAction extends Action
|
||||
$this->elementStart('dd');
|
||||
$this->elementStart('ul', 'tags xoxo tag-cloud');
|
||||
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('dd');
|
||||
|
@ -103,7 +103,7 @@ class ShownoticeAction extends OwnerDesignAction
|
||||
|
||||
$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);
|
||||
return false;
|
||||
}
|
||||
|
@ -208,7 +208,14 @@ class TwitapisearchatomAction extends ApiAction
|
||||
$this->showFeed();
|
||||
|
||||
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();
|
||||
|
@ -71,8 +71,17 @@ class UnblockAction extends ProfileFormAction
|
||||
|
||||
function handlePost()
|
||||
{
|
||||
$cur = common_current_user();
|
||||
$result = $cur->unblock($this->profile);
|
||||
$cur = common_current_user();
|
||||
|
||||
$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) {
|
||||
$this->serverError(_('Error removing the block.'));
|
||||
return;
|
||||
|
270
actions/version.php
Normal file
270
actions/version.php
Normal 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');
|
||||
}
|
@ -37,7 +37,7 @@ class Avatar extends Memcached_DataObject
|
||||
}
|
||||
}
|
||||
|
||||
function &pkeyGet($kv)
|
||||
function pkeyGet($kv)
|
||||
{
|
||||
return Memcached_DataObject::pkeyGet('Avatar', $kv);
|
||||
}
|
||||
|
@ -59,7 +59,7 @@ class Config extends Memcached_DataObject
|
||||
|
||||
if (!empty($c)) {
|
||||
$settings = $c->get(common_cache_key(self::settingsKey));
|
||||
if (!empty($settings)) {
|
||||
if ($settings !== false) {
|
||||
return $settings;
|
||||
}
|
||||
}
|
||||
@ -120,7 +120,7 @@ class Config extends Memcached_DataObject
|
||||
return $result;
|
||||
}
|
||||
|
||||
function &pkeyGet($kv)
|
||||
function pkeyGet($kv)
|
||||
{
|
||||
return Memcached_DataObject::pkeyGet('Config', $kv);
|
||||
}
|
||||
|
@ -32,7 +32,7 @@ class Fave extends Memcached_DataObject
|
||||
return $fave;
|
||||
}
|
||||
|
||||
function &pkeyGet($kv)
|
||||
function pkeyGet($kv)
|
||||
{
|
||||
return Memcached_DataObject::pkeyGet('Fave', $kv);
|
||||
}
|
||||
|
@ -182,25 +182,32 @@ class File extends Memcached_DataObject
|
||||
|
||||
static function url($filename)
|
||||
{
|
||||
$path = common_config('attachments', 'path');
|
||||
if(common_config('site','private')) {
|
||||
|
||||
if ($path[strlen($path)-1] != '/') {
|
||||
$path .= '/';
|
||||
return common_local_url('getfile',
|
||||
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(){
|
||||
|
@ -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);
|
||||
}
|
||||
|
@ -40,7 +40,7 @@ class Group_block extends Memcached_DataObject
|
||||
/* the code above is auto generated do not remove the tag below */
|
||||
###END_AUTOCODE
|
||||
|
||||
function &pkeyGet($kv)
|
||||
function pkeyGet($kv)
|
||||
{
|
||||
return Memcached_DataObject::pkeyGet('Group_block', $kv);
|
||||
}
|
||||
|
@ -20,7 +20,7 @@ class Group_inbox extends Memcached_DataObject
|
||||
/* the code above is auto generated do not remove the tag below */
|
||||
###END_AUTOCODE
|
||||
|
||||
function &pkeyGet($kv)
|
||||
function pkeyGet($kv)
|
||||
{
|
||||
return Memcached_DataObject::pkeyGet('Group_inbox', $kv);
|
||||
}
|
||||
|
@ -21,7 +21,7 @@ class Group_member extends Memcached_DataObject
|
||||
/* the code above is auto generated do not remove the tag below */
|
||||
###END_AUTOCODE
|
||||
|
||||
function &pkeyGet($kv)
|
||||
function pkeyGet($kv)
|
||||
{
|
||||
return Memcached_DataObject::pkeyGet('Group_member', $kv);
|
||||
}
|
||||
|
@ -19,8 +19,6 @@
|
||||
|
||||
if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
|
||||
|
||||
require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
|
||||
|
||||
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
|
||||
* as backing instead of an in-process cache array.
|
||||
@ -57,31 +90,42 @@ class Memcached_DataObject extends DB_DataObject
|
||||
unset($i);
|
||||
}
|
||||
$i = Memcached_DataObject::getcached($cls, $k, $v);
|
||||
if ($i) {
|
||||
return $i;
|
||||
} else {
|
||||
$i = DB_DataObject::staticGet($cls, $k, $v);
|
||||
if ($i) {
|
||||
// DB_DataObject's in-process lookup cache interferes with GC
|
||||
// to cause massive memory leaks in long-running processes.
|
||||
if (php_sapi_name() == 'cli') {
|
||||
$i->_clear_cache();
|
||||
}
|
||||
|
||||
// Now store it into the shared memcached, if present...
|
||||
$i->encache();
|
||||
if ($i === false) { // false == cache miss
|
||||
$i = DB_DataObject::factory($cls);
|
||||
if (empty($i)) {
|
||||
$i = false;
|
||||
return $i;
|
||||
}
|
||||
$result = $i->get($k, $v);
|
||||
if ($result) {
|
||||
// Hit!
|
||||
$i->encache();
|
||||
} else {
|
||||
// save the fact that no such row exists
|
||||
$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);
|
||||
if ($i) {
|
||||
if ($i !== false) { // false == cache miss
|
||||
return $i;
|
||||
} else {
|
||||
$i = new $cls();
|
||||
$i = DB_DataObject::factory($cls);
|
||||
if (empty($i)) {
|
||||
return false;
|
||||
}
|
||||
foreach ($kv as $k => $v) {
|
||||
$i->$k = $v;
|
||||
}
|
||||
@ -89,6 +133,11 @@ class Memcached_DataObject extends DB_DataObject
|
||||
$i->encache();
|
||||
} else {
|
||||
$i = null;
|
||||
$c = self::memcache();
|
||||
if (!empty($c)) {
|
||||
$ck = self::multicacheKey($cls, $kv);
|
||||
$c->set($ck, null);
|
||||
}
|
||||
}
|
||||
return $i;
|
||||
}
|
||||
@ -97,6 +146,9 @@ class Memcached_DataObject extends DB_DataObject
|
||||
function insert()
|
||||
{
|
||||
$result = parent::insert();
|
||||
if ($result) {
|
||||
$this->encache(); // in case of cached negative lookups
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
@ -123,7 +175,7 @@ class Memcached_DataObject extends DB_DataObject
|
||||
}
|
||||
|
||||
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();
|
||||
common_log(LOG_ERR, __METHOD__ . ' object in param: ' .
|
||||
str_replace("\n", " ", $e->getTraceAsString()));
|
||||
@ -142,6 +194,17 @@ class Memcached_DataObject extends DB_DataObject
|
||||
|
||||
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;
|
||||
if (!isset($_DB_DATAOBJECT['INI'][$this->_database][$this->__table."__keys"])) {
|
||||
$this->databaseStructure();
|
||||
@ -153,67 +216,90 @@ class Memcached_DataObject extends DB_DataObject
|
||||
function encache()
|
||||
{
|
||||
$c = $this->memcache();
|
||||
|
||||
if (!$c) {
|
||||
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->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);
|
||||
}
|
||||
|
||||
$keys = $this->_allCacheKeys();
|
||||
|
||||
foreach ($keys as $key) {
|
||||
$c->set($key, $this);
|
||||
}
|
||||
}
|
||||
|
||||
function decache()
|
||||
{
|
||||
$c = $this->memcache();
|
||||
|
||||
if (!$c) {
|
||||
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)
|
||||
{
|
||||
ksort($kv);
|
||||
$c = Memcached_DataObject::memcache();
|
||||
$c = self::memcache();
|
||||
if (!$c) {
|
||||
return false;
|
||||
} else {
|
||||
$pkeys = implode(',', array_keys($kv));
|
||||
$pvals = implode(',', array_values($kv));
|
||||
return $c->get(Memcached_DataObject::cacheKey($cls, $pkeys, $pvals));
|
||||
return $c->get(self::multicacheKey($cls, $kv));
|
||||
}
|
||||
}
|
||||
|
||||
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)
|
||||
{
|
||||
require_once INSTALLDIR.'/lib/search_engines.php';
|
||||
@ -248,7 +334,8 @@ class Memcached_DataObject extends DB_DataObject
|
||||
$key_part = common_keyize($cls).':'.md5($qry);
|
||||
$ckey = common_cache_key($key_part);
|
||||
$stored = $c->get($ckey);
|
||||
if ($stored) {
|
||||
|
||||
if ($stored !== false) {
|
||||
return new ArrayWrapper($stored);
|
||||
}
|
||||
|
||||
|
@ -63,7 +63,7 @@ class Notice extends Memcached_DataObject
|
||||
public $created; // datetime multiple_key not_null default_0000-00-00%2000%3A00%3A00
|
||||
public $modified; // timestamp not_null default_CURRENT_TIMESTAMP
|
||||
public $reply_to; // int(4)
|
||||
public $is_local; // tinyint(1)
|
||||
public $is_local; // int(4)
|
||||
public $source; // varchar(32)
|
||||
public $conversation; // int(4)
|
||||
public $lat; // decimal(10,7)
|
||||
@ -214,7 +214,7 @@ class Notice extends Memcached_DataObject
|
||||
extract($options);
|
||||
}
|
||||
|
||||
if (empty($is_local)) {
|
||||
if (!isset($is_local)) {
|
||||
$is_local = Notice::LOCAL_PUBLIC;
|
||||
}
|
||||
|
||||
@ -289,21 +289,11 @@ class Notice extends Memcached_DataObject
|
||||
if (!empty($lat) && !empty($lon)) {
|
||||
$notice->lat = $lat;
|
||||
$notice->lon = $lon;
|
||||
}
|
||||
|
||||
if (!empty($location_ns) && !empty($location_id)) {
|
||||
$notice->location_id = $location_id;
|
||||
$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))) {
|
||||
@ -1139,7 +1129,7 @@ class Notice extends Memcached_DataObject
|
||||
$xs->element('id', null, $this->uri);
|
||||
|
||||
$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) {
|
||||
$reply_notice = Notice::staticGet('id', $this->reply_to);
|
||||
@ -1217,7 +1207,7 @@ class Notice extends Memcached_DataObject
|
||||
|
||||
$idstr = $cache->get($idkey);
|
||||
|
||||
if (!empty($idstr)) {
|
||||
if ($idstr !== false) {
|
||||
// Cache hit! Woohoo!
|
||||
$window = explode(',', $idstr);
|
||||
$ids = array_slice($window, $offset, $limit);
|
||||
@ -1226,7 +1216,7 @@ class Notice extends Memcached_DataObject
|
||||
|
||||
$laststr = $cache->get($idkey.';last');
|
||||
|
||||
if (!empty($laststr)) {
|
||||
if ($laststr !== false) {
|
||||
$window = explode(',', $laststr);
|
||||
$last_id = $window[0];
|
||||
$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);
|
||||
|
||||
// FIXME: truncate on long repeats...?
|
||||
|
||||
$content = sprintf(_('RT @%1$s %2$s'),
|
||||
$author->nickname,
|
||||
$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,
|
||||
array('repeat_of' => $this->id));
|
||||
}
|
||||
@ -1386,7 +1385,7 @@ class Notice extends Memcached_DataObject
|
||||
$ids = $this->_repeatStreamDirect($limit);
|
||||
} else {
|
||||
$idstr = $cache->get(common_cache_key('notice:repeats:'.$this->id));
|
||||
if (!empty($idstr)) {
|
||||
if ($idstr !== false) {
|
||||
$ids = explode(',', $idstr);
|
||||
} else {
|
||||
$ids = $this->_repeatStreamDirect(100);
|
||||
@ -1429,4 +1428,47 @@ class Notice extends Memcached_DataObject
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
|
@ -101,11 +101,18 @@ class Notice_inbox extends Memcached_DataObject
|
||||
return $ids;
|
||||
}
|
||||
|
||||
function &pkeyGet($kv)
|
||||
function pkeyGet($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)
|
||||
{
|
||||
$entry = new Notice_inbox();
|
||||
@ -133,6 +140,8 @@ class Notice_inbox extends Memcached_DataObject
|
||||
$notices = array();
|
||||
}
|
||||
}
|
||||
|
||||
return $total;
|
||||
}
|
||||
|
||||
static function deleteMatching($user_id, $notices)
|
||||
|
@ -96,7 +96,7 @@ class Notice_tag extends Memcached_DataObject
|
||||
}
|
||||
}
|
||||
|
||||
function &pkeyGet($kv)
|
||||
function pkeyGet($kv)
|
||||
{
|
||||
return Memcached_DataObject::pkeyGet('Notice_tag', $kv);
|
||||
}
|
||||
|
@ -504,6 +504,7 @@ class Profile extends Memcached_DataObject
|
||||
'Reply',
|
||||
'Group_member',
|
||||
);
|
||||
Event::handle('ProfileDeleteRelated', array($this, &$related));
|
||||
|
||||
foreach ($related as $cls) {
|
||||
$inst = new $cls();
|
||||
|
@ -43,7 +43,7 @@ class Profile_role extends Memcached_DataObject
|
||||
/* the code above is auto generated do not remove the tag below */
|
||||
###END_AUTOCODE
|
||||
|
||||
function &pkeyGet($kv)
|
||||
function pkeyGet($kv)
|
||||
{
|
||||
return Memcached_DataObject::pkeyGet('Profile_role', $kv);
|
||||
}
|
||||
|
@ -55,7 +55,7 @@ class Queue_item extends Memcached_DataObject
|
||||
return null;
|
||||
}
|
||||
|
||||
function &pkeyGet($kv)
|
||||
function pkeyGet($kv)
|
||||
{
|
||||
return Memcached_DataObject::pkeyGet('Queue_item', $kv);
|
||||
}
|
||||
|
@ -46,7 +46,7 @@ class Subscription extends Memcached_DataObject
|
||||
/* the code above is auto generated do not remove the tag below */
|
||||
###END_AUTOCODE
|
||||
|
||||
function &pkeyGet($kv)
|
||||
function pkeyGet($kv)
|
||||
{
|
||||
return Memcached_DataObject::pkeyGet('Subscription', $kv);
|
||||
}
|
||||
|
@ -625,7 +625,11 @@ class User extends Memcached_DataObject
|
||||
|
||||
// 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');
|
||||
|
||||
@ -992,4 +996,28 @@ class User extends Memcached_DataObject
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
53
classes/User_location_prefs.php
Normal file
53
classes/User_location_prefs.php
Normal 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);
|
||||
}
|
||||
}
|
@ -1,4 +1,3 @@
|
||||
|
||||
[avatar]
|
||||
profile_id = 129
|
||||
original = 17
|
||||
@ -93,6 +92,7 @@ modified = 384
|
||||
|
||||
[file__keys]
|
||||
id = N
|
||||
url = U
|
||||
|
||||
[file_oembed]
|
||||
file_id = 129
|
||||
@ -564,4 +564,14 @@ modified = 384
|
||||
|
||||
[user_openid__keys]
|
||||
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
|
||||
|
||||
|
@ -41,6 +41,20 @@ $config['site']['path'] = 'statusnet';
|
||||
// Make the site invisible to non-logged-in users
|
||||
// $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
|
||||
// $config['site']['logfile'] = '/tmp/statusnet.log';
|
||||
|
||||
@ -265,6 +279,7 @@ $config['sphinx']['port'] = 3312;
|
||||
// $config['attachments']['user_quota'] = 50000000;
|
||||
// $config['attachments']['monthly_quota'] = 15000000;
|
||||
// $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/';
|
||||
|
@ -84,3 +84,13 @@ create table login_token (
|
||||
|
||||
constraint primary key (user_id)
|
||||
) 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;
|
||||
|
||||
|
@ -587,3 +587,12 @@ create table login_token (
|
||||
constraint primary key (user_id)
|
||||
) 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
458
extlib/lgpl-2.1.txt
Normal 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
|
@ -5,14 +5,6 @@
|
||||
|
||||
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} !-d
|
||||
RewriteRule (.*) index.php?p=$1 [L,QSA]
|
||||
|
@ -454,7 +454,6 @@ function showForm()
|
||||
<dd>
|
||||
<div class="instructions">
|
||||
<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>
|
||||
</dd>
|
||||
</dl>
|
||||
|
123
js/geometa.js
123
js/geometa.js
@ -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(){
|
||||
|
||||
// -- BEGIN GEARS_INIT
|
||||
@ -96,122 +96,9 @@ var GearsGeoLocation = (function() {
|
||||
};
|
||||
});
|
||||
|
||||
var AjaxGeoLocation = (function() {
|
||||
// -- PRIVATE
|
||||
var loading = false;
|
||||
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();
|
||||
// If you have Gears installed use that
|
||||
if (window.google && google.gears) {
|
||||
navigator.geolocation = GearsGeoLocation();
|
||||
}
|
||||
|
||||
})();
|
||||
|
96
js/jquery.cookie.js
Normal file
96
js/jquery.cookie.js
Normal 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
4
js/json2.js
Normal 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');};}}());
|
262
js/util.js
262
js/util.js
@ -50,7 +50,11 @@ var SN = { // StatusNet
|
||||
NoticeLat: 'notice_data-lat',
|
||||
NoticeLon: 'notice_data-lon',
|
||||
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) {
|
||||
var NDG, NLat, NLon, NLNS, NLID;
|
||||
form_id = form.attr('id');
|
||||
form.append('<input type="hidden" name="ajax" value="1"/>');
|
||||
form.ajaxForm({
|
||||
dataType: 'xml',
|
||||
timeout: '60000',
|
||||
beforeSend: function(xhr) {
|
||||
beforeSend: function(formData) {
|
||||
if ($('#'+form_id+' #'+SN.C.S.NoticeDataText)[0].value.length === 0) {
|
||||
form.addClass(SN.C.S.Warning);
|
||||
return false;
|
||||
@ -187,6 +192,29 @@ var SN = { // StatusNet
|
||||
form.addClass(SN.C.S.Processing);
|
||||
$('#'+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);
|
||||
|
||||
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;
|
||||
},
|
||||
error: function (xhr, textStatus, errorThrown) {
|
||||
@ -269,6 +297,12 @@ var SN = { // StatusNet
|
||||
form.removeClass(SN.C.S.Processing);
|
||||
$('#'+form_id+' #'+SN.C.S.NoticeActionSubmit).removeAttr(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).remove();
|
||||
NDA.val('');
|
||||
|
||||
return false;
|
||||
});
|
||||
});
|
||||
},
|
||||
|
||||
NoticeLocationAttach: function() {
|
||||
if(navigator.geolocation) navigator.geolocation.watchPosition(function(position) {
|
||||
$('#'+SN.C.S.NoticeLat).val(position.coords.latitude);
|
||||
$('#'+SN.C.S.NoticeLon).val(position.coords.longitude);
|
||||
});
|
||||
var NLat = $('#'+SN.C.S.NoticeLat).val();
|
||||
var NLon = $('#'+SN.C.S.NoticeLon).val();
|
||||
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+'">_</button> <button class="close" title="'+NoticeDataGeoShareDisable_text+'">×</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() {
|
||||
@ -474,13 +721,14 @@ var SN = { // StatusNet
|
||||
Init: {
|
||||
NoticeForm: function() {
|
||||
if ($('body.user_in').length > 0) {
|
||||
SN.U.NoticeLocationAttach();
|
||||
|
||||
$('.'+SN.C.S.FormNotice).each(function() {
|
||||
SN.U.FormNoticeXHR($(this));
|
||||
SN.U.FormNoticeEnhancements($(this));
|
||||
});
|
||||
|
||||
SN.U.NoticeDataAttach();
|
||||
SN.U.NoticeLocationAttach();
|
||||
}
|
||||
},
|
||||
|
||||
|
@ -252,6 +252,8 @@ class Action extends HTMLOutputter // lawsuit
|
||||
if (Event::handle('StartShowJQueryScripts', array($this))) {
|
||||
$this->script('js/jquery.min.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');
|
||||
Event::handle('EndShowJQueryScripts', array($this));
|
||||
}
|
||||
@ -735,6 +737,8 @@ class Action extends HTMLOutputter // lawsuit
|
||||
_('Privacy'));
|
||||
$this->menuItem(common_local_url('doc', array('title' => 'source')),
|
||||
_('Source'));
|
||||
$this->menuItem(common_local_url('version'),
|
||||
_('Version'));
|
||||
$this->menuItem(common_local_url('doc', array('title' => 'contact')),
|
||||
_('Contact'));
|
||||
$this->menuItem(common_local_url('doc', array('title' => 'badge')),
|
||||
|
@ -70,7 +70,7 @@ class AdminPanelAction extends Action
|
||||
|
||||
if (!common_logged_in()) {
|
||||
$this->clientError(_('Not logged in.'));
|
||||
return;
|
||||
return false;
|
||||
}
|
||||
|
||||
$user = common_current_user();
|
||||
@ -94,7 +94,18 @@ class AdminPanelAction extends Action
|
||||
|
||||
if (!$user->hasRight(Right::CONFIGURESITE)) {
|
||||
$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;
|
||||
@ -224,7 +235,7 @@ class AdminPanelAction extends Action
|
||||
$this->clientError(_('saveSettings() not implemented.'));
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Delete a design setting
|
||||
*
|
||||
@ -296,20 +307,33 @@ class AdminPanelNav extends Widget
|
||||
|
||||
if (Event::handle('StartAdminPanelNav', array($this))) {
|
||||
|
||||
$this->out->menuItem(common_local_url('siteadminpanel'), _('Site'),
|
||||
_('Basic site configuration'), $action_name == 'siteadminpanel', 'nav_site_admin_panel');
|
||||
if ($this->canAdmin('site')) {
|
||||
$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'),
|
||||
_('Design configuration'), $action_name == 'designadminpanel', 'nav_design_admin_panel');
|
||||
if ($this->canAdmin('design')) {
|
||||
$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'),
|
||||
_('Paths configuration'), $action_name == 'useradminpanel', 'nav_design_admin_panel');
|
||||
if ($this->canAdmin('user')) {
|
||||
$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'),
|
||||
_('Paths configuration'), $action_name == 'pathsadminpanel', 'nav_design_admin_panel');
|
||||
if ($this->canAdmin('paths')) {
|
||||
$this->out->menuItem(common_local_url('pathsadminpanel'), _('Paths'),
|
||||
_('Paths configuration'), $action_name == 'pathsadminpanel', 'nav_design_admin_panel');
|
||||
}
|
||||
|
||||
Event::handle('EndAdminPanelNav', array($this));
|
||||
}
|
||||
$this->action->elementEnd('ul');
|
||||
}
|
||||
|
||||
function canAdmin($name)
|
||||
{
|
||||
return in_array($name, common_config('admin', 'panels'));
|
||||
}
|
||||
}
|
||||
|
@ -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){
|
||||
//map the nickname to a username
|
||||
$user_username = new User_username();
|
||||
@ -127,13 +144,13 @@ abstract class AuthenticationPlugin extends Plugin
|
||||
}
|
||||
}
|
||||
}else{
|
||||
if($this->autoregistration){
|
||||
$authenticated = $this->checkPassword($nickname, $password);
|
||||
if($authenticated){
|
||||
$user = $this->autoregister($nickname);
|
||||
if($user){
|
||||
$authenticatedUser = $user;
|
||||
User_username::register($authenticatedUser,$nickname,$this->provider_name);
|
||||
$authenticated = $this->checkPassword($nickname, $password);
|
||||
if($authenticated){
|
||||
if(! Event::handle('AutoRegister', array($nickname, $this->provider_name, &$authenticatedUser))){
|
||||
//unlike most Event::handle lines of code, this one has a ! (not)
|
||||
//we want to do this if the event *was* handled - this isn't a "default" implementation
|
||||
//like most code of this form.
|
||||
if($authenticatedUser){
|
||||
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() {
|
||||
$schema = Schema::get();
|
||||
$schema->ensureTable('user_username',
|
@ -66,9 +66,6 @@ abstract class AuthorizationPlugin extends Plugin
|
||||
}
|
||||
|
||||
//------------Below are the methods that connect StatusNet to the implementing Auth plugin------------\\
|
||||
function onInitializePlugin(){
|
||||
|
||||
}
|
||||
|
||||
function onStartSetUser(&$user) {
|
||||
$loginAllowed = $this->loginAllowed($user);
|
182
lib/cache.php
Normal file
182
lib/cache.php
Normal 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;
|
||||
}
|
||||
}
|
@ -74,6 +74,7 @@ class ColumnDef
|
||||
* @param string $key type of key
|
||||
* @param value $default default value
|
||||
* @param value $extra unused
|
||||
* @param boolean $auto_increment
|
||||
*/
|
||||
|
||||
function __construct($name=null, $type=null, $size=null,
|
||||
|
@ -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';
|
||||
}
|
||||
|
||||
// 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)
|
||||
{
|
||||
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: note that these files should not use config options
|
||||
// at compile time since DB config options are not yet loaded.
|
||||
|
@ -54,6 +54,7 @@ $default =
|
||||
'dupelimit' => 60, # default for same person saying the same thing
|
||||
'textlimit' => 140,
|
||||
'indent' => true,
|
||||
'use_x_sendfile' => false,
|
||||
),
|
||||
'db' =>
|
||||
array('database' => 'YOU HAVE TO SET THIS IN config.php',
|
||||
@ -147,11 +148,8 @@ $default =
|
||||
array('enabled' => true,
|
||||
'consumer_key' => null,
|
||||
'consumer_secret' => null),
|
||||
'memcached' =>
|
||||
array('enabled' => false,
|
||||
'server' => 'localhost',
|
||||
'base' => null,
|
||||
'port' => 11211),
|
||||
'cache' =>
|
||||
array('base' => null),
|
||||
'ping' =>
|
||||
array('notify' => array()),
|
||||
'inboxes' =>
|
||||
@ -226,9 +224,29 @@ $default =
|
||||
'message' =>
|
||||
array('contentlimit' => null),
|
||||
'location' =>
|
||||
array('namespace' => 1), // 1 = geonames, 2 = Yahoo Where on Earth
|
||||
array('share' => 'user', // whether to share location; 'always', 'user', 'never'
|
||||
'sharedefault' => true),
|
||||
'omb' =>
|
||||
array('timeout' => 5), // HTTP request timeout in seconds when contacting remote hosts for OMB updates
|
||||
'logincommand' =>
|
||||
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')),
|
||||
);
|
||||
|
@ -58,11 +58,7 @@ class GroupTagCloudSection extends TagCloudSection
|
||||
|
||||
function getTags()
|
||||
{
|
||||
if (common_config('db', 'type') == 'pgsql') {
|
||||
$weightexpr='sum(exp(-extract(epoch from (now() - notice_tag.created)) / %s))';
|
||||
} else {
|
||||
$weightexpr='sum(exp(-(now() - notice_tag.created) / %s))';
|
||||
}
|
||||
$weightexpr = common_sql_weight('notice_tag.created', common_config('tag', 'dropoff'));
|
||||
|
||||
$names = $this->group->getAliases();
|
||||
|
||||
@ -99,7 +95,6 @@ class GroupTagCloudSection extends TagCloudSection
|
||||
|
||||
$tag = Memcached_DataObject::cachedQuery('Notice_tag',
|
||||
sprintf($qry,
|
||||
common_config('tag', 'dropoff'),
|
||||
$this->group->id,
|
||||
$namestring),
|
||||
3600);
|
||||
|
@ -352,7 +352,7 @@ class HTMLOutputter extends XMLOutputter
|
||||
{
|
||||
if(Event::handle('StartScriptElement', array($this,&$src,&$type))) {
|
||||
$url = parse_url($src);
|
||||
if( empty($url->scheme) && empty($url->host) && empty($url->query) && empty($url->fragment))
|
||||
if( empty($url['scheme']) && empty($url['host']) && empty($url['query']) && empty($url['fragment']))
|
||||
{
|
||||
$src = common_path($src) . '?version=' . STATUSNET_VERSION;
|
||||
}
|
||||
|
@ -440,7 +440,7 @@ function jabber_public_notice($notice)
|
||||
// XXX: should we send out non-local messages if public,localonly
|
||||
// = false? I think not
|
||||
|
||||
if ($public && $notice->is_local) {
|
||||
if ($public && $notice->is_local == Notice::LOCAL_PUBLIC) {
|
||||
$profile = Profile::staticGet($notice->profile_id);
|
||||
|
||||
if (!$profile) {
|
||||
|
@ -105,8 +105,14 @@ class JSONSearchResultsList
|
||||
break;
|
||||
}
|
||||
|
||||
$item = new ResultItem($this->notice);
|
||||
array_push($this->results, $item);
|
||||
$profile = $this->notice->getProfile();
|
||||
|
||||
// Don't show notices from deleted users
|
||||
|
||||
if (!empty($profile)) {
|
||||
$item = new ResultItem($this->notice);
|
||||
array_push($this->results, $item);
|
||||
}
|
||||
}
|
||||
|
||||
$time_end = microtime(true);
|
||||
|
275
lib/mailhandler.php
Normal file
275
lib/mailhandler.php
Normal 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);
|
||||
}
|
||||
}
|
@ -110,6 +110,8 @@ class NoticeForm extends Form
|
||||
$this->user = common_current_user();
|
||||
}
|
||||
|
||||
$this->profile = $this->user->getProfile();
|
||||
|
||||
if (common_config('attachments', 'uploads')) {
|
||||
$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_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));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -191,6 +191,14 @@ class NoticeListItem extends Widget
|
||||
|
||||
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();
|
||||
if (Event::handle('StartShowNoticeItem', array($this))) {
|
||||
$this->showNotice();
|
||||
@ -371,7 +379,7 @@ class NoticeListItem extends Widget
|
||||
|
||||
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',
|
||||
array('notice' => $this->notice->id));
|
||||
}else{
|
||||
|
@ -58,13 +58,9 @@ class PersonalTagCloudSection extends TagCloudSection
|
||||
|
||||
function getTags()
|
||||
{
|
||||
if (common_config('db', 'type') == 'pgsql') {
|
||||
$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, '.
|
||||
$weightexpr = common_sql_weight('notice_tag.created', common_config('tag', 'dropoff'));
|
||||
|
||||
$qry = 'SELECT notice_tag.tag, '.
|
||||
$weightexpr . ' as weight ' .
|
||||
'FROM notice_tag JOIN notice ' .
|
||||
'ON notice_tag.notice_id = notice.id ' .
|
||||
@ -83,7 +79,6 @@ class PersonalTagCloudSection extends TagCloudSection
|
||||
|
||||
$tag = Memcached_DataObject::cachedQuery('Notice_tag',
|
||||
sprintf($qry,
|
||||
common_config('tag', 'dropoff'),
|
||||
$this->user->id),
|
||||
3600);
|
||||
return $tag;
|
||||
|
@ -21,7 +21,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
|
||||
|
||||
function ping_broadcast_notice($notice) {
|
||||
|
||||
if (!$notice->is_local) {
|
||||
if ($notice->is_local != Notice::LOCAL_PUBLIC && $notice->is_local != Notice::LOCAL_NONPUBLIC) {
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -115,4 +115,4 @@ function ping_notice_tags($notice) {
|
||||
return implode('|', $tags);
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
@ -104,5 +104,16 @@ class Plugin
|
||||
{
|
||||
$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;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -48,17 +48,17 @@ class PopularNoticeSection extends NoticeSection
|
||||
{
|
||||
function getNotices()
|
||||
{
|
||||
// @fixme there should be a common func for this
|
||||
if (common_config('db', 'type') == 'pgsql') {
|
||||
$weightexpr='sum(exp(-extract(epoch from (now() - fave.modified)) / %s))';
|
||||
if (!empty($this->out->tag)) {
|
||||
$tag = pg_escape_string($this->out->tag);
|
||||
}
|
||||
} else {
|
||||
$weightexpr='sum(exp(-(now() - fave.modified) / %s))';
|
||||
if (!empty($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 ";
|
||||
if(isset($tag)) {
|
||||
$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;
|
||||
|
||||
$notice = Memcached_DataObject::cachedQuery('Notice',
|
||||
sprintf($qry, common_config('popular', 'dropoff')),
|
||||
$qry,
|
||||
1200);
|
||||
return $notice;
|
||||
}
|
||||
|
@ -100,7 +100,10 @@ class Router
|
||||
'sandbox', 'unsandbox',
|
||||
'silence', 'unsilence',
|
||||
'repeat',
|
||||
'deleteuser');
|
||||
'deleteuser',
|
||||
'geocode',
|
||||
'version',
|
||||
);
|
||||
|
||||
foreach ($main as $a) {
|
||||
$m->connect('main/'.$a, array('action' => $a));
|
||||
|
@ -523,6 +523,14 @@ class Schema
|
||||
} else {
|
||||
$sql .= ($cd->nullable) ? "null " : "not null ";
|
||||
}
|
||||
|
||||
if (!empty($cd->auto_increment)) {
|
||||
$sql .= " auto_increment ";
|
||||
}
|
||||
|
||||
if (!empty($cd->extra)) {
|
||||
$sql .= "{$cd->extra} ";
|
||||
}
|
||||
|
||||
return $sql;
|
||||
}
|
||||
|
52
lib/util.php
52
lib/util.php
@ -62,7 +62,7 @@ function common_init_language()
|
||||
// gettext will still select the right language.
|
||||
$language = common_language();
|
||||
$locale_set = common_init_locale($language);
|
||||
|
||||
|
||||
setlocale(LC_CTYPE, 'C');
|
||||
// So we do not have to make people install the gettext locales
|
||||
$path = common_config('site','locale_path');
|
||||
@ -908,6 +908,26 @@ function common_sql_date($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)
|
||||
{
|
||||
static $status = array(301 => "Moved Permanently",
|
||||
@ -1384,41 +1404,17 @@ function common_session_token()
|
||||
|
||||
function common_cache_key($extra)
|
||||
{
|
||||
$base_key = common_config('memcached', 'base');
|
||||
|
||||
if (empty($base_key)) {
|
||||
$base_key = common_keyize(common_config('site', 'name'));
|
||||
}
|
||||
|
||||
return 'statusnet:' . $base_key . ':' . $extra;
|
||||
return Cache::key($extra);
|
||||
}
|
||||
|
||||
function common_keyize($str)
|
||||
{
|
||||
$str = strtolower($str);
|
||||
$str = preg_replace('/\s/', '_', $str);
|
||||
return $str;
|
||||
return Cache::keyize($str);
|
||||
}
|
||||
|
||||
function common_memcache()
|
||||
{
|
||||
static $cache = null;
|
||||
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;
|
||||
}
|
||||
return Cache::instance();
|
||||
}
|
||||
|
||||
function common_license_terms($uri)
|
||||
|
@ -9,12 +9,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:42:09+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:10:28+0000\n"
|
||||
"Language-Team: Arabic\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: ar\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -121,9 +121,8 @@ msgstr ""
|
||||
#: actions/apiaccountupdateprofile.php:97
|
||||
#: actions/apiaccountupdateprofilebackgroundimage.php:94
|
||||
#: actions/apiaccountupdateprofilecolors.php:118
|
||||
#, fuzzy
|
||||
msgid "API method not found."
|
||||
msgstr "لم يوجد رمز التأكيد."
|
||||
msgstr "لم يتم العثور على وسيلة API."
|
||||
|
||||
#: actions/apiaccountupdatedeliverydevice.php:85
|
||||
#: actions/apiaccountupdateprofile.php:89
|
||||
@ -159,9 +158,8 @@ msgid "User has no profile."
|
||||
msgstr "ليس للمستخدم ملف شخصي."
|
||||
|
||||
#: actions/apiaccountupdateprofile.php:147
|
||||
#, fuzzy
|
||||
msgid "Could not save profile."
|
||||
msgstr "تعذّر حفظ الملف الشخصي."
|
||||
msgstr "لم يمكن حفظ الملف."
|
||||
|
||||
#: actions/apiaccountupdateprofilebackgroundimage.php:108
|
||||
#: actions/apiaccountupdateprofileimage.php:97
|
||||
@ -190,11 +188,11 @@ msgstr "تعذّر تحديث تصميمك."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "لا يمكنك منع نفسك!"
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "فشل منع المستخدم."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr "فشل إلغاء منع المستخدم."
|
||||
|
||||
@ -306,31 +304,31 @@ msgid "Could not find target user."
|
||||
msgstr "تعذّر إيجاد المستخدم الهدف."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "ليس اسمًا مستعارًا صحيحًا."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "الصفحة الرئيسية ليست عنونًا صالحًا."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)"
|
||||
@ -341,7 +339,7 @@ msgid "Description is too long (max %d chars)."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
msgstr ""
|
||||
@ -456,7 +454,7 @@ msgstr ""
|
||||
msgid "Not found"
|
||||
msgstr "لم يوجد"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -585,7 +583,7 @@ msgid "Preview"
|
||||
msgstr "عاين"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "احذف"
|
||||
|
||||
@ -598,13 +596,13 @@ msgid "Crop"
|
||||
msgstr ""
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -674,7 +672,7 @@ msgstr "نعم"
|
||||
msgid "Block this user"
|
||||
msgstr "امنع هذا المستخدم"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
msgstr "فشل حفظ معلومات المنع."
|
||||
|
||||
@ -746,7 +744,7 @@ msgstr ""
|
||||
#: actions/confirmaddress.php:114 actions/emailsettings.php:296
|
||||
#: actions/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
msgstr "تعذّر تحديث المستخدم."
|
||||
@ -806,7 +804,7 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟"
|
||||
msgid "Do not delete this notice"
|
||||
msgstr "لا تحذف هذا الإشعار"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:603
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:611
|
||||
msgid "Delete this notice"
|
||||
msgstr "احذف هذا الإشعار"
|
||||
|
||||
@ -940,7 +938,7 @@ msgstr "ارجع إلى المبدئي"
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: actions/useradminpanel.php:313 lib/designsettings.php:256
|
||||
@ -1422,7 +1420,7 @@ msgstr ""
|
||||
msgid "A list of the users in this group."
|
||||
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"
|
||||
msgstr "إداري"
|
||||
|
||||
@ -1509,7 +1507,7 @@ msgstr ""
|
||||
msgid "User is not blocked from group."
|
||||
msgstr "المستخدم ليس ممنوعًا من المجموعة."
|
||||
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:77
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:86
|
||||
msgid "Error removing the block."
|
||||
msgstr "خطأ أثناء منع الحجب."
|
||||
|
||||
@ -1678,7 +1676,7 @@ msgstr "رسالة شخصية"
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
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"
|
||||
msgstr "أرسل"
|
||||
|
||||
@ -1774,7 +1772,7 @@ msgstr "اسم المستخدم أو كلمة السر غير صحيحان."
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "لُج"
|
||||
@ -1881,7 +1879,7 @@ msgstr "أُرسلت الرسالة"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "خطأ أجاكس"
|
||||
|
||||
@ -1889,7 +1887,7 @@ msgstr "خطأ أجاكس"
|
||||
msgid "New notice"
|
||||
msgstr "إشعار جديد"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "أُرسل الإشعار"
|
||||
|
||||
@ -2306,69 +2304,77 @@ msgstr "الموقع"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "الوسوم"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "اللغة"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "اللغة المفضلة"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "المنطقة الزمنية"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "ما المنطقة الزمنية التي تتواجد فيها عادة؟"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:221 actions/register.php:223
|
||||
#: actions/profilesettings.php:228 actions/register.php:223
|
||||
#, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164
|
||||
#: actions/profilesettings.php:235 actions/siteadminpanel.php:164
|
||||
msgid "Timezone not selected."
|
||||
msgstr "لم تُختر المنطقة الزمنية."
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:246 actions/tagother.php:178
|
||||
#: actions/profilesettings.php:253 actions/tagother.php:178
|
||||
#, php-format
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "وسم غير صالح: \"%s\""
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "تعذّر حفظ الملف الشخصي."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
msgstr "تعذّر حفظ الوسوم."
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr "حُفظت الإعدادات."
|
||||
|
||||
@ -2467,7 +2473,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr "سحابة الوسوم"
|
||||
|
||||
@ -2603,7 +2609,7 @@ msgstr "عذرا، رمز دعوة غير صالح."
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "سجّل"
|
||||
@ -2767,7 +2773,7 @@ msgstr "لا يمكنك تكرار ملاحظتك الشخصية."
|
||||
msgid "You already repeated that notice."
|
||||
msgstr "أنت كررت هذه الملاحظة بالفعل."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
msgid "Repeated"
|
||||
msgstr "مكرر"
|
||||
|
||||
@ -3509,7 +3515,7 @@ msgstr "صورة"
|
||||
|
||||
#: actions/tagother.php:141
|
||||
msgid "Tag user"
|
||||
msgstr ""
|
||||
msgstr "اوسم المستخدم"
|
||||
|
||||
#: actions/tagother.php:151
|
||||
msgid ""
|
||||
@ -3841,16 +3847,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:319 classes/Notice.php:344
|
||||
#: classes/Notice.php:309 classes/Notice.php:334
|
||||
msgid "Problem saving notice."
|
||||
msgstr "مشكلة أثناء حفظ الإشعار."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "آر تي @%1$s %2$s"
|
||||
@ -3905,128 +3911,128 @@ msgstr "%s - %s"
|
||||
msgid "Untitled page"
|
||||
msgstr "صفحة غير مُعنونة"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "الرئيسية"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr "الملف الشخصي ومسار الأصدقاء الزمني"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "الحساب"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "اتصل"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect to services"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
msgid "Change site configuration"
|
||||
msgstr "غيّر ضبط الموقع"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "ادعُ"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "اخرج"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr "اخرج من الموقع"
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "أنشئ حسابًا"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr "لُج إلى الموقع"
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "مساعدة"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "ساعدني!"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "ابحث"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "ابحث عن أشخاص أو نص"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr "إشعار الموقع"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr "المشاهدات المحلية"
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr "إشعار الصفحة"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "عن"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "الأسئلة المكررة"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr "الشروط"
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "خصوصية"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "المصدر"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "اتصل"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%site.name%%** is a microblogging service brought to you by [%%site."
|
||||
@ -4035,12 +4041,12 @@ msgstr ""
|
||||
"**%%site.name%%** خدمة تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site."
|
||||
"broughtbyurl%%). "
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
|
||||
@ -4051,31 +4057,31 @@ msgstr ""
|
||||
"المتوفر تحت [رخصة غنو أفيرو العمومية](http://www.fsf.org/licensing/licenses/"
|
||||
"agpl-3.0.html)."
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
msgid "Site content license"
|
||||
msgstr "رخصة محتوى الموقع"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr "الرخصة."
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr "بعد"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr "قبل"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
@ -4127,6 +4133,16 @@ msgstr ""
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "نتائج الأمر"
|
||||
@ -4221,7 +4237,7 @@ msgstr ""
|
||||
|
||||
#: lib/command.php:427
|
||||
msgid "Already repeated that notice"
|
||||
msgstr "كرر بالفعل هذه الإشعار"
|
||||
msgstr "كرر بالفعل هذا الإشعار"
|
||||
|
||||
#: lib/command.php:435
|
||||
#, php-format
|
||||
@ -4589,11 +4605,11 @@ msgstr "نوع ملف غير معروف"
|
||||
|
||||
#: lib/imagefile.php:217
|
||||
msgid "MB"
|
||||
msgstr ""
|
||||
msgstr "ميجابايت"
|
||||
|
||||
#: lib/imagefile.php:219
|
||||
msgid "kB"
|
||||
msgstr ""
|
||||
msgstr "كيلوبايت"
|
||||
|
||||
#: lib/jabber.php:191
|
||||
#, php-format
|
||||
@ -4802,7 +4818,7 @@ msgid ""
|
||||
"users in conversation. People can send you messages for your eyes only."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
msgid "from"
|
||||
msgstr "من"
|
||||
|
||||
@ -4866,69 +4882,73 @@ msgstr "أرسل إشعارًا مباشرًا"
|
||||
msgid "To"
|
||||
msgstr "إلى"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr "المحارف المتوفرة"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr "أرسل إشعارًا"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "ما الأخبار يا %s؟"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr "أرفق"
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr "أرفق ملفًا"
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "N"
|
||||
msgstr "ش"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr "ج"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr "ر"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr "غ"
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr "في"
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr "في السياق"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
msgid "Repeated by"
|
||||
msgstr "مكرر بواسطة"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "رُد على هذا الإشعار"
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "رُد"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
msgid "Notice repeated"
|
||||
msgstr "الإشعار مكرر"
|
||||
|
||||
@ -5058,9 +5078,8 @@ msgid "Popular"
|
||||
msgstr "مشهورة"
|
||||
|
||||
#: lib/repeatform.php:107
|
||||
#, fuzzy
|
||||
msgid "Repeat this notice?"
|
||||
msgstr "كرر هذا الإشعار"
|
||||
msgstr "كرر هذا الإشعار؟"
|
||||
|
||||
#: lib/repeatform.php:132
|
||||
msgid "Repeat this notice"
|
||||
@ -5150,9 +5169,8 @@ msgid "Could not subscribe other to you."
|
||||
msgstr ""
|
||||
|
||||
#: lib/subs.php:128
|
||||
#, fuzzy
|
||||
msgid "Not subscribed!"
|
||||
msgstr "لست مُشتركًا!"
|
||||
msgstr "غير مشترك!"
|
||||
|
||||
#: lib/subs.php:133
|
||||
msgid "Couldn't delete self-subscription."
|
||||
|
@ -8,12 +8,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:42:12+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:10:34+0000\n"
|
||||
"Language-Team: Egyptian Spoken Arabic\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: arz\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -120,9 +120,8 @@ msgstr ""
|
||||
#: actions/apiaccountupdateprofile.php:97
|
||||
#: actions/apiaccountupdateprofilebackgroundimage.php:94
|
||||
#: actions/apiaccountupdateprofilecolors.php:118
|
||||
#, fuzzy
|
||||
msgid "API method not found."
|
||||
msgstr "لم يوجد رمز التأكيد."
|
||||
msgstr "لم يتم العثور على وسيله API."
|
||||
|
||||
#: actions/apiaccountupdatedeliverydevice.php:85
|
||||
#: actions/apiaccountupdateprofile.php:89
|
||||
@ -158,9 +157,8 @@ msgid "User has no profile."
|
||||
msgstr "ليس للمستخدم ملف شخصى."
|
||||
|
||||
#: actions/apiaccountupdateprofile.php:147
|
||||
#, fuzzy
|
||||
msgid "Could not save profile."
|
||||
msgstr "تعذّر حفظ الملف الشخصى."
|
||||
msgstr "لم يمكن حفظ الملف."
|
||||
|
||||
#: actions/apiaccountupdateprofilebackgroundimage.php:108
|
||||
#: actions/apiaccountupdateprofileimage.php:97
|
||||
@ -186,15 +184,14 @@ msgid "Could not update your design."
|
||||
msgstr "تعذّر تحديث تصميمك."
|
||||
|
||||
#: actions/apiblockcreate.php:105
|
||||
#, fuzzy
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "لا يمكنك حذف المستخدمين."
|
||||
msgstr "لا يمكنك منع نفسك!"
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "فشل منع المستخدم."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr "فشل إلغاء منع المستخدم."
|
||||
|
||||
@ -306,31 +303,31 @@ msgid "Could not find target user."
|
||||
msgstr "تعذّر إيجاد المستخدم الهدف."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "ليس اسمًا مستعارًا صحيحًا."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "الصفحه الرئيسيه ليست عنونًا صالحًا."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "الاسم الكامل طويل جدا (الأقصى 255 حرفًا)"
|
||||
@ -341,7 +338,7 @@ msgid "Description is too long (max %d chars)."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
msgstr ""
|
||||
@ -431,14 +428,12 @@ msgid "No such notice."
|
||||
msgstr "لا إشعار كهذا."
|
||||
|
||||
#: actions/apistatusesretweet.php:83
|
||||
#, fuzzy
|
||||
msgid "Cannot repeat your own notice."
|
||||
msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع."
|
||||
msgstr "لا يمكنك تكرار ملحوظتك الخاصه."
|
||||
|
||||
#: actions/apistatusesretweet.php:91
|
||||
#, fuzzy
|
||||
msgid "Already repeated that notice."
|
||||
msgstr "احذف هذا الإشعار"
|
||||
msgstr "كرر بالفعل هذه الملاحظه."
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
msgid "Status deleted."
|
||||
@ -458,7 +453,7 @@ msgstr ""
|
||||
msgid "Not found"
|
||||
msgstr "لم يوجد"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -515,14 +510,14 @@ msgid "Repeated by %s"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apitimelineretweetedtome.php:111
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Repeated to %s"
|
||||
msgstr "الردود على %s"
|
||||
msgstr "كرر إلى %s"
|
||||
|
||||
#: actions/apitimelineretweetsofme.php:112
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Repeats of %s"
|
||||
msgstr "الردود على %s"
|
||||
msgstr "تكرارات %s"
|
||||
|
||||
#: actions/apitimelinetag.php:102 actions/tag.php:66
|
||||
#, php-format
|
||||
@ -587,7 +582,7 @@ msgid "Preview"
|
||||
msgstr "عاين"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "احذف"
|
||||
|
||||
@ -600,13 +595,13 @@ msgid "Crop"
|
||||
msgstr ""
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -676,7 +671,7 @@ msgstr "نعم"
|
||||
msgid "Block this user"
|
||||
msgstr "امنع هذا المستخدم"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
msgstr "فشل حفظ معلومات المنع."
|
||||
|
||||
@ -748,7 +743,7 @@ msgstr ""
|
||||
#: actions/confirmaddress.php:114 actions/emailsettings.php:296
|
||||
#: actions/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
msgstr "تعذّر تحديث المستخدم."
|
||||
@ -808,7 +803,7 @@ msgstr "أمتأكد من أنك تريد حذف هذا الإشعار؟"
|
||||
msgid "Do not delete this notice"
|
||||
msgstr "لا تحذف هذا الإشعار"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:603
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:611
|
||||
msgid "Delete this notice"
|
||||
msgstr "احذف هذا الإشعار"
|
||||
|
||||
@ -942,7 +937,7 @@ msgstr "ارجع إلى المبدئي"
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: actions/useradminpanel.php:313 lib/designsettings.php:256
|
||||
@ -1235,29 +1230,25 @@ msgid "Featured users, page %d"
|
||||
msgstr "مستخدمون مختارون، صفحه %d"
|
||||
|
||||
#: actions/featured.php:99
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "A selection of some great users on %s"
|
||||
msgstr "قسم للمستخدمين المتميزين على %s"
|
||||
msgstr "اختيار لبعض المستخدمين المتميزين على %s"
|
||||
|
||||
#: actions/file.php:34
|
||||
#, fuzzy
|
||||
msgid "No notice ID."
|
||||
msgstr "لا إشعار"
|
||||
msgstr "لا رقم ملاحظه."
|
||||
|
||||
#: actions/file.php:38
|
||||
#, fuzzy
|
||||
msgid "No notice."
|
||||
msgstr "لا إشعار"
|
||||
msgstr "لا ملاحظه."
|
||||
|
||||
#: actions/file.php:42
|
||||
#, fuzzy
|
||||
msgid "No attachments."
|
||||
msgstr "لا مرفقات"
|
||||
msgstr "لا مرفقات."
|
||||
|
||||
#: actions/file.php:51
|
||||
#, fuzzy
|
||||
msgid "No uploaded attachments."
|
||||
msgstr "لا مرفقات مرفوعة"
|
||||
msgstr "لا مرفقات مرفوعه."
|
||||
|
||||
#: actions/finishremotesubscribe.php:69
|
||||
msgid "Not expecting this response!"
|
||||
@ -1428,7 +1419,7 @@ msgstr ""
|
||||
msgid "A list of the users in this group."
|
||||
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"
|
||||
msgstr "إداري"
|
||||
|
||||
@ -1515,7 +1506,7 @@ msgstr ""
|
||||
msgid "User is not blocked from group."
|
||||
msgstr "المستخدم ليس ممنوعًا من المجموعه."
|
||||
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:77
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:86
|
||||
msgid "Error removing the block."
|
||||
msgstr "خطأ أثناء منع الحجب."
|
||||
|
||||
@ -1684,7 +1675,7 @@ msgstr "رساله شخصية"
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
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"
|
||||
msgstr "أرسل"
|
||||
|
||||
@ -1780,7 +1771,7 @@ msgstr "اسم المستخدم أو كلمه السر غير صحيحان."
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "لُج"
|
||||
@ -1887,7 +1878,7 @@ msgstr "أُرسلت الرسالة"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "خطأ أجاكس"
|
||||
|
||||
@ -1895,7 +1886,7 @@ msgstr "خطأ أجاكس"
|
||||
msgid "New notice"
|
||||
msgstr "إشعار جديد"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "أُرسل الإشعار"
|
||||
|
||||
@ -2312,69 +2303,77 @@ msgstr "الموقع"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "الوسوم"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "اللغة"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "اللغه المفضلة"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "المنطقه الزمنية"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "ما المنطقه الزمنيه التى تتواجد فيها عادة؟"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:221 actions/register.php:223
|
||||
#: actions/profilesettings.php:228 actions/register.php:223
|
||||
#, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164
|
||||
#: actions/profilesettings.php:235 actions/siteadminpanel.php:164
|
||||
msgid "Timezone not selected."
|
||||
msgstr "لم تُختر المنطقه الزمنيه."
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:246 actions/tagother.php:178
|
||||
#: actions/profilesettings.php:253 actions/tagother.php:178
|
||||
#, php-format
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "وسم غير صالح: \"%s\""
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "تعذّر حفظ الملف الشخصى."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
msgstr "تعذّر حفظ الوسوم."
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr "حُفظت الإعدادات."
|
||||
|
||||
@ -2473,7 +2472,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr "سحابه الوسوم"
|
||||
|
||||
@ -2609,7 +2608,7 @@ msgstr "عذرا، رمز دعوه غير صالح."
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "سجّل"
|
||||
@ -2762,29 +2761,24 @@ msgid "Only logged-in users can repeat notices."
|
||||
msgstr ""
|
||||
|
||||
#: actions/repeat.php:64 actions/repeat.php:71
|
||||
#, fuzzy
|
||||
msgid "No notice specified."
|
||||
msgstr "لا ملف شخصى مُحدّد."
|
||||
msgstr "لا ملاحظه محدده."
|
||||
|
||||
#: actions/repeat.php:76
|
||||
#, fuzzy
|
||||
msgid "You can't repeat your own notice."
|
||||
msgstr "لا يمكنك إسكات المستخدمين على هذا الموقع."
|
||||
msgstr "لا يمكنك تكرار ملاحظتك الشخصيه."
|
||||
|
||||
#: actions/repeat.php:90
|
||||
#, fuzzy
|
||||
msgid "You already repeated that notice."
|
||||
msgstr "لقد منعت مسبقا هذا المستخدم."
|
||||
msgstr "أنت كررت هذه الملاحظه بالفعل."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#, fuzzy
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
msgid "Repeated"
|
||||
msgstr "أنشئ"
|
||||
msgstr "مكرر"
|
||||
|
||||
#: actions/repeat.php:119
|
||||
#, fuzzy
|
||||
msgid "Repeated!"
|
||||
msgstr "أنشئ"
|
||||
msgstr "مكرر!"
|
||||
|
||||
#: actions/replies.php:125 actions/repliesrss.php:68
|
||||
#: lib/personalgroupnav.php:105
|
||||
@ -3089,9 +3083,9 @@ msgid ""
|
||||
msgstr ""
|
||||
|
||||
#: actions/showstream.php:313
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Repeat of %s"
|
||||
msgstr "الردود على %s"
|
||||
msgstr "تكرارات %s"
|
||||
|
||||
#: actions/silence.php:65 actions/unsilence.php:65
|
||||
msgid "You cannot silence users on this site."
|
||||
@ -3219,9 +3213,8 @@ msgid "Prohibit anonymous users (not logged in) from viewing site?"
|
||||
msgstr "أأمنع المستخدمين المجهولين (غير الوالجين) من عرض الموقع؟"
|
||||
|
||||
#: actions/siteadminpanel.php:327
|
||||
#, fuzzy
|
||||
msgid "Invite only"
|
||||
msgstr "ادعُ"
|
||||
msgstr "بالدعوه فقط"
|
||||
|
||||
#: actions/siteadminpanel.php:329
|
||||
msgid "Make registration invitation only."
|
||||
@ -3503,9 +3496,8 @@ msgid "Notice feed for tag %s (Atom)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/tagother.php:39
|
||||
#, fuzzy
|
||||
msgid "No ID argument."
|
||||
msgstr "لا مُدخل هويه."
|
||||
msgstr "لا مدخل هويه."
|
||||
|
||||
#: actions/tagother.php:65
|
||||
#, php-format
|
||||
@ -3522,7 +3514,7 @@ msgstr "صورة"
|
||||
|
||||
#: actions/tagother.php:141
|
||||
msgid "Tag user"
|
||||
msgstr ""
|
||||
msgstr "اوسم المستخدم"
|
||||
|
||||
#: actions/tagother.php:151
|
||||
msgid ""
|
||||
@ -3556,9 +3548,8 @@ msgid "You haven't blocked that user."
|
||||
msgstr "لم تمنع هذا المستخدم."
|
||||
|
||||
#: actions/unsandbox.php:72
|
||||
#, fuzzy
|
||||
msgid "User is not sandboxed."
|
||||
msgstr "ليس للمستخدم إشعار أخير"
|
||||
msgstr "المستخدم ليس فى صندوق الرمل."
|
||||
|
||||
#: actions/unsilence.php:72
|
||||
msgid "User is not silenced."
|
||||
@ -3762,9 +3753,8 @@ msgid "Wrong image type for avatar URL ‘%s’."
|
||||
msgstr ""
|
||||
|
||||
#: actions/userbyid.php:70
|
||||
#, fuzzy
|
||||
msgid "No ID."
|
||||
msgstr "لا هوية"
|
||||
msgstr "لا هويه."
|
||||
|
||||
#: actions/userdesignsettings.php:76 lib/designsettings.php:65
|
||||
msgid "Profile design"
|
||||
@ -3856,19 +3846,19 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:319 classes/Notice.php:344
|
||||
#: classes/Notice.php:309 classes/Notice.php:334
|
||||
msgid "Problem saving notice."
|
||||
msgstr "مشكله أثناء حفظ الإشعار."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#, fuzzy, php-format
|
||||
#: classes/Notice.php:1361
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "%1$s (%2$s)"
|
||||
msgstr "آر تى @%1$s %2$s"
|
||||
|
||||
#: classes/User.php:368
|
||||
#, php-format
|
||||
@ -3920,128 +3910,128 @@ msgstr "%s - %s"
|
||||
msgid "Untitled page"
|
||||
msgstr "صفحه غير مُعنونة"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "الرئيسية"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr "الملف الشخصى ومسار الأصدقاء الزمني"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "الحساب"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "اتصل"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect to services"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
msgid "Change site configuration"
|
||||
msgstr "غيّر ضبط الموقع"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "ادعُ"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "اخرج"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr "اخرج من الموقع"
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "أنشئ حسابًا"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr "لُج إلى الموقع"
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "مساعدة"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "ساعدني!"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "ابحث"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "ابحث عن أشخاص أو نص"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr "إشعار الموقع"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr "المشاهدات المحلية"
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr "إشعار الصفحة"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "عن"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "الأسئله المكررة"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr "الشروط"
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "خصوصية"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "المصدر"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "اتصل"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%site.name%%** is a microblogging service brought to you by [%%site."
|
||||
@ -4050,12 +4040,12 @@ msgstr ""
|
||||
"**%%site.name%%** خدمه تدوين مصغر يقدمها لك [%%site.broughtby%%](%%site."
|
||||
"broughtbyurl%%). "
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
|
||||
@ -4066,31 +4056,31 @@ msgstr ""
|
||||
"المتوفر تحت [رخصه غنو أفيرو العمومية](http://www.fsf.org/licensing/licenses/"
|
||||
"agpl-3.0.html)."
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
msgid "Site content license"
|
||||
msgstr "رخصه محتوى الموقع"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr "الرخصه."
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr "بعد"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr "قبل"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
@ -4142,6 +4132,16 @@ msgstr ""
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "نتائج الأمر"
|
||||
@ -4235,19 +4235,17 @@ msgid "Cannot repeat your own notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/command.php:427
|
||||
#, fuzzy
|
||||
msgid "Already repeated that notice"
|
||||
msgstr "احذف هذا الإشعار"
|
||||
msgstr "كرر بالفعل هذا الإشعار"
|
||||
|
||||
#: lib/command.php:435
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Notice from %s repeated"
|
||||
msgstr "أُرسل الإشعار"
|
||||
msgstr "الإشعار من %s مكرر"
|
||||
|
||||
#: lib/command.php:437
|
||||
#, fuzzy
|
||||
msgid "Error repeating notice."
|
||||
msgstr "خطأ أثناء حفظ الإشعار."
|
||||
msgstr "خطأ تكرار الإشعار."
|
||||
|
||||
#: lib/command.php:491
|
||||
#, php-format
|
||||
@ -4308,7 +4306,7 @@ msgstr ""
|
||||
#: lib/command.php:664
|
||||
#, php-format
|
||||
msgid "Could not create login token for %s"
|
||||
msgstr ""
|
||||
msgstr "لم يمكن إنشاء توكن الولوج ل%s"
|
||||
|
||||
#: lib/command.php:669
|
||||
#, php-format
|
||||
@ -4606,11 +4604,11 @@ msgstr "نوع ملف غير معروف"
|
||||
|
||||
#: lib/imagefile.php:217
|
||||
msgid "MB"
|
||||
msgstr ""
|
||||
msgstr "ميجابايت"
|
||||
|
||||
#: lib/imagefile.php:219
|
||||
msgid "kB"
|
||||
msgstr ""
|
||||
msgstr "كيلوبايت"
|
||||
|
||||
#: lib/jabber.php:191
|
||||
#, php-format
|
||||
@ -4819,7 +4817,7 @@ msgid ""
|
||||
"users in conversation. People can send you messages for your eyes only."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
msgid "from"
|
||||
msgstr "من"
|
||||
|
||||
@ -4883,73 +4881,75 @@ msgstr "أرسل إشعارًا مباشرًا"
|
||||
msgid "To"
|
||||
msgstr "إلى"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr "المحارف المتوفرة"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr "أرسل إشعارًا"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "ما الأخبار يا %s؟"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr "أرفق"
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr "أرفق ملفًا"
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "N"
|
||||
msgstr "ش"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr "ج"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr "ر"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr "غ"
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr "في"
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr "فى السياق"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#, fuzzy
|
||||
#: lib/noticelist.php:556
|
||||
msgid "Repeated by"
|
||||
msgstr "أنشئ"
|
||||
msgstr "مكرر بواسطة"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "رُد على هذا الإشعار"
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "رُد"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#, fuzzy
|
||||
#: lib/noticelist.php:628
|
||||
msgid "Notice repeated"
|
||||
msgstr "حُذف الإشعار."
|
||||
msgstr "الإشعار مكرر"
|
||||
|
||||
#: lib/nudgeform.php:116
|
||||
msgid "Nudge this user"
|
||||
@ -5049,9 +5049,8 @@ msgid "All groups"
|
||||
msgstr "كل المجموعات"
|
||||
|
||||
#: lib/profileformaction.php:123
|
||||
#, fuzzy
|
||||
msgid "No return-to arguments."
|
||||
msgstr "لا مُدخل هويه."
|
||||
msgstr "لا مدخلات رجوع إلى."
|
||||
|
||||
#: lib/profileformaction.php:137
|
||||
msgid "Unimplemented method."
|
||||
@ -5078,23 +5077,20 @@ msgid "Popular"
|
||||
msgstr "مشهورة"
|
||||
|
||||
#: lib/repeatform.php:107
|
||||
#, fuzzy
|
||||
msgid "Repeat this notice?"
|
||||
msgstr "رُد على هذا الإشعار"
|
||||
msgstr "كرر هذا الإشعار؟"
|
||||
|
||||
#: lib/repeatform.php:132
|
||||
#, fuzzy
|
||||
msgid "Repeat this notice"
|
||||
msgstr "رُد على هذا الإشعار"
|
||||
msgstr "كرر هذا الإشعار"
|
||||
|
||||
#: lib/sandboxform.php:67
|
||||
msgid "Sandbox"
|
||||
msgstr ""
|
||||
|
||||
#: lib/sandboxform.php:78
|
||||
#, fuzzy
|
||||
msgid "Sandbox this user"
|
||||
msgstr "ألغِ منع هذا المستخدم"
|
||||
msgstr "أضف هذا المستخدم إلى صندوق الرمل"
|
||||
|
||||
#: lib/searchaction.php:120
|
||||
msgid "Search site"
|
||||
@ -5172,14 +5168,12 @@ msgid "Could not subscribe other to you."
|
||||
msgstr ""
|
||||
|
||||
#: lib/subs.php:128
|
||||
#, fuzzy
|
||||
msgid "Not subscribed!"
|
||||
msgstr "لست مُشتركًا!"
|
||||
msgstr "غير مشترك!"
|
||||
|
||||
#: lib/subs.php:133
|
||||
#, fuzzy
|
||||
msgid "Couldn't delete self-subscription."
|
||||
msgstr "تعذّر حذف الاشتراك."
|
||||
msgstr "لم يمكن حذف اشتراك ذاتى."
|
||||
|
||||
#: lib/subs.php:146
|
||||
msgid "Couldn't delete subscription."
|
||||
@ -5212,9 +5206,8 @@ msgid "Unsandbox"
|
||||
msgstr ""
|
||||
|
||||
#: lib/unsandboxform.php:80
|
||||
#, fuzzy
|
||||
msgid "Unsandbox this user"
|
||||
msgstr "ألغِ منع هذا المستخدم"
|
||||
msgstr "أزل هذا المستخدم من صندوق الرمل"
|
||||
|
||||
#: lib/unsilenceform.php:67
|
||||
msgid "Unsilence"
|
||||
|
@ -1,5 +1,6 @@
|
||||
# Translation of StatusNet to Bulgarian
|
||||
#
|
||||
# Author@translatewiki.net: DCLXVI
|
||||
# Author@translatewiki.net: Turin
|
||||
# --
|
||||
# This file is distributed under the same license as the StatusNet package.
|
||||
@ -8,12 +9,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:42:15+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:10:40+0000\n"
|
||||
"Language-Team: Bulgarian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: bg\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -188,11 +189,11 @@ msgstr "Грешка при обновяване на потребителя."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "Не можете да блокирате себе си!"
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "Грешка при блокиране на потребителя."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr "Грешка при разблокиране на потребителя."
|
||||
|
||||
@ -303,12 +304,11 @@ msgid "Could not determine source user."
|
||||
msgstr "Грешка при изтегляне на общия поток"
|
||||
|
||||
#: actions/apifriendshipsshow.php:143
|
||||
#, fuzzy
|
||||
msgid "Could not find target user."
|
||||
msgstr "Не са открити бележки."
|
||||
msgstr "Целевият потребител не беше открит."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr ""
|
||||
@ -316,25 +316,25 @@ msgstr ""
|
||||
"между тях."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Опитайте друг псевдоним, този вече е зает."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "Неправилен псевдоним."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "Адресът на личната страница не е правилен URL."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Пълното име е твърде дълго (макс. 255 знака)"
|
||||
@ -345,7 +345,7 @@ msgid "Description is too long (max %d chars)."
|
||||
msgstr "Описанието е твърде дълго (до %d символа)."
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
msgstr "Името на местоположението е твърде дълго (макс. 255 знака)."
|
||||
@ -460,7 +460,7 @@ msgstr "Твърде дълга бележка. Трябва да е най-мн
|
||||
msgid "Not found"
|
||||
msgstr "Не е открито."
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -591,7 +591,7 @@ msgid "Preview"
|
||||
msgstr "Преглед"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "Изтриване"
|
||||
|
||||
@ -604,13 +604,13 @@ msgid "Crop"
|
||||
msgstr "Изрязване"
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -680,7 +680,7 @@ msgstr "Да"
|
||||
msgid "Block this user"
|
||||
msgstr "Блокиране на потребителя"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
msgstr "Грешка при записване данните за блокирането."
|
||||
|
||||
@ -754,7 +754,7 @@ msgstr "Този адрес е вече потвърден."
|
||||
#: actions/confirmaddress.php:114 actions/emailsettings.php:296
|
||||
#: actions/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
msgstr "Грешка при обновяване на потребителя."
|
||||
@ -814,7 +814,7 @@ msgstr "Наистина ли искате да изтриете тази бел
|
||||
msgid "Do not delete this notice"
|
||||
msgstr "Да не се изтрива бележката"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:603
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:611
|
||||
msgid "Delete this notice"
|
||||
msgstr "Изтриване на бележката"
|
||||
|
||||
@ -954,7 +954,7 @@ msgstr ""
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: actions/useradminpanel.php:313 lib/designsettings.php:256
|
||||
@ -1268,9 +1268,8 @@ msgid "No notice."
|
||||
msgstr "Липсва бележка."
|
||||
|
||||
#: actions/file.php:42
|
||||
#, fuzzy
|
||||
msgid "No attachments."
|
||||
msgstr "Няма такъв документ."
|
||||
msgstr "Няма прикачени файлове."
|
||||
|
||||
#: actions/file.php:51
|
||||
#, fuzzy
|
||||
@ -1350,14 +1349,12 @@ msgid "Only an admin can block group members."
|
||||
msgstr "Само администратор може да блокира членове от групата."
|
||||
|
||||
#: actions/groupblock.php:95
|
||||
#, fuzzy
|
||||
msgid "User is already blocked from group."
|
||||
msgstr "Потребителят ви е блокирал."
|
||||
msgstr "Потребителят вече е блокиран за групата."
|
||||
|
||||
#: actions/groupblock.php:100
|
||||
#, fuzzy
|
||||
msgid "User is not a member of group."
|
||||
msgstr "Не членувате в тази група."
|
||||
msgstr "Потребителят не членува в групата."
|
||||
|
||||
#: actions/groupblock.php:136 actions/groupmembers.php:314
|
||||
#, fuzzy
|
||||
@ -1460,7 +1457,7 @@ msgstr "Членове на групата %s, страница %d"
|
||||
msgid "A list of the users in this group."
|
||||
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"
|
||||
msgstr "Настройки"
|
||||
|
||||
@ -1551,7 +1548,7 @@ msgstr ""
|
||||
msgid "User is not blocked from group."
|
||||
msgstr "Потребителят ви е блокирал."
|
||||
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:77
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:86
|
||||
#, fuzzy
|
||||
msgid "Error removing the block."
|
||||
msgstr "Грешка при запазване на потребител."
|
||||
@ -1734,7 +1731,7 @@ msgstr "Лично съобщение"
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
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"
|
||||
msgstr "Прати"
|
||||
|
||||
@ -1859,7 +1856,7 @@ msgstr "Грешно име или парола."
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "Вход"
|
||||
@ -1972,7 +1969,7 @@ msgstr "Съобщението е изпратено"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "Грешка в Ajax"
|
||||
|
||||
@ -1980,7 +1977,7 @@ msgstr "Грешка в Ajax"
|
||||
msgid "New notice"
|
||||
msgstr "Нова бележка"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "Бележката е публикувана"
|
||||
|
||||
@ -2054,7 +2051,7 @@ msgstr "вид съдържание "
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
msgstr ""
|
||||
msgstr "Само "
|
||||
|
||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1031
|
||||
#: lib/api.php:1059 lib/api.php:1169
|
||||
@ -2403,71 +2400,80 @@ msgstr "Местоположение"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "Етикети"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "Език"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "Предпочитан език"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "Часови пояс"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "В кой часови пояс сте обикновено?"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
"Автоматично абониране за всеки, който се абонира за мен (подходящо за "
|
||||
"ботове)."
|
||||
|
||||
#: actions/profilesettings.php:221 actions/register.php:223
|
||||
#: actions/profilesettings.php:228 actions/register.php:223
|
||||
#, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
msgstr "Биографията е твърде дълга (до %d символа)."
|
||||
|
||||
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164
|
||||
#: actions/profilesettings.php:235 actions/siteadminpanel.php:164
|
||||
msgid "Timezone not selected."
|
||||
msgstr "Не е избран часови пояс"
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
msgstr "Името на езика е твърде дълго (може да е до 50 знака)."
|
||||
|
||||
#: actions/profilesettings.php:246 actions/tagother.php:178
|
||||
#: actions/profilesettings.php:253 actions/tagother.php:178
|
||||
#, php-format
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Неправилен етикет: \"%s\""
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "Грешка при запазване на профила."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
msgstr "Грешка при запазване етикетите."
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr "Настройките са запазени."
|
||||
|
||||
@ -2561,7 +2567,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr ""
|
||||
|
||||
@ -2700,7 +2706,7 @@ msgstr "Грешка в кода за потвърждение."
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "Регистриране"
|
||||
@ -2889,7 +2895,7 @@ msgstr "Не можете да повтаряте собствена бележ
|
||||
msgid "You already repeated that notice."
|
||||
msgstr "Вече сте повторили тази бележка."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
msgid "Repeated"
|
||||
msgstr "Повторено"
|
||||
|
||||
@ -4002,16 +4008,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
msgstr "Забранено ви е да публикувате бележки в този сайт."
|
||||
|
||||
#: classes/Notice.php:319 classes/Notice.php:344
|
||||
#: classes/Notice.php:309 classes/Notice.php:334
|
||||
msgid "Problem saving notice."
|
||||
msgstr "Проблем при записване на бележката."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Грешка в базата от данни — отговор при вмъкването: %s"
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
@ -4068,132 +4074,132 @@ msgstr "%s - %s"
|
||||
msgid "Untitled page"
|
||||
msgstr "Неозаглавена страница"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "Начало"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "Сметка"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr "Промяна на поща, аватар, парола, профил"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Свързване"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect to services"
|
||||
msgstr "Свързване към услуги"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
msgid "Change site configuration"
|
||||
msgstr "Промяна настройките на сайта"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "Покани"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr "Поканете приятели и колеги да се присъединят към вас в %s"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "Изход"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr "Излизане от сайта"
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "Създаване на нова сметка"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr "Влизане в сайта"
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "Помощ"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
#, fuzzy
|
||||
msgid "Help me!"
|
||||
msgstr "Помощ"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "Търсене"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "Търсене за хора или бележки"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
#, fuzzy
|
||||
msgid "Site notice"
|
||||
msgstr "Нова бележка"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
#, fuzzy
|
||||
msgid "Page notice"
|
||||
msgstr "Нова бележка"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
#, fuzzy
|
||||
msgid "Secondary site navigation"
|
||||
msgstr "Абонаменти"
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "Относно"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "Въпроси"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr "Условия"
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "Поверителност"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "Изходен код"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Контакт"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr "Табелка"
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr "Лиценз на програмата StatusNet"
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%site.name%%** is a microblogging service brought to you by [%%site."
|
||||
@ -4202,12 +4208,12 @@ msgstr ""
|
||||
"**%%site.name%%** е услуга за микроблогване, предоставена ви от [%%site."
|
||||
"broughtby%%](%%site.broughtbyurl%%). "
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** е услуга за микроблогване. "
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
|
||||
@ -4218,31 +4224,31 @@ msgstr ""
|
||||
"достъпна под [GNU Affero General Public License](http://www.fsf.org/"
|
||||
"licensing/licenses/agpl-3.0.html)."
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
msgid "Site content license"
|
||||
msgstr "Лиценз на съдържанието"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr "Всички "
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr "лиценз."
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr "Страниране"
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr "След"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr "Преди"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Имаше проблем със сесията ви в сайта."
|
||||
|
||||
@ -4297,6 +4303,16 @@ msgstr ""
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "Резултат от командата"
|
||||
@ -4981,7 +4997,7 @@ msgid ""
|
||||
"users in conversation. People can send you messages for your eyes only."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
msgid "from"
|
||||
msgstr "от"
|
||||
|
||||
@ -5045,69 +5061,73 @@ msgstr "Изпращане на пряко съобщеие"
|
||||
msgid "To"
|
||||
msgstr "До"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr "Налични знаци"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr "Изпращане на бележка"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "Какво става, %s?"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr "Прикрепяне"
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr "Прикрепяне на файл"
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "N"
|
||||
msgstr "С"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr "Ю"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr "И"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr "З"
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr "в контекст"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
msgid "Repeated by"
|
||||
msgstr "Повторено от"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Отговаряне на тази бележка"
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "Отговор"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
msgid "Notice repeated"
|
||||
msgstr "Бележката е повторена."
|
||||
|
||||
|
@ -9,12 +9,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:42:19+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:10:44+0000\n"
|
||||
"Language-Team: Catalan\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: ca\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -195,11 +195,11 @@ msgstr "No s'ha pogut actualitzar l'usuari."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "No podeu suprimir els usuaris."
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "Ha fallat el bloqueig d'usuari."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr "Ha fallat el desbloqueig d'usuari."
|
||||
|
||||
@ -316,7 +316,7 @@ msgid "Could not find target user."
|
||||
msgstr "No es pot trobar cap estatus."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr ""
|
||||
@ -324,25 +324,25 @@ msgstr ""
|
||||
"espais."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Aquest sobrenom ja existeix. Prova un altre. "
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "Sobrenom no vàlid."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "La pàgina personal no és un URL vàlid."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
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)."
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
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"
|
||||
msgstr "No s'ha trobat"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -600,7 +600,7 @@ msgid "Preview"
|
||||
msgstr "Vista prèvia"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "Suprimeix"
|
||||
|
||||
@ -613,13 +613,13 @@ msgid "Crop"
|
||||
msgstr "Retalla"
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -693,7 +693,7 @@ msgstr "Sí"
|
||||
msgid "Block this user"
|
||||
msgstr "Bloquejar aquest usuari"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
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/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
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"
|
||||
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"
|
||||
msgstr "Eliminar aquesta nota"
|
||||
|
||||
@ -969,7 +969,7 @@ msgstr ""
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: 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."
|
||||
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"
|
||||
msgstr "Admin"
|
||||
|
||||
@ -1560,7 +1560,7 @@ msgstr "Només un administrador pot desblocar els membres del grup."
|
||||
msgid "User is not blocked from group."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr "Envia"
|
||||
|
||||
@ -1874,7 +1874,7 @@ msgstr "Nom d'usuari o contrasenya incorrectes."
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "Inici de sessió"
|
||||
@ -1988,7 +1988,7 @@ msgstr "S'ha enviat el missatge"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "Ajax Error"
|
||||
|
||||
@ -1996,7 +1996,7 @@ msgstr "Ajax Error"
|
||||
msgid "New notice"
|
||||
msgstr "Nou avís"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "Notificació publicada"
|
||||
|
||||
@ -2428,73 +2428,82 @@ msgstr "Ubicació"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "Etiquetes"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
"Etiquetes per a tu mateix (lletres, números, -, ., i _), per comes o separat "
|
||||
"por espais"
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "Idioma"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "Preferència d'idioma"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "Franja horària"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "Quina franja horària seria normal ser?"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
"Automàticament subscriure's a qualsevol que ho estigui a tu mateix (ideal "
|
||||
"per no-humans)"
|
||||
|
||||
#: actions/profilesettings.php:221 actions/register.php:223
|
||||
#: actions/profilesettings.php:228 actions/register.php:223
|
||||
#, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
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."
|
||||
msgstr "Franja horària no seleccionada."
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
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
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Etiqueta no vàlida: \"%s\""
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "No s'ha pogut guardar el perfil."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
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."
|
||||
msgstr "Configuració guardada."
|
||||
|
||||
@ -2591,7 +2600,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr "Núvol d'etiquetes"
|
||||
|
||||
@ -2731,7 +2740,7 @@ msgstr "El codi d'invitació no és vàlid."
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
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."
|
||||
msgstr "Ja heu blocat l'usuari."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
msgid "Repeated"
|
||||
msgstr "Repetit"
|
||||
|
||||
@ -4052,16 +4061,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
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."
|
||||
msgstr "Problema en guardar l'avís."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Error de BD en inserir resposta: %s"
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, fuzzy, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "%1$s (%2$s)"
|
||||
@ -4117,129 +4126,129 @@ msgstr "%s - %s"
|
||||
msgid "Untitled page"
|
||||
msgstr "Pàgina sense titol"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr "Navegació primària del lloc"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "Inici"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr "Perfil personal i línia temporal dels amics"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "Compte"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr "Canviar correu electrònic, avatar, contrasenya, perfil"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Connexió"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
#, fuzzy
|
||||
msgid "Connect to services"
|
||||
msgstr "No s'ha pogut redirigir al servidor: %s"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
msgid "Change site configuration"
|
||||
msgstr "Canvia la configuració del lloc"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "Convida"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr "Convidar amics i companys perquè participin a %s"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "Finalitza la sessió"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr "Finalitza la sessió del lloc"
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "Crea un compte"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr "Inicia una sessió al lloc"
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "Ajuda"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "Ajuda'm"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "Cerca"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "Cerca gent o text"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr "Avís del lloc"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr "Vistes locals"
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr "Notificació pàgina"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr "Navegació del lloc secundària"
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "Quant a"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "Preguntes més freqüents"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "Privadesa"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "Font"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Contacte"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr "Insígnia"
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr "Llicència del programari StatusNet"
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%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.broughtbyurl%%)."
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** és un servei de microblogging."
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"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."
|
||||
"org/licensing/licenses/agpl-3.0.html)."
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
#, fuzzy
|
||||
msgid "Site content license"
|
||||
msgstr "Llicència del programari StatusNet"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr "Tot "
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr "llicència."
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr "Paginació"
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr "Posteriors"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr "Anteriors"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Ha ocorregut algun problema amb la teva sessió."
|
||||
|
||||
@ -4345,6 +4354,16 @@ msgstr ""
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "Resultats de les comandes"
|
||||
@ -5031,7 +5050,7 @@ msgid ""
|
||||
"users in conversation. People can send you messages for your eyes only."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
msgid "from"
|
||||
msgstr "de"
|
||||
|
||||
@ -5095,72 +5114,76 @@ msgstr "Enviar notificació directa"
|
||||
msgid "To"
|
||||
msgstr "A"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr "Caràcters disponibles"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr "Enviar notificació"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "Què tal, %s?"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr "Adjunta"
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr "Adjunta un fitxer"
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
#, fuzzy
|
||||
msgid "N"
|
||||
msgstr "No"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
#, fuzzy
|
||||
msgid "in context"
|
||||
msgstr "Cap contingut!"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "S'ha creat"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "respondre a aquesta nota"
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "Respon"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Notificació publicada"
|
||||
|
@ -9,12 +9,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:42:25+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:10:48+0000\n"
|
||||
"Language-Team: Czech\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: cs\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -194,11 +194,11 @@ msgstr "Nelze aktualizovat uživatele"
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "Nelze aktualizovat uživatele"
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr ""
|
||||
|
||||
@ -313,31 +313,31 @@ msgid "Could not find target user."
|
||||
msgstr "Nelze aktualizovat uživatele"
|
||||
|
||||
#: 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
|
||||
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"
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Přezdívku již někdo používá. Zkuste jinou"
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "Není platnou přezdívkou."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "Stránka není platnou URL."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
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ů)"
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -602,7 +602,7 @@ msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "Odstranit"
|
||||
|
||||
@ -615,13 +615,13 @@ msgid "Crop"
|
||||
msgstr ""
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -694,7 +694,7 @@ msgstr "Ano"
|
||||
msgid "Block this user"
|
||||
msgstr "Zablokovat tohoto uživatele"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
msgstr ""
|
||||
|
||||
@ -768,7 +768,7 @@ msgstr "Adresa již byla potvrzena"
|
||||
#: actions/confirmaddress.php:114 actions/emailsettings.php:296
|
||||
#: actions/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
msgstr "Nelze aktualizovat uživatele"
|
||||
@ -830,7 +830,7 @@ msgstr ""
|
||||
msgid "Do not delete this notice"
|
||||
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"
|
||||
msgstr "Odstranit toto oznámení"
|
||||
|
||||
@ -972,7 +972,7 @@ msgstr ""
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: actions/useradminpanel.php:313 lib/designsettings.php:256
|
||||
@ -1477,7 +1477,7 @@ msgstr ""
|
||||
msgid "A list of the users in this group."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1570,7 +1570,7 @@ msgstr ""
|
||||
msgid "User is not blocked from group."
|
||||
msgstr "Uživatel nemá profil."
|
||||
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:77
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:86
|
||||
#, fuzzy
|
||||
msgid "Error removing the block."
|
||||
msgstr "Chyba při ukládaní uživatele"
|
||||
@ -1749,7 +1749,7 @@ msgstr ""
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
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"
|
||||
msgstr "Odeslat"
|
||||
|
||||
@ -1849,7 +1849,7 @@ msgstr "Neplatné jméno nebo heslo"
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "Přihlásit"
|
||||
@ -1959,7 +1959,7 @@ msgstr ""
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1967,7 +1967,7 @@ msgstr ""
|
||||
msgid "New notice"
|
||||
msgstr "Nové sdělení"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
#, fuzzy
|
||||
msgid "Notice posted"
|
||||
msgstr "Sdělení"
|
||||
@ -2406,70 +2406,79 @@ msgstr "Umístění"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "Jazyk"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:221 actions/register.php:223
|
||||
#: actions/profilesettings.php:228 actions/register.php:223
|
||||
#, fuzzy, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:246 actions/tagother.php:178
|
||||
#: actions/profilesettings.php:253 actions/tagother.php:178
|
||||
#, fuzzy, php-format
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Neplatná adresa '%s'"
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "Nelze uložit profil"
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
#, fuzzy
|
||||
msgid "Couldn't save tags."
|
||||
msgstr "Nelze uložit profil"
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr "Nastavení uloženo"
|
||||
|
||||
@ -2566,7 +2575,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr ""
|
||||
|
||||
@ -2705,7 +2714,7 @@ msgstr "Chyba v ověřovacím kódu"
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "Registrovat"
|
||||
@ -2881,7 +2890,7 @@ msgstr "Nemůžete se registrovat, pokud nesouhlasíte s licencí."
|
||||
msgid "You already repeated that notice."
|
||||
msgstr "Již jste přihlášen"
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "Vytvořit"
|
||||
@ -4006,16 +4015,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:319 classes/Notice.php:344
|
||||
#: classes/Notice.php:309 classes/Notice.php:334
|
||||
msgid "Problem saving notice."
|
||||
msgstr "Problém při ukládání sdělení"
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Chyba v DB při vkládání odpovědi: %s"
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr ""
|
||||
@ -4074,135 +4083,135 @@ msgstr ""
|
||||
msgid "Untitled page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "Domů"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
#, fuzzy
|
||||
msgid "Account"
|
||||
msgstr "O nás"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Připojit"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
#, fuzzy
|
||||
msgid "Connect to services"
|
||||
msgstr "Nelze přesměrovat na server: %s"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
#, fuzzy
|
||||
msgid "Change site configuration"
|
||||
msgstr "Odběry"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "Odhlásit"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
#, fuzzy
|
||||
msgid "Create an account"
|
||||
msgstr "Vytvořit nový účet"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "Nápověda"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "Pomoci mi!"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "Hledat"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
#, fuzzy
|
||||
msgid "Site notice"
|
||||
msgstr "Nové sdělení"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
#, fuzzy
|
||||
msgid "Page notice"
|
||||
msgstr "Nové sdělení"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
#, fuzzy
|
||||
msgid "Secondary site navigation"
|
||||
msgstr "Odběry"
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "O nás"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "FAQ"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "Soukromí"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "Zdroj"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%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."
|
||||
"broughtby%%](%%site.broughtbyurl%%). "
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** je služba mikroblogů."
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"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/"
|
||||
"licensing/licenses/agpl-3.0.html)."
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
#, fuzzy
|
||||
msgid "Site content license"
|
||||
msgstr "Nové sdělení"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
#, fuzzy
|
||||
msgid "After"
|
||||
msgstr "« Novější"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
#, fuzzy
|
||||
msgid "Before"
|
||||
msgstr "Starší »"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
@ -4309,6 +4318,16 @@ msgstr ""
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr ""
|
||||
@ -4997,7 +5016,7 @@ msgid ""
|
||||
"users in conversation. People can send you messages for your eyes only."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
#, fuzzy
|
||||
msgid "from"
|
||||
msgstr " od "
|
||||
@ -5063,74 +5082,78 @@ msgstr ""
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
#, fuzzy
|
||||
msgid "Available characters"
|
||||
msgstr "6 a více znaků"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
#, fuzzy
|
||||
msgid "Send a notice"
|
||||
msgstr "Nové sdělení"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "Co se děje %s?"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "N"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
#, fuzzy
|
||||
msgid "in context"
|
||||
msgstr "Žádný obsah!"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "Vytvořit"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
#, fuzzy
|
||||
msgid "Reply"
|
||||
msgstr "odpověď"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Sdělení"
|
||||
|
@ -11,12 +11,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:42:29+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:10:52+0000\n"
|
||||
"Language-Team: German\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: de\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -196,15 +196,14 @@ msgid "Could not update your design."
|
||||
msgstr "Konnte Benutzerdesign nicht aktualisieren."
|
||||
|
||||
#: actions/apiblockcreate.php:105
|
||||
#, fuzzy
|
||||
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."
|
||||
msgstr "Blockieren des Benutzers fehlgeschlagen."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr "Freigeben des Benutzers fehlgeschlagen."
|
||||
|
||||
@ -319,7 +318,7 @@ msgid "Could not find target user."
|
||||
msgstr "Konnte keine Statusmeldungen finden."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr ""
|
||||
@ -327,26 +326,26 @@ msgstr ""
|
||||
"Leerzeichen sind nicht erlaubt."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Nutzername wird bereits verwendet. Suche dir einen anderen aus."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "Ungültiger Nutzername."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr ""
|
||||
"Homepage ist keine gültige URL. URL’s müssen ein Präfix wie http enthalten."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
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)."
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
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/newgroup.php:178
|
||||
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/apigroupleave.php:104 actions/apigroupmembership.php:91
|
||||
@ -452,9 +451,8 @@ msgid "Cannot repeat your own notice."
|
||||
msgstr "Konnte Benachrichtigung nicht aktivieren."
|
||||
|
||||
#: actions/apistatusesretweet.php:91
|
||||
#, fuzzy
|
||||
msgid "Already repeated that notice."
|
||||
msgstr "Nachricht löschen"
|
||||
msgstr "Nachricht bereits wiederholt"
|
||||
|
||||
#: actions/apistatusesshow.php:138
|
||||
msgid "Status deleted."
|
||||
@ -475,7 +473,7 @@ msgstr ""
|
||||
msgid "Not found"
|
||||
msgstr "Nicht gefunden"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -531,7 +529,7 @@ msgstr "%s Nachrichten von allen!"
|
||||
#: actions/apitimelineretweetedbyme.php:112
|
||||
#, php-format
|
||||
msgid "Repeated by %s"
|
||||
msgstr ""
|
||||
msgstr "Von %s wiederholt"
|
||||
|
||||
#: actions/apitimelineretweetedtome.php:111
|
||||
#, fuzzy, php-format
|
||||
@ -607,7 +605,7 @@ msgid "Preview"
|
||||
msgstr "Vorschau"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "Löschen"
|
||||
|
||||
@ -620,13 +618,13 @@ msgid "Crop"
|
||||
msgstr "Zuschneiden"
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -697,7 +695,7 @@ msgstr "Ja"
|
||||
msgid "Block this user"
|
||||
msgstr "Diesen Benutzer blockieren"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
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/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
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"
|
||||
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"
|
||||
msgstr "Nachricht löschen"
|
||||
|
||||
@ -967,7 +965,7 @@ msgstr "Standard wiederherstellen"
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: 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"
|
||||
|
||||
#: actions/file.php:34
|
||||
#, fuzzy
|
||||
msgid "No notice ID."
|
||||
msgstr "Keine Nachricht"
|
||||
msgstr "Keine Nachrichten ID"
|
||||
|
||||
#: actions/file.php:38
|
||||
#, fuzzy
|
||||
msgid "No notice."
|
||||
msgstr "Keine Nachricht"
|
||||
|
||||
#: actions/file.php:42
|
||||
#, fuzzy
|
||||
msgid "No attachments."
|
||||
msgstr "Keine Anhänge vorhanden"
|
||||
|
||||
#: actions/file.php:51
|
||||
#, fuzzy
|
||||
msgid "No uploaded attachments."
|
||||
msgstr "Kein solcher Anhang."
|
||||
msgstr "Kein Anhang geladen."
|
||||
|
||||
#: actions/finishremotesubscribe.php:69
|
||||
msgid "Not expecting this response!"
|
||||
@ -1464,7 +1458,7 @@ msgstr "%s Gruppen-Mitglieder, Seite %d"
|
||||
msgid "A list of the users in this group."
|
||||
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"
|
||||
msgstr "Admin"
|
||||
|
||||
@ -1558,7 +1552,7 @@ msgstr "Nur Administratoren können Gruppenmitglieder entsperren."
|
||||
msgid "User is not blocked from group."
|
||||
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."
|
||||
msgstr "Fehler beim Freigeben des Benutzers."
|
||||
|
||||
@ -1750,7 +1744,7 @@ msgstr ""
|
||||
"Wenn du möchtest kannst du zu der Einladung eine persönliche Nachricht "
|
||||
"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"
|
||||
msgstr "Senden"
|
||||
|
||||
@ -1872,7 +1866,7 @@ msgid "Error setting user. You are probably not authorized."
|
||||
msgstr ""
|
||||
"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
|
||||
msgid "Login"
|
||||
msgstr "Anmelden"
|
||||
@ -1984,7 +1978,7 @@ msgstr "Nachricht gesendet"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "Ajax-Fehler"
|
||||
|
||||
@ -1992,7 +1986,7 @@ msgstr "Ajax-Fehler"
|
||||
msgid "New notice"
|
||||
msgstr "Neue Nachricht"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "Nachricht hinzugefügt"
|
||||
|
||||
@ -2422,73 +2416,82 @@ msgstr "Aufenthaltsort"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "Tags"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
"Tags über dich selbst (Buchstaben, Zahlen, -, ., und _) durch Kommas oder "
|
||||
"Leerzeichen getrennt"
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "Sprache"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "Bevorzugte Sprache"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "Zeitzone"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "In welcher Zeitzone befindest du dich üblicherweise?"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
"Abonniere automatisch alle Kontakte, die mich abonnieren (sinnvoll für Nicht-"
|
||||
"Menschen)"
|
||||
|
||||
#: actions/profilesettings.php:221 actions/register.php:223
|
||||
#: actions/profilesettings.php:228 actions/register.php:223
|
||||
#, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
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."
|
||||
msgstr "Keine Zeitzone ausgewählt."
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
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
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Ungültiger Tag: „%s“"
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "Konnte Profil nicht speichern."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
msgstr "Konnte Tags nicht speichern."
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr "Einstellungen gespeichert."
|
||||
|
||||
@ -2584,7 +2587,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr "Tag-Wolke"
|
||||
|
||||
@ -2722,7 +2725,7 @@ msgstr "Entschuldigung, ungültiger Bestätigungscode."
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "Registrieren"
|
||||
@ -2920,7 +2923,7 @@ msgstr ""
|
||||
msgid "You already repeated that notice."
|
||||
msgstr "Du hast diesen Benutzer bereits blockiert."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "Erstellt"
|
||||
@ -4061,16 +4064,16 @@ msgid "You are banned from posting notices on this site."
|
||||
msgstr ""
|
||||
"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."
|
||||
msgstr "Problem bei Speichern der Nachricht."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Datenbankfehler beim Einfügen der Antwort: %s"
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, fuzzy, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "%1$s (%2$s)"
|
||||
@ -4126,131 +4129,131 @@ msgstr "%s - %s"
|
||||
msgid "Untitled page"
|
||||
msgstr "Seite ohne Titel"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr "Hauptnavigation"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "Startseite"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr "Persönliches Profil und Freundes-Zeitleiste"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr "Ändere deine E-Mail, dein Avatar, Passwort, Profil"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Verbinden"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
#, fuzzy
|
||||
msgid "Connect to services"
|
||||
msgstr "Konnte nicht zum Server umleiten: %s"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
#, fuzzy
|
||||
msgid "Change site configuration"
|
||||
msgstr "Hauptnavigation"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "Einladen"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr "Lade Freunde und Kollegen ein dir auf %s zu folgen"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "Abmelden"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr "Von der Seite abmelden"
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "Neues Konto erstellen"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr "Auf der Seite anmelden"
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "Hilfe"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "Hilf mir!"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "Suchen"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "Suche nach Leuten oder Text"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr "Seitennachricht"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr "Lokale Ansichten"
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr "Neue Nachricht"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr "Unternavigation"
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "Über"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "FAQ"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr "AGB"
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "Privatsphäre"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "Quellcode"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
#, fuzzy
|
||||
msgid "Badge"
|
||||
msgstr "Stups"
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr "StatusNet-Software-Lizenz"
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%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.broughtbyurl%%)."
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** ist ein Microbloggingdienst."
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"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]"
|
||||
"(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"
|
||||
msgstr "StatusNet-Software-Lizenz"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
#, fuzzy
|
||||
msgid "All "
|
||||
msgstr "Alle "
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr "Lizenz."
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr "Seitenerstellung"
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr "Später"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr "Vorher"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Es gab ein Problem mit deinem Sessiontoken."
|
||||
|
||||
@ -4356,6 +4359,16 @@ msgstr "Nachrichten in denen dieser Anhang erscheint"
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "Befehl-Ergebnisse"
|
||||
@ -5094,7 +5107,7 @@ msgstr ""
|
||||
"schicken, um sie in eine Konversation zu verwickeln. Andere Leute können Dir "
|
||||
"Nachrichten schicken, die nur Du sehen kannst."
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
#, fuzzy
|
||||
msgid "from"
|
||||
msgstr "von"
|
||||
@ -5160,73 +5173,77 @@ msgstr "Versende eine direkte Nachricht"
|
||||
msgid "To"
|
||||
msgstr "An"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
#, fuzzy
|
||||
msgid "Available characters"
|
||||
msgstr "Verfügbare Zeichen"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
#, fuzzy
|
||||
msgid "Send a notice"
|
||||
msgstr "Nachricht versenden"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "Was ist los, %s?"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
#, fuzzy
|
||||
msgid "N"
|
||||
msgstr "Nein"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr "im Zusammenhang"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "Erstellt"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Auf diese Nachricht antworten"
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "Antworten"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Nachricht gelöscht."
|
||||
|
@ -9,12 +9,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:42:32+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:10:56+0000\n"
|
||||
"Language-Team: Greek\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: el\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -191,11 +191,11 @@ msgstr "Απέτυχε η ενημέρωση του χρήστη."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "Δεν μπορείτε να εμποδίσετε τον εαυτό σας!"
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr ""
|
||||
|
||||
@ -311,31 +311,31 @@ msgid "Could not find target user."
|
||||
msgstr "Απέτυχε η εύρεση οποιασδήποτε κατάστασης."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr "Το ψευδώνυμο πρέπει να έχει μόνο πεζούς χαρακτήρες και χωρίς κενά."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμάστε κάποιο άλλο."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Το ονοματεπώνυμο είναι πολύ μεγάλο (μέγιστο 255 χαρακτ.)."
|
||||
@ -346,7 +346,7 @@ msgid "Description is too long (max %d chars)."
|
||||
msgstr "Η περιγραφή είναι πολύ μεγάλη (μέγιστο %d χαρακτ.)."
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
msgstr "Η τοποθεσία είναι πολύ μεγάλη (μέγιστο 255 χαρακτ.)."
|
||||
@ -463,7 +463,7 @@ msgstr ""
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -592,7 +592,7 @@ msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "Διαγραφή"
|
||||
|
||||
@ -605,13 +605,13 @@ msgid "Crop"
|
||||
msgstr ""
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -684,7 +684,7 @@ msgstr "Ναί"
|
||||
msgid "Block this user"
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
msgstr ""
|
||||
|
||||
@ -756,7 +756,7 @@ msgstr ""
|
||||
#: actions/confirmaddress.php:114 actions/emailsettings.php:296
|
||||
#: actions/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
msgstr "Απέτυχε η ενημέρωση του χρήστη."
|
||||
@ -818,7 +818,7 @@ msgstr "Είσαι σίγουρος ότι θες να διαγράψεις αυ
|
||||
msgid "Do not delete this notice"
|
||||
msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:603
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:611
|
||||
msgid "Delete this notice"
|
||||
msgstr ""
|
||||
|
||||
@ -956,7 +956,7 @@ msgstr ""
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: actions/useradminpanel.php:313 lib/designsettings.php:256
|
||||
@ -1455,7 +1455,7 @@ msgstr ""
|
||||
msgid "A list of the users in this group."
|
||||
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"
|
||||
msgstr "Διαχειριστής"
|
||||
|
||||
@ -1544,7 +1544,7 @@ msgstr ""
|
||||
msgid "User is not blocked from group."
|
||||
msgstr ""
|
||||
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:77
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:86
|
||||
msgid "Error removing the block."
|
||||
msgstr ""
|
||||
|
||||
@ -1719,7 +1719,7 @@ msgstr ""
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1815,7 +1815,7 @@ msgstr "Λάθος όνομα χρήστη ή κωδικός"
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "Σύνδεση"
|
||||
@ -1927,7 +1927,7 @@ msgstr ""
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1935,7 +1935,7 @@ msgstr ""
|
||||
msgid "New notice"
|
||||
msgstr ""
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr ""
|
||||
|
||||
@ -2363,34 +2363,38 @@ msgstr "Τοποθεσία"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"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
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)."
|
||||
|
||||
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164
|
||||
#: actions/profilesettings.php:235 actions/siteadminpanel.php:164
|
||||
msgid "Timezone not selected."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:246 actions/tagother.php:178
|
||||
#: actions/profilesettings.php:253 actions/tagother.php:178
|
||||
#, php-format
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "Απέτυχε η αποθήκευση του προφίλ."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
#, fuzzy
|
||||
msgid "Couldn't save tags."
|
||||
msgstr "Αδύνατη η αποθήκευση του προφίλ."
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr ""
|
||||
|
||||
@ -2523,7 +2532,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr ""
|
||||
|
||||
@ -2661,7 +2670,7 @@ msgstr ""
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
@ -2849,7 +2858,7 @@ msgstr ""
|
||||
msgid "You already repeated that notice."
|
||||
msgstr "Αδυναμία διαγραφής αυτού του μηνύματος."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "Δημιουργία"
|
||||
@ -3940,16 +3949,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:319 classes/Notice.php:344
|
||||
#: classes/Notice.php:309 classes/Notice.php:334
|
||||
msgid "Problem saving notice."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Σφάλμα βάσης δεδομένων κατά την εισαγωγή απάντησης: %s"
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr ""
|
||||
@ -4005,129 +4014,129 @@ msgstr ""
|
||||
msgid "Untitled page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "Αρχή"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "Λογαριασμός"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Σύνδεση"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
#, fuzzy
|
||||
msgid "Connect to services"
|
||||
msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
msgid "Change site configuration"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr "Προσκάλεσε φίλους και συναδέλφους σου να γίνουν μέλη στο %s"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "Αποσύνδεση"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "Δημιουργία έναν λογαριασμού"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "Βοήθεια"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "Βοηθήστε με!"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "Περί"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "Συχνές ερωτήσεις"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Επικοινωνία"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, fuzzy, php-format
|
||||
msgid ""
|
||||
"**%%site.name%%** is a microblogging service brought to you by [%%site."
|
||||
@ -4136,13 +4145,13 @@ msgstr ""
|
||||
"To **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου) που "
|
||||
"έφερε κοντά σας το [%%site.broughtby%%](%%site.broughtbyurl%%). "
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, fuzzy, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr ""
|
||||
"Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου). "
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
|
||||
@ -4150,31 +4159,31 @@ msgid ""
|
||||
"org/licensing/licenses/agpl-3.0.html)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
msgid "Site content license"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
@ -4229,6 +4238,16 @@ msgstr ""
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr ""
|
||||
@ -4897,7 +4916,7 @@ msgid ""
|
||||
"users in conversation. People can send you messages for your eyes only."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
msgid "from"
|
||||
msgstr "από"
|
||||
|
||||
@ -4962,69 +4981,73 @@ msgstr ""
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr "Διαθέσιμοι χαρακτήρες"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "N"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
msgid "Repeated by"
|
||||
msgstr "Επαναλαμβάνεται από"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Ρυθμίσεις OpenID"
|
||||
|
@ -10,12 +10,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:42:35+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:11:01+0000\n"
|
||||
"Language-Team: British English\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (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-Language-Code: en-gb\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -201,11 +201,11 @@ msgstr "Could not update your design."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "You cannot block yourself!"
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "Block user failed."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr "Unblock user failed."
|
||||
|
||||
@ -317,31 +317,31 @@ msgid "Could not find target user."
|
||||
msgstr "Could not find target user."
|
||||
|
||||
#: 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
|
||||
msgid "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/newgroup.php:130 actions/profilesettings.php:231
|
||||
#: actions/newgroup.php:130 actions/profilesettings.php:238
|
||||
#: actions/register.php:208
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Nickname already in use. Try another one."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "Not a valid nickname."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "Homepage is not a valid URL."
|
||||
|
||||
#: 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
|
||||
msgid "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)"
|
||||
|
||||
#: 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
|
||||
msgid "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"
|
||||
msgstr "Not found"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "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"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "Delete"
|
||||
|
||||
@ -609,13 +609,13 @@ msgid "Crop"
|
||||
msgstr "Crop"
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -688,7 +688,7 @@ msgstr "Yes"
|
||||
msgid "Block this user"
|
||||
msgstr "Block this user"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "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/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "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"
|
||||
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"
|
||||
msgstr "Delete this notice"
|
||||
|
||||
@ -839,9 +839,8 @@ msgid "You can only delete local users."
|
||||
msgstr "You can only delete local users."
|
||||
|
||||
#: actions/deleteuser.php:110 actions/deleteuser.php:133
|
||||
#, fuzzy
|
||||
msgid "Delete user"
|
||||
msgstr "Delete"
|
||||
msgstr "Delete user"
|
||||
|
||||
#: actions/deleteuser.php:135
|
||||
msgid ""
|
||||
@ -865,23 +864,21 @@ msgid "Design settings for this StatusNet site."
|
||||
msgstr "Design settings for this StausNet site."
|
||||
|
||||
#: actions/designadminpanel.php:275
|
||||
#, fuzzy
|
||||
msgid "Invalid logo URL."
|
||||
msgstr "Invalid size."
|
||||
msgstr "nvalid logo URL."
|
||||
|
||||
#: actions/designadminpanel.php:279
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
msgid "Theme not available: %s"
|
||||
msgstr "This page is not available in a "
|
||||
msgstr "Theme not available: %s"
|
||||
|
||||
#: actions/designadminpanel.php:375
|
||||
msgid "Change logo"
|
||||
msgstr "Change logo"
|
||||
|
||||
#: actions/designadminpanel.php:380
|
||||
#, fuzzy
|
||||
msgid "Site logo"
|
||||
msgstr "Invite"
|
||||
msgstr "Site logo"
|
||||
|
||||
#: actions/designadminpanel.php:387
|
||||
#, fuzzy
|
||||
@ -965,7 +962,7 @@ msgstr "Reset back to default"
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: 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."
|
||||
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"
|
||||
msgstr "Admin"
|
||||
|
||||
@ -1568,7 +1565,7 @@ msgstr ""
|
||||
msgid "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."
|
||||
msgstr "Error removing the block."
|
||||
|
||||
@ -1750,7 +1747,7 @@ msgstr "Personal message"
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
msgstr "Optionally add a personal message to the invitation."
|
||||
|
||||
#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:222
|
||||
#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
|
||||
msgid "Send"
|
||||
msgstr "Send"
|
||||
|
||||
@ -1874,7 +1871,7 @@ msgstr "Incorrect username or password."
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "Login"
|
||||
@ -1986,7 +1983,7 @@ msgstr "Message sent"
|
||||
msgid "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"
|
||||
msgstr "Ajax Error"
|
||||
|
||||
@ -1994,7 +1991,7 @@ msgstr "Ajax Error"
|
||||
msgid "New notice"
|
||||
msgstr "New notice"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "Notice posted"
|
||||
|
||||
@ -2424,71 +2421,80 @@ msgstr "Location"
|
||||
msgid "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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "Tags"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
"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"
|
||||
msgstr "Language"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "Preferred language"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "Timezone"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "In which timezone are you?"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
"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
|
||||
msgid "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."
|
||||
msgstr "Timezone not selected."
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "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
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Invalid tag: \"%s\""
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "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."
|
||||
msgstr "Couldn't save profile."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "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."
|
||||
msgstr "Settings saved."
|
||||
|
||||
@ -2591,7 +2597,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr "Tag cloud"
|
||||
|
||||
@ -2730,7 +2736,7 @@ msgstr "Error with confirmation code."
|
||||
msgid "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
|
||||
msgid "Register"
|
||||
msgstr "Register"
|
||||
@ -2923,7 +2929,7 @@ msgstr "You can't repeat your own notice."
|
||||
msgid "You already repeated that notice."
|
||||
msgstr "You have already blocked this user."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "Created"
|
||||
@ -4049,16 +4055,16 @@ msgstr ""
|
||||
msgid "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."
|
||||
msgstr "Problem saving notice."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "DB error inserting reply: %s"
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, fuzzy, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "%1$s (%2$s)"
|
||||
@ -4113,130 +4119,130 @@ msgstr "%s - %s"
|
||||
msgid "Untitled page"
|
||||
msgstr "Untitled page"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr "Primary site navigation"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "Home"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr "Personal profile and friends timeline"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "Account"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr "Change your e-mail, avatar, password, profile"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Connect"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
#, fuzzy
|
||||
msgid "Connect to services"
|
||||
msgstr "Could not redirect to server: %s"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
#, fuzzy
|
||||
msgid "Change site configuration"
|
||||
msgstr "Primary site navigation"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "Invite"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "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"
|
||||
msgstr "Logout"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr "Logout from the site"
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "Create an account"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "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"
|
||||
msgstr "Help"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "Help me!"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "Search"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "Search for people or text"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr "Site notice"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr "Local views"
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr "Page notice"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr "Secondary site navigation"
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "About"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "F.A.Q."
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "Privacy"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "Source"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr "Badge"
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr "StatusNet software licence"
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%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."
|
||||
"broughtby%%](%%site.broughtbyurl%%)."
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** is a microblogging service."
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"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."
|
||||
"org/licensing/licenses/agpl-3.0.html)."
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
msgid "Site content license"
|
||||
msgstr "Site content license"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr "All "
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr "licence."
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr "Pagination"
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr "After"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr "Before"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "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"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "Command results"
|
||||
@ -5033,7 +5049,7 @@ msgid ""
|
||||
"users in conversation. People can send you messages for your eyes only."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
#, fuzzy
|
||||
msgid "from"
|
||||
msgstr "from"
|
||||
@ -5098,71 +5114,75 @@ msgstr "Send a direct notice"
|
||||
msgid "To"
|
||||
msgstr "To"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr "Available characters"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr "Send a notice"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "What's up, %s?"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
#, fuzzy
|
||||
msgid "N"
|
||||
msgstr "No"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr "in context"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "Created"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Reply to this notice"
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "Reply"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Notice deleted."
|
||||
|
@ -11,12 +11,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:42:38+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:11:06+0000\n"
|
||||
"Language-Team: Spanish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: es\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -196,11 +196,11 @@ msgstr "No se pudo actualizar el usuario."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "¡No puedes bloquearte a tí mismo!"
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "Falló bloquear usuario."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr "Falló desbloquear usuario."
|
||||
|
||||
@ -312,7 +312,7 @@ msgid "Could not find target user."
|
||||
msgstr "No se pudo encontrar ningún usuario de destino."
|
||||
|
||||
#: actions/apigroupcreate.php:164 actions/editgroup.php:182
|
||||
#: actions/newgroup.php:126 actions/profilesettings.php:208
|
||||
#: actions/newgroup.php:126 actions/profilesettings.php:215
|
||||
#: actions/register.php:205
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr ""
|
||||
@ -320,25 +320,25 @@ msgstr ""
|
||||
"espacios."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "El apodo ya existe. Prueba otro."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "Apodo no válido"
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "La página de inicio no es un URL válido."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
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)."
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
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"
|
||||
msgstr "No encontrado"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -598,7 +598,7 @@ msgid "Preview"
|
||||
msgstr "Vista previa"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "Borrar"
|
||||
|
||||
@ -611,13 +611,13 @@ msgid "Crop"
|
||||
msgstr "Cortar"
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -691,7 +691,7 @@ msgstr "Sí"
|
||||
msgid "Block this user"
|
||||
msgstr "Bloquear este usuario."
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
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/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
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"
|
||||
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"
|
||||
msgstr "Borrar este aviso"
|
||||
|
||||
@ -971,7 +971,7 @@ msgstr ""
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: 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."
|
||||
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"
|
||||
msgstr "Admin"
|
||||
|
||||
@ -1569,7 +1569,7 @@ msgstr ""
|
||||
msgid "User is not blocked from group."
|
||||
msgstr "El usuario te ha bloqueado."
|
||||
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:77
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:86
|
||||
#, fuzzy
|
||||
msgid "Error removing the block."
|
||||
msgstr "Error al sacar bloqueo."
|
||||
@ -1757,7 +1757,7 @@ msgstr "Mensaje Personal"
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
msgstr "Opcionalmente añada un mensaje personalizado a su invitación."
|
||||
|
||||
#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:222
|
||||
#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
|
||||
msgid "Send"
|
||||
msgstr "Enviar"
|
||||
|
||||
@ -1884,7 +1884,7 @@ msgstr "Nombre de usuario o contraseña incorrectos."
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "Inicio de sesión"
|
||||
@ -1999,7 +1999,7 @@ msgstr "Mensaje"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "Error de Ajax"
|
||||
|
||||
@ -2007,7 +2007,7 @@ msgstr "Error de Ajax"
|
||||
msgid "New notice"
|
||||
msgstr "Nuevo aviso"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
#, fuzzy
|
||||
msgid "Notice posted"
|
||||
msgstr "Aviso publicado"
|
||||
@ -2454,72 +2454,81 @@ msgstr "Ubicación"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "Tags"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
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"
|
||||
msgstr "Idioma"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "Lenguaje de preferencia"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "Zona horaria"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "En que zona horaria se encuentra normalmente?"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
"Suscribirse automáticamente a quien quiera que se suscriba a mí (es mejor "
|
||||
"para no-humanos)"
|
||||
|
||||
#: actions/profilesettings.php:221 actions/register.php:223
|
||||
#: actions/profilesettings.php:228 actions/register.php:223
|
||||
#, fuzzy, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
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."
|
||||
msgstr "Zona horaria no seleccionada"
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
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
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Tag no válido: '%s' "
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "No se pudo guardar el perfil."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
#, fuzzy
|
||||
msgid "Couldn't save 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."
|
||||
msgstr "Se guardó configuración."
|
||||
|
||||
@ -2618,7 +2627,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr "Nube de tags"
|
||||
|
||||
@ -2761,7 +2770,7 @@ msgstr "Error con el código de confirmación."
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
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."
|
||||
msgstr "Ya has bloqueado este usuario."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "Crear"
|
||||
@ -4109,16 +4118,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
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."
|
||||
msgstr "Hubo un problema al guardar el aviso."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Error de BD al insertar respuesta: %s"
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
@ -4174,129 +4183,129 @@ msgstr "%s - %s"
|
||||
msgid "Untitled page"
|
||||
msgstr "Página sin título"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr "Navegación de sitio primario"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "Inicio"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr "Perfil personal y línea de tiempo de amigos"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "Cuenta"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr "Cambia tu correo electrónico, avatar, contraseña, perfil"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Conectarse"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect to services"
|
||||
msgstr "Conectar a los servicios"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
#, fuzzy
|
||||
msgid "Change site configuration"
|
||||
msgstr "Navegación de sitio primario"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "Invitar"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr "Invita a amigos y colegas a unirse a %s"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "Salir"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr "Salir de sitio"
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "Crear una cuenta"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr "Ingresar a sitio"
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "Ayuda"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "Ayúdame!"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "Buscar personas o texto"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr "Aviso de sitio"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr "Vistas locales"
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr "Aviso de página"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr "Navegación de sitio secundario"
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "Acerca de"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "Preguntas Frecuentes"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "Privacidad"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "Fuente"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Ponerse en contacto"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr "Insignia"
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr "Licencia de software de StatusNet"
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%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.broughtbyurl%%)."
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** es un servicio de microblogueo."
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"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/"
|
||||
"licensing/licenses/agpl-3.0.html)."
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
msgid "Site content license"
|
||||
msgstr "Licencia de contenido del sitio"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr "Todo"
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr "Licencia."
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr "Paginación"
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr "Después"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr "Antes"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Hubo problemas con tu clave de sesión."
|
||||
|
||||
@ -4404,6 +4413,16 @@ msgstr ""
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "Resultados de comando"
|
||||
@ -5090,7 +5109,7 @@ msgid ""
|
||||
"users in conversation. People can send you messages for your eyes only."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
msgid "from"
|
||||
msgstr "desde"
|
||||
|
||||
@ -5154,72 +5173,76 @@ msgstr "Enviar un aviso directo"
|
||||
msgid "To"
|
||||
msgstr "Para"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
#, fuzzy
|
||||
msgid "Available characters"
|
||||
msgstr "Caracteres disponibles"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
#, fuzzy
|
||||
msgid "Send a notice"
|
||||
msgstr "Enviar un aviso"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "¿Qué tal, %s?"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "N"
|
||||
msgstr "N"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr "S"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr "E"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr "en"
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr "en contexto"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "Crear"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Responder este aviso."
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "Responder"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Aviso borrado"
|
||||
|
@ -10,8 +10,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:42:44+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:11:18+0000\n"
|
||||
"Last-Translator: Ahmad Sufi Mahmudi\n"
|
||||
"Language-Team: Persian\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -20,7 +20,7 @@ msgstr ""
|
||||
"X-Language-Code: fa\n"
|
||||
"X-Message-Group: out-statusnet\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"
|
||||
|
||||
#: actions/all.php:63 actions/public.php:97 actions/replies.php:92
|
||||
@ -195,11 +195,11 @@ msgstr "نمیتوان طرحتان بههنگامسازی کرد."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "شما نمیتوانید خودتان رو مسدود کنید!"
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "مسدود کردن کاربر شکست خورد."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr "باز کردن کاربر ناموفق بود."
|
||||
|
||||
@ -311,31 +311,31 @@ msgid "Could not find target user."
|
||||
msgstr "نمیتوان کاربر هدف را پیدا کرد."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr "لقب باید شامل حروف کوچک و اعداد و بدون فاصله باشد."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "این لقب در حال حاضر ثبت شده است. لطفا یکی دیگر انتخاب کنید."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "لقب نا معتبر."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "برگهٔ آغازین یک نشانی معتبر نیست."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "نام کامل طولانی است (۲۵۵ حرف در حالت بیشینه(."
|
||||
@ -346,7 +346,7 @@ msgid "Description is too long (max %d chars)."
|
||||
msgstr "توصیف بسیار زیاد است (حداکثر %d حرف)."
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
msgstr "مکان طولانی است (حداکثر ۲۵۵ حرف)"
|
||||
@ -461,7 +461,7 @@ msgstr "خیلی طولانی است. حداکثر طول مجاز پیام %d
|
||||
msgid "Not found"
|
||||
msgstr "یافت نشد"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr "حداکثر طول پیام %d حرف است که شامل ضمیمه نیز میباشد"
|
||||
@ -591,7 +591,7 @@ msgid "Preview"
|
||||
msgstr "پیشنمایش"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "حذف"
|
||||
|
||||
@ -604,13 +604,13 @@ msgid "Crop"
|
||||
msgstr "برش"
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -684,7 +684,7 @@ msgstr "بله"
|
||||
msgid "Block this user"
|
||||
msgstr "کاربر را مسدود کن"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
msgstr ""
|
||||
|
||||
@ -756,7 +756,7 @@ msgstr "آن نشانی در حال حاضر تصدیق شده است."
|
||||
#: actions/confirmaddress.php:114 actions/emailsettings.php:296
|
||||
#: actions/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
msgstr "نمیتوان کاربر را به روز کرد."
|
||||
@ -818,7 +818,7 @@ msgstr "آیا اطمینان دارید که میخواهید این پیا
|
||||
msgid "Do not delete this notice"
|
||||
msgstr "این پیام را پاک نکن"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:603
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:611
|
||||
msgid "Delete this notice"
|
||||
msgstr "این پیام را پاک کن"
|
||||
|
||||
@ -956,7 +956,7 @@ msgstr "برگشت به حالت پیش گزیده"
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: actions/useradminpanel.php:313 lib/designsettings.php:256
|
||||
@ -1445,7 +1445,7 @@ msgstr "اعضای گروه %s، صفحهٔ %d"
|
||||
msgid "A list of the users in this group."
|
||||
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"
|
||||
msgstr "مدیر"
|
||||
|
||||
@ -1541,7 +1541,7 @@ msgstr "تنها یک مدیر توانایی برداشتن منع کاربرا
|
||||
msgid "User is not blocked from group."
|
||||
msgstr "کاربر از گروه منع نشده است."
|
||||
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:77
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:86
|
||||
msgid "Error removing the block."
|
||||
msgstr "اشکال در پاکسازی"
|
||||
|
||||
@ -1722,7 +1722,7 @@ msgstr "پیام خصوصی"
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
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"
|
||||
msgstr "فرستادن"
|
||||
|
||||
@ -1818,7 +1818,7 @@ msgstr "نام کاربری یا رمز عبور نادرست."
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "ورود"
|
||||
@ -1929,7 +1929,7 @@ msgstr "پیام فرستادهشد"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "اشکال آژاکسی"
|
||||
|
||||
@ -1937,7 +1937,7 @@ msgstr "اشکال آژاکسی"
|
||||
msgid "New notice"
|
||||
msgstr "آگهی جدید"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "آگهی فرستادهشد."
|
||||
|
||||
@ -2017,7 +2017,7 @@ msgstr "نوع محتوا "
|
||||
|
||||
#: actions/oembed.php:160
|
||||
msgid "Only "
|
||||
msgstr "فقط"
|
||||
msgstr " فقط"
|
||||
|
||||
#: actions/oembed.php:181 actions/oembed.php:200 lib/api.php:1031
|
||||
#: lib/api.php:1059 lib/api.php:1169
|
||||
@ -2368,69 +2368,78 @@ msgstr "موقعیت"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "برچسبها"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "زبان"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "زبان برگزیده"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "منطقهٔزمانی"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "شما معمولا در کدام منطقه ی زمانی هستید؟"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:221 actions/register.php:223
|
||||
#: actions/profilesettings.php:228 actions/register.php:223
|
||||
#, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164
|
||||
#: actions/profilesettings.php:235 actions/siteadminpanel.php:164
|
||||
msgid "Timezone not selected."
|
||||
msgstr "منطقهی زمانی انتخاب نشده است."
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
msgstr "کلام بسیار طولانی است( حداکثر ۵۰ کاراکتر)"
|
||||
|
||||
#: actions/profilesettings.php:246 actions/tagother.php:178
|
||||
#: actions/profilesettings.php:253 actions/tagother.php:178
|
||||
#, php-format
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "نشان نادرست »%s«"
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "نمیتوان شناسه را ذخیره کرد."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
msgstr "نمیتوان نشان را ذخیره کرد."
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr "تنظیمات ذخیره شد."
|
||||
|
||||
@ -2523,7 +2532,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr ""
|
||||
|
||||
@ -2663,7 +2672,7 @@ msgstr "با عرض تاسف، کد دعوت نا معتبر است."
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "ثبت نام"
|
||||
@ -2831,7 +2840,7 @@ msgstr "شما نمی توانید آگهی خودتان را تکرار کنی
|
||||
msgid "You already repeated that notice."
|
||||
msgstr "شما قبلا آن آگهی را تکرار کردید."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
msgid "Repeated"
|
||||
msgstr ""
|
||||
|
||||
@ -3911,16 +3920,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
msgstr "شما از فرستادن پست در این سایت مردود شدید ."
|
||||
|
||||
#: classes/Notice.php:319 classes/Notice.php:344
|
||||
#: classes/Notice.php:309 classes/Notice.php:334
|
||||
msgid "Problem saving notice."
|
||||
msgstr "مشکل در ذخیره کردن آگهی."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr ""
|
||||
@ -3975,140 +3984,140 @@ msgstr ""
|
||||
msgid "Untitled page"
|
||||
msgstr "صفحه ی بدون عنوان"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "خانه"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "حساب کاربری"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr "آدرس ایمیل، آواتار، کلمه ی عبور، پروفایل خود را تغییر دهید"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "وصلشدن"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect to services"
|
||||
msgstr "متصل شدن به خدمات"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
msgid "Change site configuration"
|
||||
msgstr "تغییر پیکربندی سایت"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "دعوتکردن"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr " به شما ملحق شوند %s دوستان و همکاران را دعوت کنید تا در"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "خروج"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr "خارج شدن از سایت ."
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "یک حساب کاربری بسازید"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr "ورود به وبگاه"
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "کمک"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "به من کمک کنید!"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "جستوجو"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "جستجو برای شخص با متن"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr "خبر سایت"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr "دید محلی"
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr "خبر صفحه"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "دربارهٔ"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "سوالهای رایج"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "خصوصی"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "منبع"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "تماس"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr "StatusNet مجوز نرم افزار"
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%site.name%%** is a microblogging service brought to you by [%%site."
|
||||
"broughtby%%](%%site.broughtbyurl%%). "
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
|
||||
@ -4116,31 +4125,31 @@ msgid ""
|
||||
"org/licensing/licenses/agpl-3.0.html)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
msgid "Site content license"
|
||||
msgstr "مجوز محتویات سایت"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr "همه "
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr "مجوز."
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr "صفحه بندى"
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr "بعد از"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr "قبل از"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
@ -4192,6 +4201,16 @@ msgstr ""
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "نتیجه دستور"
|
||||
@ -4370,29 +4389,24 @@ msgid "You are not subscribed to anyone."
|
||||
msgstr "شما توسط هیچ کس تصویب نشده اید ."
|
||||
|
||||
#: lib/command.php:687
|
||||
#, fuzzy
|
||||
msgid "You are subscribed to this person:"
|
||||
msgid_plural "You are subscribed to these people:"
|
||||
msgstr[0] "هم اکنون شما این کاربران را دنبال میکنید: "
|
||||
|
||||
#: lib/command.php:707
|
||||
#, fuzzy
|
||||
msgid "No one is subscribed to you."
|
||||
msgstr "هیچکس شما را تایید نکرده ."
|
||||
|
||||
#: lib/command.php:709
|
||||
#, fuzzy
|
||||
msgid "This person is subscribed to you:"
|
||||
msgid_plural "These people are subscribed to you:"
|
||||
msgstr[0] "هیچکس شما را تایید نکرده ."
|
||||
|
||||
#: lib/command.php:729
|
||||
#, fuzzy
|
||||
msgid "You are not a member of any groups."
|
||||
msgstr "شما در هیچ گروهی عضو نیستید ."
|
||||
|
||||
#: lib/command.php:731
|
||||
#, fuzzy
|
||||
msgid "You are a member of this group:"
|
||||
msgid_plural "You are a member of these groups:"
|
||||
msgstr[0] "شما یک عضو این گروه نیستید."
|
||||
@ -4866,7 +4880,7 @@ msgid ""
|
||||
"users in conversation. People can send you messages for your eyes only."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
msgid "from"
|
||||
msgstr "از"
|
||||
|
||||
@ -4931,69 +4945,73 @@ msgstr "یک آگهی مستقیم بفرستید."
|
||||
msgid "To"
|
||||
msgstr "به"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr "کاراکترهای موجود"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr "یک آگهی بفرستید"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "چه شده %s ?"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr "ضمیمه کردن"
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr "یک فایل ضمیمه کنید"
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "N"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr "در"
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr "در زمینه"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
msgid "Repeated by"
|
||||
msgstr "تکرار از"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "به این آگهی جواب دهید"
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "جواب دادن"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
msgid "Notice repeated"
|
||||
msgstr "آگهی تکرار شد"
|
||||
|
||||
|
@ -10,12 +10,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:42:41+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:11:14+0000\n"
|
||||
"Language-Team: Finnish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: fi\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -198,11 +198,11 @@ msgstr "Ei voitu päivittää käyttäjää."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "Et voi lopettaa itsesi tilausta!"
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "Käyttäjän esto epäonnistui."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
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ä."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr ""
|
||||
@ -325,25 +325,25 @@ msgstr ""
|
||||
"välilyöntiä."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Tunnus on jo käytössä. Yritä toista tunnusta."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "Tuo ei ole kelvollinen tunnus."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "Kotisivun verkko-osoite ei ole toimiva."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
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ä)."
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
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"
|
||||
msgstr "Ei löytynyt"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr "Maksimikoko päivitykselle on %d merkkiä, mukaan lukien URL-osoite."
|
||||
@ -601,7 +601,7 @@ msgid "Preview"
|
||||
msgstr "Esikatselu"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "Poista"
|
||||
|
||||
@ -614,13 +614,13 @@ msgid "Crop"
|
||||
msgstr "Rajaa"
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -693,7 +693,7 @@ msgstr "Kyllä"
|
||||
msgid "Block this user"
|
||||
msgstr "Estä tämä käyttäjä"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
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/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
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"
|
||||
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"
|
||||
msgstr "Poista tämä päivitys"
|
||||
|
||||
@ -973,7 +973,7 @@ msgstr ""
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: 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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
msgstr "Tapahtui virhe, kun estoa poistettiin."
|
||||
|
||||
@ -1751,7 +1751,7 @@ msgstr "Henkilökohtainen viesti"
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
msgstr "Voit myös lisätä oman viestisi kutsuun"
|
||||
|
||||
#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:222
|
||||
#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
|
||||
msgid "Send"
|
||||
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."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "Kirjaudu sisään"
|
||||
@ -1988,7 +1988,7 @@ msgstr "Viesti lähetetty"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "Ajax-virhe"
|
||||
|
||||
@ -1996,7 +1996,7 @@ msgstr "Ajax-virhe"
|
||||
msgid "New notice"
|
||||
msgstr "Uusi päivitys"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "Päivitys lähetetty"
|
||||
|
||||
@ -2439,73 +2439,82 @@ msgstr "Kotipaikka"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "Tagit"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
"Kuvaa itseäsi henkilötageilla (sanoja joissa voi olla muita kirjaimia kuin "
|
||||
"ää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"
|
||||
msgstr "Kieli"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "Ensisijainen kieli"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "Aikavyöhyke"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "Missä aikavyöhykkeessä olet normaalisti?"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
"Tilaa automaattisesti kaikki, jotka tilaavat päivitykseni (ei sovi hyvin "
|
||||
"ihmiskäyttäjille)"
|
||||
|
||||
#: actions/profilesettings.php:221 actions/register.php:223
|
||||
#: actions/profilesettings.php:228 actions/register.php:223
|
||||
#, fuzzy, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
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."
|
||||
msgstr "Aikavyöhykettä ei ole valittu."
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
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
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Virheellinen tagi: \"%s\""
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "Ei voitu tallentaa profiilia."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
msgstr "Tageja ei voitu tallentaa."
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr "Asetukset tallennettu."
|
||||
|
||||
@ -2602,7 +2611,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr "Tagipilvi"
|
||||
|
||||
@ -2742,7 +2751,7 @@ msgstr "Virheellinen kutsukoodin."
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "Rekisteröidy"
|
||||
@ -2942,7 +2951,7 @@ msgstr "Et voi rekisteröityä, jos et hyväksy lisenssiehtoja."
|
||||
msgid "You already repeated that notice."
|
||||
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
|
||||
msgid "Repeated"
|
||||
msgstr "Luotu"
|
||||
@ -4081,16 +4090,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
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."
|
||||
msgstr "Ongelma päivityksen tallentamisessa."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Tietokantavirhe tallennettaessa vastausta: %s"
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, fuzzy, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "%1$s (%2$s)"
|
||||
@ -4146,131 +4155,131 @@ msgstr "%s - %s"
|
||||
msgid "Untitled page"
|
||||
msgstr "Nimetön sivu"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr "Ensisijainen sivunavigointi"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "Koti"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr "Henkilökohtainen profiili ja kavereiden aikajana"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "Käyttäjätili"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr "Muuta sähköpostiosoitettasi, kuvaasi, salasanaasi, profiiliasi"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Yhdistä"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
#, fuzzy
|
||||
msgid "Connect to services"
|
||||
msgstr "Ei voitu uudelleenohjata palvelimelle: %s"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
#, fuzzy
|
||||
msgid "Change site configuration"
|
||||
msgstr "Ensisijainen sivunavigointi"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "Kutsu"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr "Kutsu kavereita ja työkavereita liittymään palveluun %s"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "Kirjaudu ulos"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr "Kirjaudu ulos palvelusta"
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "Luo uusi käyttäjätili"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr "Kirjaudu sisään palveluun"
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "Ohjeet"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "Auta minua!"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "Haku"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "Hae ihmisiä tai tekstiä"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr "Palvelun ilmoitus"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr "Paikalliset näkymät"
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr "Sivuilmoitus"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr "Toissijainen sivunavigointi"
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "Tietoa"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "UKK"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "Yksityisyys"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "Lähdekoodi"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Ota yhteyttä"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
#, fuzzy
|
||||
msgid "Badge"
|
||||
msgstr "Tönäise"
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr "StatusNet-ohjelmiston lisenssi"
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%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.broughtbyurl%%). "
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** on mikroblogipalvelu. "
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"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://"
|
||||
"www.fsf.org/licensing/licenses/agpl-3.0.html)."
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
#, fuzzy
|
||||
msgid "Site content license"
|
||||
msgstr "StatusNet-ohjelmiston lisenssi"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr "Kaikki "
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr "lisenssi."
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr "Sivutus"
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr "Myöhemmin"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr "Aiemmin"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Istuntoavaimesi kanssa oli ongelma."
|
||||
|
||||
@ -4380,6 +4389,16 @@ msgstr ""
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "Komennon tulos"
|
||||
@ -5076,7 +5095,7 @@ msgid ""
|
||||
"users in conversation. People can send you messages for your eyes only."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
#, fuzzy
|
||||
msgid "from"
|
||||
msgstr " lähteestä "
|
||||
@ -5141,72 +5160,76 @@ msgstr "Lähetä suora viesti"
|
||||
msgid "To"
|
||||
msgstr "Vastaanottaja"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr "Sallitut merkit"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr "Lähetä päivitys"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "Mitä teet juuri nyt, %s?"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
#, fuzzy
|
||||
msgid "N"
|
||||
msgstr "Ei"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
#, fuzzy
|
||||
msgid "in context"
|
||||
msgstr "Ei sisältöä!"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "Luotu"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Vastaa tähän päivitykseen"
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "Vastaus"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Päivitys on poistettu."
|
||||
|
@ -13,12 +13,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:42:51+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:11:23+0000\n"
|
||||
"Language-Team: French\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: fr\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -204,11 +204,11 @@ msgstr "Impossible de mettre à jour votre conception."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "Vous ne pouvez pas vous bloquer vous-même !"
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "Le blocage de l’utilisateur a échoué."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr "Le déblocage de l’utilisateur a échoué."
|
||||
|
||||
@ -322,7 +322,7 @@ msgid "Could not find target user."
|
||||
msgstr "Impossible de trouver l’utilisateur cible."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr ""
|
||||
@ -330,25 +330,25 @@ msgstr ""
|
||||
"chiffres, sans espaces."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Pseudo déjà utilisé. Essayez-en un autre."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "Pseudo invalide."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "L’adresse du site personnel n’est pas un URL valide. "
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
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)."
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
msgstr "Emplacement trop long (maximum de 255 caractères)."
|
||||
@ -474,7 +474,7 @@ msgstr "C’est trop long ! La taille maximale de l’avis est de %d caractères
|
||||
msgid "Not found"
|
||||
msgstr "Non trouvé"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -607,7 +607,7 @@ msgid "Preview"
|
||||
msgstr "Aperçu"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "Supprimer"
|
||||
|
||||
@ -620,13 +620,13 @@ msgid "Crop"
|
||||
msgstr "Recadrer"
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -701,7 +701,7 @@ msgstr "Oui"
|
||||
msgid "Block this user"
|
||||
msgstr "Bloquer cet utilisateur"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
msgstr "Impossible d’enregistrer 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/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
msgstr "Impossible de mettre à jour l’utilisateur."
|
||||
@ -835,7 +835,7 @@ msgstr "Êtes-vous sûr(e) de vouloir supprimer cet avis ?"
|
||||
msgid "Do not delete this notice"
|
||||
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"
|
||||
msgstr "Supprimer cet avis"
|
||||
|
||||
@ -975,7 +975,7 @@ msgstr "Revenir aux valeurs par défaut"
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: 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."
|
||||
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"
|
||||
msgstr "Administrer"
|
||||
|
||||
@ -1577,7 +1577,7 @@ msgstr "Seul un administrateur peut débloquer les membres du groupes."
|
||||
msgid "User is not blocked from group."
|
||||
msgstr "Cet utilisateur n’est 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."
|
||||
msgstr "Erreur lors de l’annulation du blocage."
|
||||
|
||||
@ -1768,7 +1768,7 @@ msgstr "Message personnel"
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
msgstr "Ajouter un message personnel à l’invitation (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"
|
||||
msgstr "Envoyer"
|
||||
|
||||
@ -1894,7 +1894,7 @@ msgstr ""
|
||||
"Erreur lors de la mise en place de l'utilisateur. Vous n'y êtes probablement "
|
||||
"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
|
||||
msgid "Login"
|
||||
msgstr "Ouvrir une session"
|
||||
@ -2012,7 +2012,7 @@ msgstr "Message envoyé"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "Erreur Ajax"
|
||||
|
||||
@ -2020,7 +2020,7 @@ msgstr "Erreur Ajax"
|
||||
msgid "New notice"
|
||||
msgstr "Nouvel avis"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "Avis publié"
|
||||
|
||||
@ -2454,73 +2454,81 @@ msgstr "Emplacement"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "Marques"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
"Marques pour vous-même (lettres, chiffres, -, ., et _), séparées par des "
|
||||
"virgules ou des espaces"
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "Langue"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "Langue préférée"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "Fuseau horaire"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "Quel est votre fuseau horaire habituel ?"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
"M’abonner automatiquement à tous ceux qui s’abonnent à moi (recommandé pour "
|
||||
"les utilisateurs non-humains)"
|
||||
|
||||
#: actions/profilesettings.php:221 actions/register.php:223
|
||||
#: actions/profilesettings.php:228 actions/register.php:223
|
||||
#, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
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."
|
||||
msgstr "Aucun fuseau horaire n’a été choisi."
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
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
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Marque invalide : « %s »"
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
msgstr "Impossible de mettre à jour l’auto-abonnement."
|
||||
|
||||
#: actions/profilesettings.php:328
|
||||
#: actions/profilesettings.php:354
|
||||
msgid "Couldn't save location prefs."
|
||||
msgstr "Impossible d’enregistrer les préférences de localisation."
|
||||
|
||||
#: actions/profilesettings.php:366
|
||||
msgid "Couldn't save profile."
|
||||
msgstr "Impossible d’enregistrer le profil."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
msgstr "Impossible d’enregistrer les marques."
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr "Préférences enregistrées."
|
||||
|
||||
@ -2627,7 +2635,7 @@ msgstr ""
|
||||
"Pourquoi ne pas [créer un compte](%%action.register%%) et être le premier à "
|
||||
"en poster un !"
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr "Nuage de marques"
|
||||
|
||||
@ -2771,7 +2779,7 @@ msgstr "Désolé, code d’invitation invalide."
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "Créer un compte"
|
||||
@ -2964,7 +2972,7 @@ msgstr "Vous ne pouvez pas reprendre votre propre avis."
|
||||
msgid "You already repeated that notice."
|
||||
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"
|
||||
msgstr "Repris"
|
||||
|
||||
@ -4126,16 +4134,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this 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."
|
||||
msgstr "Problème lors de l’enregistrement de l’avis."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %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
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
@ -4190,128 +4198,128 @@ msgstr "%s - %s"
|
||||
msgid "Untitled page"
|
||||
msgstr "Page sans nom"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr "Navigation primaire du site"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "Accueil"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr "Profil personnel et flux des amis"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "Compte"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr "Modifier votre courriel, avatar, mot de passe, profil"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Connecter"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect to services"
|
||||
msgstr "Se connecter aux services"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
msgid "Change site configuration"
|
||||
msgstr "Modifier la configuration du site"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "Inviter"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr "Inviter des amis et collègues à vous rejoindre dans %s"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "Fermeture de session"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr "Fermer la session"
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "Créer un compte"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr "Ouvrir une session"
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "Aide"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "À l’aide !"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "Rechercher"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "Rechercher des personnes ou du texte"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr "Notice du site"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr "Vues locales"
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr "Avis de la page"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr "Navigation secondaire du site"
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "À propos"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "FAQ"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr "CGU"
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "Confidentialité"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "Source"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr "Insigne"
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr "Licence du logiciel StatusNet"
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%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.broughtby%%](%%site.broughtbyurl%%)."
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** est un service de micro-blogging."
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"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] "
|
||||
"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)."
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
msgid "Site content license"
|
||||
msgstr "Licence du contenu du site"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr "Tous "
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr "licence."
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr "Pagination"
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr "Après"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr "Avant"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
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"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "Résultats de la commande"
|
||||
@ -5215,7 +5233,7 @@ msgstr ""
|
||||
"pour démarrer des conversations avec d’autres utilisateurs. Ceux-ci peuvent "
|
||||
"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"
|
||||
msgstr "de"
|
||||
|
||||
@ -5283,69 +5301,73 @@ msgstr "Envoyer un message direct"
|
||||
msgid "To"
|
||||
msgstr "À"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr "Caractères restants"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr "Envoyer un avis"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "Quoi de neuf, %s ?"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr "Attacher"
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
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
|
||||
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"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "N"
|
||||
msgstr "N"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr "S"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr "E"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr "O"
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr "chez"
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr "dans le contexte"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
msgid "Repeated by"
|
||||
msgstr "Repris par"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Répondre à cet avis"
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "Répondre"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
msgid "Notice repeated"
|
||||
msgstr "Avis repris"
|
||||
|
||||
@ -5475,9 +5497,8 @@ msgid "Popular"
|
||||
msgstr "Populaires"
|
||||
|
||||
#: lib/repeatform.php:107
|
||||
#, fuzzy
|
||||
msgid "Repeat this notice?"
|
||||
msgstr "Reprendre cet avis"
|
||||
msgstr "Reprendre cet avis ?"
|
||||
|
||||
#: lib/repeatform.php:132
|
||||
msgid "Repeat this notice"
|
||||
|
@ -8,12 +8,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:42:54+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:11:28+0000\n"
|
||||
"Language-Team: Irish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: ga\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -195,11 +195,11 @@ msgstr "Non se puido actualizar o usuario."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "Non se puido actualizar o usuario."
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "Bloqueo de usuario fallido."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr "Desbloqueo de usuario fallido."
|
||||
|
||||
@ -320,31 +320,31 @@ msgid "Could not find target user."
|
||||
msgstr "Non se puido atopar ningún estado"
|
||||
|
||||
#: 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
|
||||
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."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "Non é un alcume válido."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "A páxina persoal semella que non é unha URL válida."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
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.)."
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
msgstr "A localización é demasiado longa (max 255 car.)."
|
||||
@ -475,7 +475,7 @@ msgstr ""
|
||||
msgid "Not found"
|
||||
msgstr "Non atopado"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -607,7 +607,7 @@ msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
#, fuzzy
|
||||
msgid "Delete"
|
||||
msgstr "eliminar"
|
||||
@ -621,13 +621,13 @@ msgid "Crop"
|
||||
msgstr ""
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -704,7 +704,7 @@ msgstr "Si"
|
||||
msgid "Block this user"
|
||||
msgstr "Bloquear usuario"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
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/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
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"
|
||||
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
|
||||
msgid "Delete this notice"
|
||||
msgstr "Eliminar chío"
|
||||
@ -995,7 +995,7 @@ msgstr ""
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: actions/useradminpanel.php:313 lib/designsettings.php:256
|
||||
@ -1512,7 +1512,7 @@ msgstr ""
|
||||
msgid "A list of the users in this group."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1605,7 +1605,7 @@ msgstr ""
|
||||
msgid "User is not blocked from group."
|
||||
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."
|
||||
msgstr "Acounteceu un erro borrando o bloqueo."
|
||||
|
||||
@ -1789,7 +1789,7 @@ msgstr "Mensaxe persoal"
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
msgstr "Opcionalmente engadir unha mensaxe persoal á invitación."
|
||||
|
||||
#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:222
|
||||
#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
|
||||
msgid "Send"
|
||||
msgstr "Enviar"
|
||||
|
||||
@ -1916,7 +1916,7 @@ msgstr "Usuario ou contrasinal incorrectos."
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "Inicio de sesión"
|
||||
@ -2031,7 +2031,7 @@ msgstr "Non hai mensaxes de texto!"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "Erro de Ajax"
|
||||
|
||||
@ -2039,7 +2039,7 @@ msgstr "Erro de Ajax"
|
||||
msgid "New notice"
|
||||
msgstr "Novo chío"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "Chío publicado"
|
||||
|
||||
@ -2482,73 +2482,82 @@ msgstr "Localización"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "Tags"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
"Etiquetas para o teu usuario (letras, números, -, ., e _), separados por "
|
||||
"coma ou espazo"
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "Linguaxe"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "Linguaxe preferida"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "Fuso Horario"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "En que fuso horario estas normalmente?"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
"Suscribirse automáticamente a calquera que se suscriba a min (o mellor para "
|
||||
"non humáns)"
|
||||
|
||||
#: actions/profilesettings.php:221 actions/register.php:223
|
||||
#: actions/profilesettings.php:228 actions/register.php:223
|
||||
#, fuzzy, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
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."
|
||||
msgstr "Fuso Horario non seleccionado"
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
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
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Etiqueta inválida: '%s'"
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "Non se puido gardar o perfil."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
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."
|
||||
msgstr "Configuracións gardadas."
|
||||
|
||||
@ -2653,7 +2662,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr ""
|
||||
|
||||
@ -2792,7 +2801,7 @@ msgstr "Acounteceu un erro co código de confirmación."
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "Rexistrar"
|
||||
@ -2993,7 +3002,7 @@ msgstr "Non podes rexistrarte se non estas de acordo coa licenza."
|
||||
msgid "You already repeated that notice."
|
||||
msgstr "Xa bloqueaches a este usuario."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "Crear"
|
||||
@ -4154,16 +4163,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
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."
|
||||
msgstr "Aconteceu un erro ó gardar o chío."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Erro ó inserir a contestación na BD: %s"
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, fuzzy, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "%1$s (%2$s)"
|
||||
@ -4222,139 +4231,139 @@ msgstr "%s (%s)"
|
||||
msgid "Untitled page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "Persoal"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
#, fuzzy
|
||||
msgid "Account"
|
||||
msgstr "Sobre"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
#, fuzzy
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr "Cambiar contrasinal"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Conectar"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
#, fuzzy
|
||||
msgid "Connect to services"
|
||||
msgstr "Non se pode redireccionar ao servidor: %s"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
#, fuzzy
|
||||
msgid "Change site configuration"
|
||||
msgstr "Navegación de subscricións"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "Invitar"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, fuzzy, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr ""
|
||||
"Emprega este formulario para invitar ós teus amigos e colegas a empregar "
|
||||
"este servizo."
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "Sair"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
#, fuzzy
|
||||
msgid "Create an account"
|
||||
msgstr "Crear nova conta"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "Axuda"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
#, fuzzy
|
||||
msgid "Help me!"
|
||||
msgstr "Axuda"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "Buscar"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
#, fuzzy
|
||||
msgid "Site notice"
|
||||
msgstr "Novo chío"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
#, fuzzy
|
||||
msgid "Page notice"
|
||||
msgstr "Novo chío"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
#, fuzzy
|
||||
msgid "Secondary site navigation"
|
||||
msgstr "Navegación de subscricións"
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "Sobre"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "Preguntas frecuentes"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "Privacidade"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "Fonte"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%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."
|
||||
"broughtby%%](%%site.broughtbyurl%%). "
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** é un servizo de microbloguexo."
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"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."
|
||||
"fsf.org/licensing/licenses/agpl-3.0.html)."
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
#, fuzzy
|
||||
msgid "Site content license"
|
||||
msgstr "Atopar no contido dos chíos"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
#, fuzzy
|
||||
msgid "All "
|
||||
msgstr "Todos"
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
#, fuzzy
|
||||
msgid "After"
|
||||
msgstr "« Despois"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
#, fuzzy
|
||||
msgid "Before"
|
||||
msgstr "Antes »"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
#, fuzzy
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..."
|
||||
@ -4468,6 +4477,16 @@ msgstr ""
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "Resultados do comando"
|
||||
@ -5254,7 +5273,7 @@ msgid ""
|
||||
"users in conversation. People can send you messages for your eyes only."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
#, fuzzy
|
||||
msgid "from"
|
||||
msgstr " dende "
|
||||
@ -5320,76 +5339,80 @@ msgstr "Eliminar chío"
|
||||
msgid "To"
|
||||
msgstr "A"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
#, fuzzy
|
||||
msgid "Available characters"
|
||||
msgstr "6 ou máis caracteres"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
#, fuzzy
|
||||
msgid "Send a notice"
|
||||
msgstr "Dar un toque"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "¿Que pasa, %s?"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
#, fuzzy
|
||||
msgid "N"
|
||||
msgstr "No"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
#, fuzzy
|
||||
msgid "in context"
|
||||
msgstr "Sen contido!"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "Crear"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
#, fuzzy
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Non se pode eliminar este chíos."
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
#, fuzzy
|
||||
msgid "Reply"
|
||||
msgstr "contestar"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Chío publicado"
|
||||
|
@ -7,12 +7,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:42:57+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:11:31+0000\n"
|
||||
"Language-Team: Hebrew\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: he\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -192,11 +192,11 @@ msgstr "עידכון המשתמש נכשל."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "עידכון המשתמש נכשל."
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr ""
|
||||
|
||||
@ -311,31 +311,31 @@ msgid "Could not find target user."
|
||||
msgstr "עידכון המשתמש נכשל."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr "כינוי יכול להכיל רק אותיות אנגליות קטנות ומספרים, וללא רווחים."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "כינוי זה כבר תפוס. נסה כינוי אחר."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "שם משתמש לא חוקי."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "לאתר הבית יש כתובת לא חוקית."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "השם המלא ארוך מידי (מותרות 255 אותיות בלבד)"
|
||||
@ -346,7 +346,7 @@ msgid "Description is too long (max %d chars)."
|
||||
msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)"
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
msgstr "שם המיקום ארוך מידי (מותר עד 255 אותיות)."
|
||||
@ -467,7 +467,7 @@ msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 או
|
||||
msgid "Not found"
|
||||
msgstr "לא נמצא"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -600,7 +600,7 @@ msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
#, fuzzy
|
||||
msgid "Delete"
|
||||
msgstr "מחק"
|
||||
@ -614,13 +614,13 @@ msgid "Crop"
|
||||
msgstr ""
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -695,7 +695,7 @@ msgstr "כן"
|
||||
msgid "Block this user"
|
||||
msgstr "אין משתמש כזה."
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
msgstr ""
|
||||
|
||||
@ -771,7 +771,7 @@ msgstr "כתובת זו כבר אושרה."
|
||||
#: actions/confirmaddress.php:114 actions/emailsettings.php:296
|
||||
#: actions/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
msgstr "עידכון המשתמש נכשל."
|
||||
@ -833,7 +833,7 @@ msgstr ""
|
||||
msgid "Do not delete this notice"
|
||||
msgstr "אין הודעה כזו."
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:603
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:611
|
||||
msgid "Delete this notice"
|
||||
msgstr ""
|
||||
|
||||
@ -980,7 +980,7 @@ msgstr ""
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: actions/useradminpanel.php:313 lib/designsettings.php:256
|
||||
@ -1488,7 +1488,7 @@ msgstr ""
|
||||
msgid "A list of the users in this group."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1581,7 +1581,7 @@ msgstr ""
|
||||
msgid "User is not blocked from group."
|
||||
msgstr "למשתמש אין פרופיל."
|
||||
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:77
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:86
|
||||
#, fuzzy
|
||||
msgid "Error removing the block."
|
||||
msgstr "שגיאה בשמירת המשתמש."
|
||||
@ -1760,7 +1760,7 @@ msgstr ""
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
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"
|
||||
msgstr "שלח"
|
||||
|
||||
@ -1860,7 +1860,7 @@ msgstr "שם משתמש או סיסמה לא נכונים."
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "היכנס"
|
||||
@ -1970,7 +1970,7 @@ msgstr "הודעה חדשה"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1978,7 +1978,7 @@ msgstr ""
|
||||
msgid "New notice"
|
||||
msgstr "הודעה חדשה"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
#, fuzzy
|
||||
msgid "Notice posted"
|
||||
msgstr "הודעות"
|
||||
@ -2417,70 +2417,79 @@ msgstr "מיקום"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "שפה"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:221 actions/register.php:223
|
||||
#: actions/profilesettings.php:228 actions/register.php:223
|
||||
#, fuzzy, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)"
|
||||
|
||||
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164
|
||||
#: actions/profilesettings.php:235 actions/siteadminpanel.php:164
|
||||
msgid "Timezone not selected."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:246 actions/tagother.php:178
|
||||
#: actions/profilesettings.php:253 actions/tagother.php:178
|
||||
#, fuzzy, php-format
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "כתובת אתר הבית '%s' אינה חוקית"
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "שמירת הפרופיל נכשלה."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
#, fuzzy
|
||||
msgid "Couldn't save tags."
|
||||
msgstr "שמירת הפרופיל נכשלה."
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr "ההגדרות נשמרו."
|
||||
|
||||
@ -2577,7 +2586,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr ""
|
||||
|
||||
@ -2714,7 +2723,7 @@ msgstr "שגיאה באישור הקוד."
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "הירשם"
|
||||
@ -2887,7 +2896,7 @@ msgstr "לא ניתן להירשם ללא הסכמה לרשיון"
|
||||
msgid "You already repeated that notice."
|
||||
msgstr "כבר נכנסת למערכת!"
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "צור"
|
||||
@ -4010,16 +4019,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:319 classes/Notice.php:344
|
||||
#: classes/Notice.php:309 classes/Notice.php:334
|
||||
msgid "Problem saving notice."
|
||||
msgstr "בעיה בשמירת ההודעה."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s"
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr ""
|
||||
@ -4078,136 +4087,136 @@ msgstr ""
|
||||
msgid "Untitled page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "בית"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
#, fuzzy
|
||||
msgid "Account"
|
||||
msgstr "אודות"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "התחבר"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
#, fuzzy
|
||||
msgid "Connect to services"
|
||||
msgstr "נכשלה ההפניה לשרת: %s"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
#, fuzzy
|
||||
msgid "Change site configuration"
|
||||
msgstr "הרשמות"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "צא"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
#, fuzzy
|
||||
msgid "Create an account"
|
||||
msgstr "צור חשבון חדש"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "עזרה"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
#, fuzzy
|
||||
msgid "Help me!"
|
||||
msgstr "עזרה"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "חיפוש"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
#, fuzzy
|
||||
msgid "Site notice"
|
||||
msgstr "הודעה חדשה"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
#, fuzzy
|
||||
msgid "Page notice"
|
||||
msgstr "הודעה חדשה"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
#, fuzzy
|
||||
msgid "Secondary site navigation"
|
||||
msgstr "הרשמות"
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "אודות"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "רשימת שאלות נפוצות"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "פרטיות"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "מקור"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "צור קשר"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%site.name%%** is a microblogging service brought to you by [%%site."
|
||||
@ -4216,12 +4225,12 @@ msgstr ""
|
||||
"**%%site.name%%** הוא שרות ביקרובלוג הניתן על ידי [%%site.broughtby%%](%%"
|
||||
"site.broughtbyurl%%)."
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** הוא שרות ביקרובלוג."
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"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/"
|
||||
"licensing/licenses/agpl-3.0.html)"
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
#, fuzzy
|
||||
msgid "Site content license"
|
||||
msgstr "הודעה חדשה"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
#, fuzzy
|
||||
msgid "After"
|
||||
msgstr "<< אחרי"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
#, fuzzy
|
||||
msgid "Before"
|
||||
msgstr "לפני >>"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
@ -4314,6 +4323,16 @@ msgstr ""
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr ""
|
||||
@ -4999,7 +5018,7 @@ msgid ""
|
||||
"users in conversation. People can send you messages for your eyes only."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
msgid "from"
|
||||
msgstr ""
|
||||
|
||||
@ -5064,75 +5083,79 @@ msgstr ""
|
||||
msgid "To"
|
||||
msgstr "אל"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
#, fuzzy
|
||||
msgid "Available characters"
|
||||
msgstr "לפחות 6 אותיות"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
#, fuzzy
|
||||
msgid "Send a notice"
|
||||
msgstr "הודעה חדשה"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "מה המצב %s?"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
#, fuzzy
|
||||
msgid "N"
|
||||
msgstr "לא"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
#, fuzzy
|
||||
msgid "in context"
|
||||
msgstr "אין תוכן!"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "צור"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
#, fuzzy
|
||||
msgid "Reply"
|
||||
msgstr "הגב"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "הודעות"
|
||||
|
@ -9,12 +9,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:43:00+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:11:35+0000\n"
|
||||
"Language-Team: Dutch\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: hsb\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -188,11 +188,11 @@ msgstr "Design njeda so aktualizować."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "Njemóžeš so samoho blokować."
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr ""
|
||||
|
||||
@ -304,31 +304,31 @@ msgid "Could not find target user."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Přimjeno so hižo wužiwa. Spytaj druhe."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "Žane płaćiwe přimjeno."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "Startowa strona njeje płaćiwy URL."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
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)."
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
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"
|
||||
msgstr "Njenamakany"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -584,7 +584,7 @@ msgid "Preview"
|
||||
msgstr "Přehlad"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "Zničić"
|
||||
|
||||
@ -597,13 +597,13 @@ msgid "Crop"
|
||||
msgstr ""
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -673,7 +673,7 @@ msgstr "Haj"
|
||||
msgid "Block this user"
|
||||
msgstr "Tutoho wužiwarja blokować"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
msgstr ""
|
||||
|
||||
@ -745,7 +745,7 @@ msgstr "Tuta adresa bu hižo wobkrućena."
|
||||
#: actions/confirmaddress.php:114 actions/emailsettings.php:296
|
||||
#: actions/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
msgstr ""
|
||||
@ -805,7 +805,7 @@ msgstr "Chceš woprawdźe tutu zdźělenku wušmórnyć?"
|
||||
msgid "Do not delete this notice"
|
||||
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"
|
||||
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/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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: actions/useradminpanel.php:313 lib/designsettings.php:256
|
||||
@ -1424,7 +1424,7 @@ msgstr ""
|
||||
msgid "A list of the users in this group."
|
||||
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"
|
||||
msgstr "Administrator"
|
||||
|
||||
@ -1511,7 +1511,7 @@ msgstr ""
|
||||
msgid "User is not blocked from group."
|
||||
msgstr ""
|
||||
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:77
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:86
|
||||
msgid "Error removing the block."
|
||||
msgstr ""
|
||||
|
||||
@ -1682,7 +1682,7 @@ msgstr "Wosobinska powěsć"
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
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"
|
||||
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."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "Přizjewić"
|
||||
@ -1885,7 +1885,7 @@ msgstr "Powěsć pósłana"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "Zmylk Ajax"
|
||||
|
||||
@ -1893,7 +1893,7 @@ msgstr "Zmylk Ajax"
|
||||
msgid "New notice"
|
||||
msgstr "Nowa zdźělenka"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "Zdźělenka wotpósłana"
|
||||
|
||||
@ -2310,69 +2310,77 @@ msgstr "Městno"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "Rěč"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "Preferowana rěč"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "Časowe pasmo"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:221 actions/register.php:223
|
||||
#: actions/profilesettings.php:228 actions/register.php:223
|
||||
#, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
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."
|
||||
msgstr "Časowe pasmo njeje wubrane."
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
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
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr "Nastajenja składowane."
|
||||
|
||||
@ -2465,7 +2473,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr ""
|
||||
|
||||
@ -2602,7 +2610,7 @@ msgstr "Wodaj, njepłaćiwy přeprošenski kod."
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "Registrować"
|
||||
@ -2766,7 +2774,7 @@ msgstr "Njemóžeš swójsku zdźělenku wospjetować."
|
||||
msgid "You already repeated that notice."
|
||||
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"
|
||||
msgstr "Wospjetowany"
|
||||
|
||||
@ -3836,16 +3844,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:319 classes/Notice.php:344
|
||||
#: classes/Notice.php:309 classes/Notice.php:334
|
||||
msgid "Problem saving notice."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr ""
|
||||
@ -3900,140 +3908,140 @@ msgstr "%s - %s"
|
||||
msgid "Untitled page"
|
||||
msgstr "Strona bjez titula"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Zwjazać"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect to services"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
msgid "Change site configuration"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "Přeprosyć"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "Konto załožić"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "Pomoc"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "Pomhaj!"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "Pytać"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "Za ludźimi abo tekstom pytać"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "Wo"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "Huste prašenja"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "Priwatnosć"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "Žórło"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%site.name%%** is a microblogging service brought to you by [%%site."
|
||||
"broughtby%%](%%site.broughtbyurl%%). "
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
|
||||
@ -4041,31 +4049,31 @@ msgid ""
|
||||
"org/licensing/licenses/agpl-3.0.html)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
msgid "Site content license"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
@ -4117,6 +4125,16 @@ msgstr ""
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr ""
|
||||
@ -4785,7 +4803,7 @@ msgid ""
|
||||
"users in conversation. People can send you messages for your eyes only."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
msgid "from"
|
||||
msgstr "wot"
|
||||
|
||||
@ -4849,69 +4867,73 @@ msgstr "Direktnu zdźělenku pósłać"
|
||||
msgid "To"
|
||||
msgstr "Komu"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr "K dispoziciji stejace znamješka"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr "Zdźělenku pósłać"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr "Připowěsnyć"
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr "Dataju připowěsnyć"
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
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"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "N"
|
||||
msgstr "S"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr "J"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr "W"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr "Z"
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
msgid "Repeated by"
|
||||
msgstr "Wospjetowany wot"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Na tutu zdźělenku wotmołwić"
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "Wotmołwić"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
msgid "Notice repeated"
|
||||
msgstr "Zdźělenka wospjetowana"
|
||||
|
||||
@ -5041,9 +5063,8 @@ msgid "Popular"
|
||||
msgstr "Woblubowany"
|
||||
|
||||
#: lib/repeatform.php:107
|
||||
#, fuzzy
|
||||
msgid "Repeat this notice?"
|
||||
msgstr "Tutu zdźělenku wospjetować"
|
||||
msgstr "Tutu zdźělenku wospjetować?"
|
||||
|
||||
#: lib/repeatform.php:132
|
||||
msgid "Repeat this notice"
|
||||
|
@ -8,12 +8,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:43:03+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:11:39+0000\n"
|
||||
"Language-Team: Interlingua\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: ia\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -198,11 +198,11 @@ msgstr "Non poteva actualisar le apparentia."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "Tu non pote blocar te mesme!"
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "Le blocada del usator ha fallite."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
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."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr "Le pseudonymo pote solmente haber minusculas e numeros, sin spatios."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Pseudonymo ja in uso. Proba un altere."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "Non un pseudonymo valide."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "Le pagina personal non es un URL valide."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
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)."
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
msgstr "Loco es troppo longe (max. 255 characteres)."
|
||||
@ -465,7 +465,7 @@ msgstr ""
|
||||
msgid "Not found"
|
||||
msgstr "Non trovate"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -597,7 +597,7 @@ msgid "Preview"
|
||||
msgstr "Previsualisation"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "Deler"
|
||||
|
||||
@ -610,13 +610,13 @@ msgid "Crop"
|
||||
msgstr "Taliar"
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -689,7 +689,7 @@ msgstr "Si"
|
||||
msgid "Block this user"
|
||||
msgstr "Blocar iste usator"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
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/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
msgstr "Non poteva actualisar usator."
|
||||
@ -823,7 +823,7 @@ msgstr "Es tu secur de voler deler iste nota?"
|
||||
msgid "Do not delete this notice"
|
||||
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"
|
||||
msgstr "Deler iste nota"
|
||||
|
||||
@ -961,7 +961,7 @@ msgstr "Revenir al predefinitiones"
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: 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."
|
||||
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"
|
||||
msgstr "Administrator"
|
||||
|
||||
@ -1559,7 +1559,7 @@ msgstr "Solmente un administrator pote disblocar membros de un gruppo."
|
||||
msgid "User is not blocked from group."
|
||||
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."
|
||||
msgstr "Error de remover le blocada."
|
||||
|
||||
@ -1746,7 +1746,7 @@ msgstr "Message personal"
|
||||
msgid "Optionally add a personal message to the 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"
|
||||
msgstr "Inviar"
|
||||
|
||||
@ -1869,7 +1869,7 @@ msgid "Error setting user. You are probably not authorized."
|
||||
msgstr ""
|
||||
"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
|
||||
msgid "Login"
|
||||
msgstr "Aperir session"
|
||||
@ -1984,7 +1984,7 @@ msgstr "Message inviate"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "Error de Ajax"
|
||||
|
||||
@ -1992,7 +1992,7 @@ msgstr "Error de Ajax"
|
||||
msgid "New notice"
|
||||
msgstr "Nove nota"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "Nota publicate"
|
||||
|
||||
@ -2299,35 +2299,35 @@ msgstr "Directorio al fundos"
|
||||
|
||||
#: actions/pathsadminpanel.php:293
|
||||
msgid "SSL"
|
||||
msgstr ""
|
||||
msgstr "SSL"
|
||||
|
||||
#: actions/pathsadminpanel.php:296 actions/siteadminpanel.php:346
|
||||
msgid "Never"
|
||||
msgstr ""
|
||||
msgstr "Nunquam"
|
||||
|
||||
#: actions/pathsadminpanel.php:297
|
||||
msgid "Sometimes"
|
||||
msgstr ""
|
||||
msgstr "Alcun vices"
|
||||
|
||||
#: actions/pathsadminpanel.php:298
|
||||
msgid "Always"
|
||||
msgstr ""
|
||||
msgstr "Sempre"
|
||||
|
||||
#: actions/pathsadminpanel.php:302
|
||||
msgid "Use SSL"
|
||||
msgstr ""
|
||||
msgstr "Usar SSL"
|
||||
|
||||
#: actions/pathsadminpanel.php:303
|
||||
msgid "When to use SSL"
|
||||
msgstr ""
|
||||
msgstr "Quando usar SSL"
|
||||
|
||||
#: actions/pathsadminpanel.php:308
|
||||
msgid "SSL Server"
|
||||
msgstr ""
|
||||
msgstr "Servitor SSL"
|
||||
|
||||
#: actions/pathsadminpanel.php:309
|
||||
msgid "Server to direct SSL requests to"
|
||||
msgstr ""
|
||||
msgstr "Servitor verso le qual diriger le requestas SSL"
|
||||
|
||||
#: actions/pathsadminpanel.php:325
|
||||
msgid "Save paths"
|
||||
@ -2424,72 +2424,80 @@ msgstr "Loco"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "Etiquettas"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
"Etiquettas pro te (litteras, numeros, -, ., e _), separate per commas o "
|
||||
"spatios"
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "Lingua"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "Lingua preferite"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "Fuso horari"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "In que fuso horari es tu normalmente?"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
"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
|
||||
msgid "Bio is too long (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."
|
||||
msgstr "Fuso horari non seligite."
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (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
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Etiquetta invalide: \"%s\""
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "Non poteva salveguardar profilo."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
msgstr "Non poteva salveguardar etiquettas."
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr "Preferentias confirmate."
|
||||
|
||||
@ -2595,7 +2603,7 @@ msgstr ""
|
||||
"Proque non [registrar un conto](%%action.register%%) e devenir le prime a "
|
||||
"publicar un?"
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr "Etiquettario"
|
||||
|
||||
@ -2735,7 +2743,7 @@ msgstr "Pardono, le codice de invitation es invalide."
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "Crear un conto"
|
||||
@ -2927,7 +2935,7 @@ msgstr "Tu non pote repeter tu proprie nota."
|
||||
msgid "You already repeated that notice."
|
||||
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"
|
||||
msgstr "Repetite"
|
||||
|
||||
@ -3376,184 +3384,190 @@ msgstr "Servitor"
|
||||
|
||||
#: actions/siteadminpanel.php:306
|
||||
msgid "Site's server hostname."
|
||||
msgstr ""
|
||||
msgstr "Nomine de host del servitor del sito."
|
||||
|
||||
#: actions/siteadminpanel.php:310
|
||||
msgid "Fancy URLs"
|
||||
msgstr ""
|
||||
msgstr "URLs de luxo"
|
||||
|
||||
#: actions/siteadminpanel.php:312
|
||||
msgid "Use fancy (more readable and memorable) URLs?"
|
||||
msgstr ""
|
||||
msgstr "Usar URLs de luxo (plus legibile e memorabile)?"
|
||||
|
||||
#: actions/siteadminpanel.php:318
|
||||
msgid "Access"
|
||||
msgstr ""
|
||||
msgstr "Accesso"
|
||||
|
||||
#: actions/siteadminpanel.php:321
|
||||
msgid "Private"
|
||||
msgstr ""
|
||||
msgstr "Private"
|
||||
|
||||
#: actions/siteadminpanel.php:323
|
||||
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
|
||||
msgid "Invite only"
|
||||
msgstr ""
|
||||
msgstr "Solmente per invitation"
|
||||
|
||||
#: actions/siteadminpanel.php:329
|
||||
msgid "Make registration invitation only."
|
||||
msgstr ""
|
||||
msgstr "Permitter le registration solmente al invitatos."
|
||||
|
||||
#: actions/siteadminpanel.php:333
|
||||
msgid "Closed"
|
||||
msgstr ""
|
||||
msgstr "Claudite"
|
||||
|
||||
#: actions/siteadminpanel.php:335
|
||||
msgid "Disable new registrations."
|
||||
msgstr ""
|
||||
msgstr "Disactivar le creation de nove contos."
|
||||
|
||||
#: actions/siteadminpanel.php:341
|
||||
msgid "Snapshots"
|
||||
msgstr ""
|
||||
msgstr "Instantaneos"
|
||||
|
||||
#: actions/siteadminpanel.php:344
|
||||
msgid "Randomly during Web hit"
|
||||
msgstr ""
|
||||
msgstr "Aleatorimente durante un accesso web"
|
||||
|
||||
#: actions/siteadminpanel.php:345
|
||||
msgid "In a scheduled job"
|
||||
msgstr ""
|
||||
msgstr "In un processo planificate"
|
||||
|
||||
#: actions/siteadminpanel.php:347
|
||||
msgid "Data snapshots"
|
||||
msgstr ""
|
||||
msgstr "Instantaneos de datos"
|
||||
|
||||
#: actions/siteadminpanel.php:348
|
||||
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
|
||||
msgid "Frequency"
|
||||
msgstr ""
|
||||
msgstr "Frequentia"
|
||||
|
||||
#: actions/siteadminpanel.php:354
|
||||
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
|
||||
msgid "Report URL"
|
||||
msgstr ""
|
||||
msgstr "URL pro reporto"
|
||||
|
||||
#: actions/siteadminpanel.php:360
|
||||
msgid "Snapshots will be sent to this URL"
|
||||
msgstr ""
|
||||
msgstr "Le instantaneos essera inviate a iste URL"
|
||||
|
||||
#: actions/siteadminpanel.php:367
|
||||
msgid "Limits"
|
||||
msgstr ""
|
||||
msgstr "Limites"
|
||||
|
||||
#: actions/siteadminpanel.php:370
|
||||
msgid "Text limit"
|
||||
msgstr ""
|
||||
msgstr "Limite de texto"
|
||||
|
||||
#: actions/siteadminpanel.php:370
|
||||
msgid "Maximum number of characters for notices."
|
||||
msgstr ""
|
||||
msgstr "Numero maxime de characteres pro notas."
|
||||
|
||||
#: actions/siteadminpanel.php:374
|
||||
msgid "Dupe limit"
|
||||
msgstr ""
|
||||
msgstr "Limite de duplicatos"
|
||||
|
||||
#: actions/siteadminpanel.php:374
|
||||
msgid "How long users must wait (in seconds) to post the same thing again."
|
||||
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
|
||||
msgid "Save site settings"
|
||||
msgstr ""
|
||||
msgstr "Salveguardar configurationes del sito"
|
||||
|
||||
#: actions/smssettings.php:58
|
||||
msgid "SMS Settings"
|
||||
msgstr ""
|
||||
msgstr "Configuration SMS"
|
||||
|
||||
#: actions/smssettings.php:69
|
||||
#, php-format
|
||||
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
|
||||
msgid "SMS is not available."
|
||||
msgstr ""
|
||||
msgstr "SMS non es disponibile."
|
||||
|
||||
#: actions/smssettings.php:112
|
||||
msgid "Current confirmed SMS-enabled phone number."
|
||||
msgstr ""
|
||||
msgstr "Numero de telephono actual e confirmate con servicio SMS."
|
||||
|
||||
#: actions/smssettings.php:123
|
||||
msgid "Awaiting confirmation on this phone number."
|
||||
msgstr ""
|
||||
msgstr "Iste numero de telephono attende confirmation."
|
||||
|
||||
#: actions/smssettings.php:130
|
||||
msgid "Confirmation code"
|
||||
msgstr ""
|
||||
msgstr "Codice de confirmation"
|
||||
|
||||
#: actions/smssettings.php:131
|
||||
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
|
||||
msgid "SMS Phone number"
|
||||
msgstr ""
|
||||
msgstr "Numero de telephono pro SMS"
|
||||
|
||||
#: actions/smssettings.php:140
|
||||
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
|
||||
msgid ""
|
||||
"Send me notices through SMS; I understand I may incur exorbitant charges "
|
||||
"from my carrier."
|
||||
msgstr ""
|
||||
"Invia me notas per SMS; io comprende que io pote incurrer exorbitante costos "
|
||||
"de mi operator."
|
||||
|
||||
#: actions/smssettings.php:306
|
||||
msgid "No phone number."
|
||||
msgstr ""
|
||||
msgstr "Nulle numero de telephono."
|
||||
|
||||
#: actions/smssettings.php:311
|
||||
msgid "No carrier selected."
|
||||
msgstr ""
|
||||
msgstr "Nulle operator seligite."
|
||||
|
||||
#: actions/smssettings.php:318
|
||||
msgid "That is already your phone number."
|
||||
msgstr ""
|
||||
msgstr "Isto es ja tu numero de telephono."
|
||||
|
||||
#: actions/smssettings.php:321
|
||||
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
|
||||
msgid ""
|
||||
"A confirmation code was sent to the phone number you added. Check your phone "
|
||||
"for the code and instructions on how to use it."
|
||||
msgstr ""
|
||||
"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
|
||||
msgid "That is the wrong confirmation number."
|
||||
msgstr ""
|
||||
msgstr "Iste codice de confirmation es incorrecte."
|
||||
|
||||
#: actions/smssettings.php:405
|
||||
msgid "That is not your phone number."
|
||||
msgstr ""
|
||||
msgstr "Isto non es tu numero de telephono."
|
||||
|
||||
#: actions/smssettings.php:465
|
||||
msgid "Mobile carrier"
|
||||
msgstr ""
|
||||
msgstr "Operator de telephonia mobile"
|
||||
|
||||
#: actions/smssettings.php:469
|
||||
msgid "Select a carrier"
|
||||
msgstr ""
|
||||
msgstr "Selige un operator"
|
||||
|
||||
#: actions/smssettings.php:476
|
||||
#, php-format
|
||||
@ -3561,51 +3575,56 @@ msgid ""
|
||||
"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."
|
||||
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
|
||||
msgid "No code entered"
|
||||
msgstr ""
|
||||
msgstr "Nulle codice entrate"
|
||||
|
||||
#: actions/subedit.php:70
|
||||
msgid "You are not subscribed to that profile."
|
||||
msgstr ""
|
||||
msgstr "Tu non es subscribite a iste profilo."
|
||||
|
||||
#: actions/subedit.php:83
|
||||
msgid "Could not save subscription."
|
||||
msgstr ""
|
||||
msgstr "Non poteva salveguardar le subscription."
|
||||
|
||||
#: actions/subscribe.php:55
|
||||
msgid "Not a local user."
|
||||
msgstr ""
|
||||
msgstr "Le usator non es local."
|
||||
|
||||
#: actions/subscribe.php:69
|
||||
msgid "Subscribed"
|
||||
msgstr ""
|
||||
msgstr "Subscribite"
|
||||
|
||||
#: actions/subscribers.php:50
|
||||
#, php-format
|
||||
msgid "%s subscribers"
|
||||
msgstr ""
|
||||
msgstr "Subscriptores a %s"
|
||||
|
||||
#: actions/subscribers.php:52
|
||||
#, php-format
|
||||
msgid "%s subscribers, page %d"
|
||||
msgstr ""
|
||||
msgstr "Subscriptores a %s, pagina %d"
|
||||
|
||||
#: actions/subscribers.php:63
|
||||
msgid "These are the people who listen to your notices."
|
||||
msgstr ""
|
||||
msgstr "Iste personas seque tu notas."
|
||||
|
||||
#: actions/subscribers.php:67
|
||||
#, php-format
|
||||
msgid "These are the people who listen to %s's notices."
|
||||
msgstr ""
|
||||
msgstr "Iste personas seque le notas de %s."
|
||||
|
||||
#: actions/subscribers.php:108
|
||||
msgid ""
|
||||
"You have no subscribers. Try subscribing to people you know and they might "
|
||||
"return the favor"
|
||||
msgstr ""
|
||||
"Tu non ha subscriptores. Tenta subscriber te a personas que tu cognosce e "
|
||||
"illes poterea retornar te le favor."
|
||||
|
||||
#: actions/subscribers.php:110
|
||||
#, php-format
|
||||
@ -4032,16 +4051,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:319 classes/Notice.php:344
|
||||
#: classes/Notice.php:309 classes/Notice.php:334
|
||||
msgid "Problem saving notice."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr ""
|
||||
@ -4096,140 +4115,140 @@ msgstr ""
|
||||
msgid "Untitled page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect to services"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
msgid "Change site configuration"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%site.name%%** is a microblogging service brought to you by [%%site."
|
||||
"broughtby%%](%%site.broughtbyurl%%). "
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
|
||||
@ -4237,31 +4256,31 @@ msgid ""
|
||||
"org/licensing/licenses/agpl-3.0.html)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
msgid "Site content license"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
@ -4313,6 +4332,16 @@ msgstr ""
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr ""
|
||||
@ -4973,7 +5002,7 @@ msgid ""
|
||||
"users in conversation. People can send you messages for your eyes only."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
msgid "from"
|
||||
msgstr ""
|
||||
|
||||
@ -5037,69 +5066,73 @@ msgstr ""
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "N"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
msgid "Repeated by"
|
||||
msgstr "Repetite per"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Nota delite."
|
||||
|
@ -8,12 +8,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:43:06+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:11:42+0000\n"
|
||||
"Language-Team: Icelandic\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (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-Language-Code: is\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -194,11 +194,11 @@ msgstr "Gat ekki uppfært hóp."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "Gat ekki uppfært notanda."
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "Mistókst að loka á notanda."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr "Mistókst að opna fyrir notanda."
|
||||
|
||||
@ -312,31 +312,31 @@ msgid "Could not find target user."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
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."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Stuttnefni nú þegar í notkun. Prófaðu eitthvað annað."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "Ekki tækt stuttnefni."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "Heimasíða er ekki gild vefslóð."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
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)."
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
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"
|
||||
msgstr "Fannst ekki"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -597,7 +597,7 @@ msgid "Preview"
|
||||
msgstr "Forsýn"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "Eyða"
|
||||
|
||||
@ -610,13 +610,13 @@ msgid "Crop"
|
||||
msgstr "Skera af"
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -689,7 +689,7 @@ msgstr "Já"
|
||||
msgid "Block this user"
|
||||
msgstr "Loka á þennan notanda"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
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/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:603
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:611
|
||||
msgid "Delete this notice"
|
||||
msgstr "Eyða þessu babli"
|
||||
|
||||
@ -967,7 +967,7 @@ msgstr ""
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: 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."
|
||||
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"
|
||||
msgstr "Stjórnandi"
|
||||
|
||||
@ -1550,7 +1550,7 @@ msgstr ""
|
||||
msgid "User is not blocked from group."
|
||||
msgstr ""
|
||||
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:77
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:86
|
||||
msgid "Error removing the block."
|
||||
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."
|
||||
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"
|
||||
msgstr "Senda"
|
||||
|
||||
@ -1862,7 +1862,7 @@ msgstr "Rangt notendanafn eða lykilorð."
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "Innskráning"
|
||||
@ -1978,7 +1978,7 @@ msgstr ""
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "Ajax villa"
|
||||
|
||||
@ -1986,7 +1986,7 @@ msgstr "Ajax villa"
|
||||
msgid "New notice"
|
||||
msgstr "Nýtt babl"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "Babl sent inn"
|
||||
|
||||
@ -2425,73 +2425,82 @@ msgstr "Staðsetning"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "Merki"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
"Merki fyrir þig (bókstafir, tölustafir, -, ., og _), aðskilin með kommu eða "
|
||||
"bili"
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "Tungumál"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "Tungumál (ákjósanlegt)"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "Tímabelti"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "Í hvaða tímabelti eru í rauninni?"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
"Gerast sjálfkrafa áskrifandi að hverjum þeim sem gerist áskrifandi að þér "
|
||||
"(best fyrir ómannlega notendur)"
|
||||
|
||||
#: actions/profilesettings.php:221 actions/register.php:223
|
||||
#: actions/profilesettings.php:228 actions/register.php:223
|
||||
#, fuzzy, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
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."
|
||||
msgstr "Tímabelti ekki valið."
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
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
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Ógilt merki: \"%s\""
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "Gat ekki vistað persónulega síðu."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
msgstr "Gat ekki vistað merki."
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr "Stillingar vistaðar."
|
||||
|
||||
@ -2584,7 +2593,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr "Merkjaský"
|
||||
|
||||
@ -2724,7 +2733,7 @@ msgstr ""
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "Nýskrá"
|
||||
@ -2919,7 +2928,7 @@ msgstr "Þú getur ekki nýskráð þig nema þú samþykkir leyfið."
|
||||
msgid "You already repeated that notice."
|
||||
msgstr "Þú hefur nú þegar lokað á þennan notanda."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "Í sviðsljósinu"
|
||||
@ -4042,16 +4051,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
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."
|
||||
msgstr "Vandamál komu upp við að vista babl."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Gagnagrunnsvilla við innsetningu svars: %s"
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, fuzzy, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "%1$s (%2$s)"
|
||||
@ -4106,132 +4115,132 @@ msgstr "%s - %s"
|
||||
msgid "Untitled page"
|
||||
msgstr "Ónafngreind síða"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr "Stikl aðalsíðu"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "Heim"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr "Persónuleg síða og vinarás"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "Aðgangur"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr ""
|
||||
"Breyttu tölvupóstinum þínum, einkennismyndinni þinni, lykilorðinu þínu, "
|
||||
"persónulegu síðunni þinni"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Tengjast"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
#, fuzzy
|
||||
msgid "Connect to services"
|
||||
msgstr "Gat ekki framsent til vefþjóns: %s"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
#, fuzzy
|
||||
msgid "Change site configuration"
|
||||
msgstr "Stikl aðalsíðu"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "Bjóða"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr "Bjóða vinum og vandamönnum að slást í hópinn á %s"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "Útskráning"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr "Skrá þig út af síðunni"
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "Búa til aðgang"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr "Skrá þig inn á síðuna"
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "Hjálp"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "Hjálp!"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "Leita"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "Leita að fólki eða texta"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr "Babl vefsíðunnar"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr "Staðbundin sýn"
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr "Babl síðunnar"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr "Stikl undirsíðu"
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "Um"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "Spurt og svarað"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "Friðhelgi"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "Frumþula"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Tengiliður"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr "Hugbúnaðarleyfi StatusNet"
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%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."
|
||||
"broughtbyurl%%). "
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** er örbloggsþjónusta."
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"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/"
|
||||
"licensing/licenses/agpl-3.0.html)."
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
#, fuzzy
|
||||
msgid "Site content license"
|
||||
msgstr "Hugbúnaðarleyfi StatusNet"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr "Allt "
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr "leyfi."
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr "Uppröðun"
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr "Eftir"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr "Áður"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Það komu upp vandamál varðandi setutókann þinn."
|
||||
|
||||
@ -4339,6 +4348,16 @@ msgstr ""
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "Niðurstöður skipunar"
|
||||
@ -5022,7 +5041,7 @@ msgid ""
|
||||
"users in conversation. People can send you messages for your eyes only."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
#, fuzzy
|
||||
msgid "from"
|
||||
msgstr "frá"
|
||||
@ -5088,71 +5107,75 @@ msgstr "Senda bein skilaboð"
|
||||
msgid "To"
|
||||
msgstr "Til"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr "Leyfileg tákn"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr "Senda babl"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "Hvað er að frétta %s?"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
#, fuzzy
|
||||
msgid "N"
|
||||
msgstr "Nei"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "Í sviðsljósinu"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Svara þessu babli"
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "Svara"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Babl sent inn"
|
||||
|
@ -9,12 +9,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:43:10+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:11:47+0000\n"
|
||||
"Language-Team: Italian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: it\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -199,11 +199,11 @@ msgstr "Impossibile aggiornare l'aspetto."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "Non puoi bloccarti!"
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "Blocco dell'utente non riuscito."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr "Sblocco dell'utente non riuscito."
|
||||
|
||||
@ -315,7 +315,7 @@ msgid "Could not find target user."
|
||||
msgstr "Impossibile trovare l'utente destinazione."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr ""
|
||||
@ -323,25 +323,25 @@ msgstr ""
|
||||
"spazi."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Soprannome già in uso. Prova con un altro."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "Non è un soprannome valido."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "L'indirizzo della pagina web non è valido."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
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)."
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
msgstr "Ubicazione troppo lunga (max 255 caratteri)."
|
||||
@ -467,7 +467,7 @@ msgstr "Troppo lungo. Lunghezza massima %d caratteri."
|
||||
msgid "Not found"
|
||||
msgstr "Non trovato"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -598,7 +598,7 @@ msgid "Preview"
|
||||
msgstr "Anteprima"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "Elimina"
|
||||
|
||||
@ -611,13 +611,13 @@ msgid "Crop"
|
||||
msgstr "Ritaglia"
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -691,7 +691,7 @@ msgstr "Sì"
|
||||
msgid "Block this user"
|
||||
msgstr "Blocca questo utente"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
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/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
msgstr "Impossibile aggiornare l'utente."
|
||||
@ -825,7 +825,7 @@ msgstr "Vuoi eliminare questo messaggio?"
|
||||
msgid "Do not delete this notice"
|
||||
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"
|
||||
msgstr "Elimina questo messaggio"
|
||||
|
||||
@ -964,7 +964,7 @@ msgstr "Reimposta i valori predefiniti"
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: 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."
|
||||
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"
|
||||
msgstr "Amministra"
|
||||
|
||||
@ -1565,7 +1565,7 @@ msgstr "Solo gli amministratori possono sbloccare i membri del gruppo."
|
||||
msgid "User is not blocked from group."
|
||||
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."
|
||||
msgstr "Errore nel rimuovere il blocco."
|
||||
|
||||
@ -1751,7 +1751,7 @@ msgstr "Messaggio personale"
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
msgstr "Puoi aggiungere un messaggio personale agli inviti."
|
||||
|
||||
#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:222
|
||||
#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
|
||||
msgid "Send"
|
||||
msgstr "Invia"
|
||||
|
||||
@ -1873,7 +1873,7 @@ msgstr "Nome utente o password non corretto."
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "Accedi"
|
||||
@ -1985,7 +1985,7 @@ msgstr "Messaggio inviato"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "Errore di Ajax"
|
||||
|
||||
@ -1993,7 +1993,7 @@ msgstr "Errore di Ajax"
|
||||
msgid "New notice"
|
||||
msgstr "Nuovo messaggio"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "Messaggio inviato"
|
||||
|
||||
@ -2427,72 +2427,81 @@ msgstr "Ubicazione"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "Etichette"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
"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"
|
||||
msgstr "Lingua"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "Lingua preferita"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "Fuso orario"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "In che fuso orario risiedi solitamente?"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
"Abbonami automaticamente a chi si abbona ai miei messaggi (utile per i non-"
|
||||
"umani)"
|
||||
|
||||
#: actions/profilesettings.php:221 actions/register.php:223
|
||||
#: actions/profilesettings.php:228 actions/register.php:223
|
||||
#, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
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."
|
||||
msgstr "Fuso orario non selezionato"
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
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
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Etichetta non valida: \"%s\""
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "Impossibile salvare il profilo."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
msgstr "Impossibile salvare le etichette."
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr "Impostazioni salvate."
|
||||
|
||||
@ -2595,7 +2604,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr "Perché non [crei un accout](%%action.register%%) e ne scrivi uno tu!"
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr "Insieme delle etichette"
|
||||
|
||||
@ -2736,7 +2745,7 @@ msgstr "Codice di invito non valido."
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "Registra"
|
||||
@ -2928,7 +2937,7 @@ msgstr "Non puoi ripetere i tuoi stessi messaggi."
|
||||
msgid "You already repeated that notice."
|
||||
msgstr "Hai già ripetuto quel messaggio."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
msgid "Repeated"
|
||||
msgstr "Ripetuti"
|
||||
|
||||
@ -4079,16 +4088,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
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."
|
||||
msgstr "Problema nel salvare il messaggio."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Errore del DB nell'inserire la risposta: %s"
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
@ -4143,128 +4152,128 @@ msgstr "%s - %s"
|
||||
msgid "Untitled page"
|
||||
msgstr "Pagina senza nome"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr "Esplorazione sito primaria"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "Home"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr "Profilo personale e attività degli amici"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "Account"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr "Modifica la tua email, immagine, password o il tuo profilo"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Connetti"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect to services"
|
||||
msgstr "Connettiti con altri servizi"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
msgid "Change site configuration"
|
||||
msgstr "Modifica la configurazione del sito"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "Invita"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr "Invita amici e colleghi a seguirti su %s"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "Esci"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr "Termina la tua sessione sul sito"
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "Crea un account"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr "Accedi al sito"
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "Aiuto"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "Aiutami!"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "Cerca"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "Cerca persone o del testo"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr "Messaggio del sito"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr "Viste locali"
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr "Pagina messaggio"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr "Esplorazione secondaria del sito"
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "Informazioni"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "FAQ"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr "TOS"
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "Privacy"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "Sorgenti"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Contatti"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr "Badge"
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr "Licenza del software StatusNet"
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%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.broughtbyurl%%). "
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** è un servizio di microblog. "
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"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]"
|
||||
"(http://www.fsf.org/licensing/licenses/agpl-3.0.html)."
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
msgid "Site content license"
|
||||
msgstr "Licenza del contenuto del sito"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr "Tutti "
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr "licenza."
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr "Paginazione"
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr "Successivi"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr "Precedenti"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
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"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "Risultati comando"
|
||||
@ -5162,7 +5181,7 @@ msgstr ""
|
||||
"iniziare una conversazione con altri utenti. Altre persone possono mandare "
|
||||
"messaggi riservati solamente a te."
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
msgid "from"
|
||||
msgstr "via"
|
||||
|
||||
@ -5229,69 +5248,73 @@ msgstr "Invia un messaggio diretto"
|
||||
msgid "To"
|
||||
msgstr "A"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr "Caratteri disponibili"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr "Invia un messaggio"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "Cosa succede, %s?"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr "Allega"
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr "Allega un file"
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
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"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "N"
|
||||
msgstr "N"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr "S"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr "E"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr "O"
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr "presso"
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr "nel contesto"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
msgid "Repeated by"
|
||||
msgstr "Ripetuto da"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Rispondi a questo messaggio"
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "Rispondi"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
msgid "Notice repeated"
|
||||
msgstr "Messaggio ripetuto"
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -7,12 +7,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:43:16+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:11:54+0000\n"
|
||||
"Language-Team: Korean\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: ko\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -193,11 +193,11 @@ msgstr "사용자를 업데이트 할 수 없습니다."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "사용자를 업데이트 할 수 없습니다."
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "사용자 차단에 실패했습니다."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr "사용자 차단 해제에 실패했습니다."
|
||||
|
||||
@ -314,7 +314,7 @@ msgid "Could not find target user."
|
||||
msgstr "어떠한 상태도 찾을 수 없습니다."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr ""
|
||||
@ -322,25 +322,25 @@ msgstr ""
|
||||
"다."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십시오."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "유효한 별명이 아닙니다"
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "홈페이지 주소형식이 올바르지 않습니다."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "실명이 너무 깁니다. (최대 255글자)"
|
||||
@ -351,7 +351,7 @@ msgid "Description is too long (max %d chars)."
|
||||
msgstr "설명이 너무 길어요. (최대 140글자)"
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
msgstr "위치가 너무 깁니다. (최대 255글자)"
|
||||
@ -472,7 +472,7 @@ msgstr "너무 깁니다. 통지의 최대 길이는 140글자 입니다."
|
||||
msgid "Not found"
|
||||
msgstr "찾지 못함"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -603,7 +603,7 @@ msgid "Preview"
|
||||
msgstr "미리보기"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "삭제"
|
||||
|
||||
@ -616,13 +616,13 @@ msgid "Crop"
|
||||
msgstr "자르기"
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -695,7 +695,7 @@ msgstr "네, 맞습니다."
|
||||
msgid "Block this user"
|
||||
msgstr "이 사용자 차단하기"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
msgstr "정보차단을 저장하는데 실패했습니다."
|
||||
|
||||
@ -770,7 +770,7 @@ msgstr "그 주소는 이미 승인되었습니다."
|
||||
#: actions/confirmaddress.php:114 actions/emailsettings.php:296
|
||||
#: actions/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
msgstr "사용자를 업데이트 할 수 없습니다."
|
||||
@ -834,7 +834,7 @@ msgstr "정말로 통지를 삭제하시겠습니까?"
|
||||
msgid "Do not delete this notice"
|
||||
msgstr "이 통지를 지울 수 없습니다."
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:603
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:611
|
||||
msgid "Delete this notice"
|
||||
msgstr "이 게시글 삭제하기"
|
||||
|
||||
@ -983,7 +983,7 @@ msgstr ""
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: actions/useradminpanel.php:313 lib/designsettings.php:256
|
||||
@ -1493,7 +1493,7 @@ msgstr "%s 그룹 회원, %d페이지"
|
||||
msgid "A list of the users in this group."
|
||||
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"
|
||||
msgstr "관리자"
|
||||
|
||||
@ -1586,7 +1586,7 @@ msgstr ""
|
||||
msgid "User is not blocked from group."
|
||||
msgstr "회원이 당신을 차단해왔습니다."
|
||||
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:77
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:86
|
||||
msgid "Error removing the block."
|
||||
msgstr "차단 제거 에러!"
|
||||
|
||||
@ -1767,7 +1767,7 @@ msgstr "개인적인 메시지"
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
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"
|
||||
msgstr "보내기"
|
||||
|
||||
@ -1886,7 +1886,7 @@ msgstr "틀린 계정 또는 비밀 번호"
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "로그인"
|
||||
@ -1999,7 +1999,7 @@ msgstr "메시지"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "Ajax 에러입니다."
|
||||
|
||||
@ -2007,7 +2007,7 @@ msgstr "Ajax 에러입니다."
|
||||
msgid "New notice"
|
||||
msgstr "새로운 통지"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "게시글이 등록되었습니다."
|
||||
|
||||
@ -2444,69 +2444,78 @@ msgstr "위치"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "태그"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr "당신을 위한 태그, (문자,숫자,-, ., _로 구성) 콤마 혹은 공백으로 구분."
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "언어"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "언어 설정"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "타임존"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "당신이 주로 생활하는 곳이 어떤 타임존입니까?"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr "나에게 구독하는 사람에게 자동 구독 신청"
|
||||
|
||||
#: actions/profilesettings.php:221 actions/register.php:223
|
||||
#: actions/profilesettings.php:228 actions/register.php:223
|
||||
#, fuzzy, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
msgstr "자기소개가 너무 깁니다. (최대 140글자)"
|
||||
|
||||
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164
|
||||
#: actions/profilesettings.php:235 actions/siteadminpanel.php:164
|
||||
msgid "Timezone not selected."
|
||||
msgstr "타임존이 설정 되지 않았습니다."
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
msgstr "언어가 너무 깁니다. (최대 50글자)"
|
||||
|
||||
#: actions/profilesettings.php:246 actions/tagother.php:178
|
||||
#: actions/profilesettings.php:253 actions/tagother.php:178
|
||||
#, php-format
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "유효하지 않은태그: \"%s\""
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "프로필을 저장 할 수 없습니다."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
msgstr "태그를 저장할 수 없습니다."
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr "설정 저장"
|
||||
|
||||
@ -2604,7 +2613,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr "태그 클라우드"
|
||||
|
||||
@ -2742,7 +2751,7 @@ msgstr "확인 코드 오류"
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "회원가입"
|
||||
@ -2936,7 +2945,7 @@ msgstr "라이선스에 동의하지 않는다면 등록할 수 없습니다."
|
||||
msgid "You already repeated that notice."
|
||||
msgstr "당신은 이미 이 사용자를 차단하고 있습니다."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "생성"
|
||||
@ -4071,16 +4080,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었습니다."
|
||||
|
||||
#: classes/Notice.php:319 classes/Notice.php:344
|
||||
#: classes/Notice.php:309 classes/Notice.php:334
|
||||
msgid "Problem saving notice."
|
||||
msgstr "통지를 저장하는데 문제가 발생했습니다."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "답신을 추가 할 때에 데이타베이스 에러 : %s"
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, fuzzy, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "%1$s (%2$s)"
|
||||
@ -4136,131 +4145,131 @@ msgstr "%s - %s"
|
||||
msgid "Untitled page"
|
||||
msgstr "제목없는 페이지"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr "주 사이트 네비게이션"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "홈"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr "개인 프로필과 친구 타임라인"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "계정"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr "당신의 이메일, 아바타, 비밀 번호, 프로필을 변경하세요."
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "연결"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
#, fuzzy
|
||||
msgid "Connect to services"
|
||||
msgstr "서버에 재접속 할 수 없습니다 : %s"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
#, fuzzy
|
||||
msgid "Change site configuration"
|
||||
msgstr "주 사이트 네비게이션"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "초대"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다."
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "로그아웃"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr "이 사이트로부터 로그아웃"
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "계정 만들기"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr "이 사이트 로그인"
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "도움말"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "도움이 필요해!"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "검색"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "프로필이나 텍스트 검색"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr "사이트 공지"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr "로컬 뷰"
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr "페이지 공지"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr "보조 사이트 네비게이션"
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "정보"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "자주 묻는 질문"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "개인정보 취급방침"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "소스 코드"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "연락하기"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
#, fuzzy
|
||||
msgid "Badge"
|
||||
msgstr "찔러 보기"
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr "라코니카 소프트웨어 라이선스"
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%site.name%%** is a microblogging service brought to you by [%%site."
|
||||
@ -4269,12 +4278,12 @@ msgstr ""
|
||||
"**%%site.name%%** 는 [%%site.broughtby%%](%%site.broughtbyurl%%)가 제공하는 "
|
||||
"마이크로블로깅서비스입니다."
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다."
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
|
||||
@ -4285,32 +4294,32 @@ msgstr ""
|
||||
"을 사용합니다. StatusNet는 [GNU Affero General Public License](http://www."
|
||||
"fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다."
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
#, fuzzy
|
||||
msgid "Site content license"
|
||||
msgstr "라코니카 소프트웨어 라이선스"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr "모든 것"
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr "라이선스"
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr "페이지수"
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr "뒷 페이지"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr "앞 페이지"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "당신의 세션토큰관련 문제가 있습니다."
|
||||
|
||||
@ -4370,6 +4379,16 @@ msgstr ""
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "실행결과"
|
||||
@ -5049,7 +5068,7 @@ msgid ""
|
||||
"users in conversation. People can send you messages for your eyes only."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
#, fuzzy
|
||||
msgid "from"
|
||||
msgstr "다음에서:"
|
||||
@ -5114,72 +5133,76 @@ msgstr "직접 메시지 보내기"
|
||||
msgid "To"
|
||||
msgstr "에게"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr "사용 가능한 글자"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr "게시글 보내기"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "뭐하세요? %?"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
#, fuzzy
|
||||
msgid "N"
|
||||
msgstr "아니오"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
#, fuzzy
|
||||
msgid "in context"
|
||||
msgstr "내용이 없습니다!"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "생성"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "이 게시글에 대해 답장하기"
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "답장하기"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "게시글이 등록되었습니다."
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -8,12 +8,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:43:22+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:12:02+0000\n"
|
||||
"Language-Team: Norwegian (bokmål)\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (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-Language-Code: no\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -199,11 +199,11 @@ msgstr "Klarte ikke å oppdatere bruker."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "Du kan ikke blokkere deg selv!"
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "Blokkering av bruker mislyktes."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr "Oppheving av blokkering av bruker mislyktes."
|
||||
|
||||
@ -317,31 +317,31 @@ msgid "Could not find target user."
|
||||
msgstr "Klarte ikke å oppdatere bruker."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr "Kallenavn kan kun ha små bokstaver og tall og ingen mellomrom."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Det nicket er allerede i bruk. Prøv et annet."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "Ugyldig nick."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "Hjemmesiden er ikke en gyldig URL."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
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)."
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
msgstr ""
|
||||
@ -471,7 +471,7 @@ msgstr ""
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -602,7 +602,7 @@ msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
#, fuzzy
|
||||
msgid "Delete"
|
||||
msgstr "slett"
|
||||
@ -616,13 +616,13 @@ msgid "Crop"
|
||||
msgstr ""
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -695,7 +695,7 @@ msgstr "Ja"
|
||||
msgid "Block this user"
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
msgstr ""
|
||||
|
||||
@ -769,7 +769,7 @@ msgstr ""
|
||||
#: actions/confirmaddress.php:114 actions/emailsettings.php:296
|
||||
#: actions/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
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"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -975,7 +975,7 @@ msgstr ""
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: actions/useradminpanel.php:313 lib/designsettings.php:256
|
||||
@ -1472,7 +1472,7 @@ msgstr ""
|
||||
msgid "A list of the users in this group."
|
||||
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"
|
||||
msgstr "Administrator"
|
||||
|
||||
@ -1561,7 +1561,7 @@ msgstr ""
|
||||
msgid "User is not blocked from group."
|
||||
msgstr ""
|
||||
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:77
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:86
|
||||
msgid "Error removing the block."
|
||||
msgstr ""
|
||||
|
||||
@ -1734,7 +1734,7 @@ msgstr ""
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
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"
|
||||
msgstr "Send"
|
||||
|
||||
@ -1853,7 +1853,7 @@ msgstr "Feil brukernavn eller passord"
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "Logg inn"
|
||||
@ -1961,7 +1961,7 @@ msgstr ""
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1969,7 +1969,7 @@ msgstr ""
|
||||
msgid "New notice"
|
||||
msgstr ""
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr ""
|
||||
|
||||
@ -2396,71 +2396,80 @@ msgstr ""
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "Tagger"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "Språk"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "Tidssone"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
"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
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:246 actions/tagother.php:178
|
||||
#: actions/profilesettings.php:253 actions/tagother.php:178
|
||||
#, fuzzy, php-format
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Ugyldig hjemmeside '%s'"
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "Klarte ikke å lagre profil."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
#, fuzzy
|
||||
msgid "Couldn't save tags."
|
||||
msgstr "Klarte ikke å lagre profil."
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr ""
|
||||
|
||||
@ -2554,7 +2563,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr ""
|
||||
|
||||
@ -2692,7 +2701,7 @@ msgstr ""
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
@ -2878,7 +2887,7 @@ msgstr ""
|
||||
msgid "You already repeated that notice."
|
||||
msgstr "Du er allerede logget inn!"
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "Opprett"
|
||||
@ -3978,16 +3987,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:319 classes/Notice.php:344
|
||||
#: classes/Notice.php:309 classes/Notice.php:334
|
||||
msgid "Problem saving notice."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr ""
|
||||
@ -4045,131 +4054,131 @@ msgstr ""
|
||||
msgid "Untitled page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "Hjem"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
#, fuzzy
|
||||
msgid "Account"
|
||||
msgstr "Om"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Koble til"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect to services"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
msgid "Change site configuration"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "Logg ut"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
#, fuzzy
|
||||
msgid "Create an account"
|
||||
msgstr "Opprett en ny konto"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "Hjelp"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
#, fuzzy
|
||||
msgid "Help me!"
|
||||
msgstr "Hjelp"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "Søk"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "Om"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "OSS/FAQ"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "Kilde"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%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."
|
||||
"broughtbyurl%%). "
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** er en mikrobloggingtjeneste. "
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
|
||||
@ -4191,32 +4200,32 @@ msgid ""
|
||||
"org/licensing/licenses/agpl-3.0.html)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
msgid "Site content license"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
#, fuzzy
|
||||
msgid "Before"
|
||||
msgstr "Tidligere »"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
@ -4269,6 +4278,16 @@ msgstr ""
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr ""
|
||||
@ -4952,7 +4971,7 @@ msgid ""
|
||||
"users in conversation. People can send you messages for your eyes only."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
#, fuzzy
|
||||
msgid "from"
|
||||
msgstr "fra"
|
||||
@ -5017,72 +5036,76 @@ msgstr ""
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
#, fuzzy
|
||||
msgid "Available characters"
|
||||
msgstr "6 eller flere tegn"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "N"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "Opprett"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
#, fuzzy
|
||||
msgid "Reply"
|
||||
msgstr "svar"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Nytt nick"
|
||||
|
@ -9,12 +9,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:43:30+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:12:13+0000\n"
|
||||
"Language-Team: Dutch\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: nl\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!"
|
||||
msgstr "U kunt zichzelf niet blokkeren!"
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "Het blokkeren van de gebruiker is mislukt."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
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."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr ""
|
||||
@ -329,26 +329,26 @@ msgstr ""
|
||||
"geen spaties bevatten."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr ""
|
||||
"De opgegeven gebruikersnaam is al in gebruik. Kies een andere gebruikersnaam."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "Geen geldige gebruikersnaam."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "De thuispagina is geen geldige URL."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
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."
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
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"
|
||||
msgstr "Niet gevonden"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -606,7 +606,7 @@ msgid "Preview"
|
||||
msgstr "Voorvertoning"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "Verwijderen"
|
||||
|
||||
@ -619,13 +619,13 @@ msgid "Crop"
|
||||
msgstr "Uitsnijden"
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -701,7 +701,7 @@ msgstr "Ja"
|
||||
msgid "Block this user"
|
||||
msgstr "Deze gebruiker blokkeren"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
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/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
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"
|
||||
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"
|
||||
msgstr "Deze mededeling verwijderen"
|
||||
|
||||
@ -975,7 +975,7 @@ msgstr "Standaardinstellingen toepassen"
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: 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."
|
||||
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"
|
||||
msgstr "Beheerder"
|
||||
|
||||
@ -1584,7 +1584,7 @@ msgstr "Alleen beheerders kunnen groepsleden deblokkeren."
|
||||
msgid "User is not blocked from group."
|
||||
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."
|
||||
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."
|
||||
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"
|
||||
msgstr "Verzenden"
|
||||
|
||||
@ -1896,7 +1896,7 @@ msgstr ""
|
||||
"Er is een fout opgetreden bij het maken van de instellingen. U hebt "
|
||||
"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
|
||||
msgid "Login"
|
||||
msgstr "Aanmelden"
|
||||
@ -2007,7 +2007,7 @@ msgstr "Bericht verzonden."
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "Er is een Ajax-fout opgetreden"
|
||||
|
||||
@ -2015,7 +2015,7 @@ msgstr "Er is een Ajax-fout opgetreden"
|
||||
msgid "New notice"
|
||||
msgstr "Nieuw bericht"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "De mededeling is verzonden"
|
||||
|
||||
@ -2448,75 +2448,83 @@ msgstr "Locatie"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "Labels"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
"Eigen labels (letter, getallen, -, ., en _). Gescheiden door komma's of "
|
||||
"spaties"
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "Taal"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "Voorkeurstaal"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "Tijdzone"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "In welke tijdzone verblijft u meestal?"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
"Automatisch abonneren bij abonnement op mij (beste voor automatische "
|
||||
"processen)"
|
||||
|
||||
#: actions/profilesettings.php:221 actions/register.php:223
|
||||
#: actions/profilesettings.php:228 actions/register.php:223
|
||||
#, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
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."
|
||||
msgstr "Er is geen tijdzone geselecteerd."
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
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
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Ongeldig label: '%s'"
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
msgstr ""
|
||||
"Het was niet mogelijk de instelling voor automatisch abonneren voor de "
|
||||
"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."
|
||||
msgstr "Het profiel kon niet opgeslagen worden."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
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."
|
||||
msgstr "De instellingen zijn opgeslagen."
|
||||
|
||||
@ -2623,7 +2631,7 @@ msgstr ""
|
||||
"U kunt een [gebruiker registeren](%%action.register%%) en dan de eerste zijn "
|
||||
"die er een plaatst!"
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr "Woordwolk"
|
||||
|
||||
@ -2768,7 +2776,7 @@ msgstr "Sorry. De uitnodigingscode is ongeldig."
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "Registreren"
|
||||
@ -2959,7 +2967,7 @@ msgstr "U kunt uw eigen mededeling niet herhalen."
|
||||
msgid "You already repeated that notice."
|
||||
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"
|
||||
msgstr "Herhaald"
|
||||
|
||||
@ -3576,15 +3584,15 @@ msgstr "U hebt dit al ingesteld als uw telefoonnummer."
|
||||
|
||||
#: actions/smssettings.php:321
|
||||
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
|
||||
msgid ""
|
||||
"A confirmation code was sent to the phone number you added. Check your phone "
|
||||
"for the code and instructions on how to use it."
|
||||
msgstr ""
|
||||
"Er is een bevestigingscode is verzonden naar het telefoonnummer dat u hebt "
|
||||
"toegevoegd. Controleer uw telefoon voor de code en instructies."
|
||||
"Er is een bevestigingscode verzonden naar het telefoonnummer dat u hebt "
|
||||
"toegevoegd. Op uw telefoon vindt u de code en de instructies."
|
||||
|
||||
#: actions/smssettings.php:374
|
||||
msgid "That is the wrong confirmation number."
|
||||
@ -4126,17 +4134,17 @@ msgid "You are banned from posting notices on this site."
|
||||
msgstr ""
|
||||
"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."
|
||||
msgstr "Er is een probleem opgetreden bij het opslaan van de mededeling."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr ""
|
||||
"Er is een databasefout opgetreden bij het invoegen van het antwoord: %s"
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
@ -4191,128 +4199,128 @@ msgstr "%s - %s"
|
||||
msgid "Untitled page"
|
||||
msgstr "Naamloze pagina"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr "Primaire sitenavigatie"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "Start"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr "Persoonlijk profiel en tijdlijn van vrienden"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "Gebruiker"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr "Uw e-mailadres, avatar, wachtwoord of profiel wijzigen"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Koppelen"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect to services"
|
||||
msgstr "Met diensten verbinden"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
msgid "Change site configuration"
|
||||
msgstr "Websiteinstellingen wijzigen"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "Uitnodigen"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr "Vrienden en collega's uitnodigen om u te vergezellen op %s"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "Afmelden"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr "Van de site afmelden"
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "Gebruiker aanmaken"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr "Bij de site aanmelden"
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "Help"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "Help me!"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "Zoeken"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "Naar gebruikers of tekst zoeken"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr "Mededeling van de website"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr "Lokale weergaven"
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr "Mededeling van de pagina"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr "Secundaire sitenavigatie"
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "Over"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "Veel gestelde vragen"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr "Gebruiksvoorwaarden"
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "Privacy"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "Broncode"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Contact"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr "Widget"
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr "Licentie van de StatusNet-software"
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%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."
|
||||
"broughtbyurl%%). "
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** is een microblogdienst. "
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"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://"
|
||||
"www.fsf.org/licensing/licenses/agpl-3.0.html)."
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
msgid "Site content license"
|
||||
msgstr "Licentie voor siteinhoud"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr "Alle "
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr "licentie."
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr "Paginering"
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr "Later"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr "Eerder"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Er is een probleem met uw sessietoken."
|
||||
|
||||
@ -4413,6 +4421,16 @@ msgstr "Mededelingen die deze bijlage bevatten"
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "Commandoresultaten"
|
||||
@ -5216,7 +5234,7 @@ msgstr ""
|
||||
"U hebt geen privéberichten. U kunt privéberichten verzenden aan andere "
|
||||
"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"
|
||||
msgstr "van"
|
||||
|
||||
@ -5286,69 +5304,73 @@ msgstr "Directe mededeling verzenden"
|
||||
msgid "To"
|
||||
msgstr "Aan"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr "Beschikbare tekens"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr "Mededeling verzenden"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "Hallo, %s."
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr "Toevoegen"
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
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
|
||||
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"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "N"
|
||||
msgstr "N"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr "Z"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr "O"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr "W"
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr "op"
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr "in context"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
msgid "Repeated by"
|
||||
msgstr "Herhaald door"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Op deze mededeling antwoorden"
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "Antwoorden"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
msgid "Notice repeated"
|
||||
msgstr "Mededeling herhaald"
|
||||
|
||||
@ -5479,9 +5501,8 @@ msgid "Popular"
|
||||
msgstr "Populair"
|
||||
|
||||
#: lib/repeatform.php:107
|
||||
#, fuzzy
|
||||
msgid "Repeat this notice?"
|
||||
msgstr "Deze mededeling herhalen"
|
||||
msgstr "Deze mededeling herhalen?"
|
||||
|
||||
#: lib/repeatform.php:132
|
||||
msgid "Repeat this notice"
|
||||
|
@ -7,12 +7,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:43:26+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:12:07+0000\n"
|
||||
"Language-Team: Norwegian Nynorsk\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (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-Language-Code: nn\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -193,11 +193,11 @@ msgstr "Kan ikkje oppdatera brukar."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "Kan ikkje oppdatera brukar."
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "Blokkering av brukar feila."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr "De-blokkering av brukar feila."
|
||||
|
||||
@ -314,31 +314,31 @@ msgid "Could not find target user."
|
||||
msgstr "Kan ikkje finna einkvan status."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr "Kallenamn må berre ha små bokstavar og nummer, ingen mellomrom."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Kallenamnet er allereie i bruk. Prøv eit anna."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "Ikkje eit gyldig brukarnamn."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "Heimesida er ikkje ei gyldig internettadresse."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
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)."
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
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"
|
||||
msgstr "Fann ikkje"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -601,7 +601,7 @@ msgid "Preview"
|
||||
msgstr "Forhandsvis"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "Slett"
|
||||
|
||||
@ -614,13 +614,13 @@ msgid "Crop"
|
||||
msgstr "Skaler"
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -693,7 +693,7 @@ msgstr "Jau"
|
||||
msgid "Block this user"
|
||||
msgstr "Blokkér denne brukaren"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
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/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
msgstr "Kan ikkje oppdatera brukar."
|
||||
@ -833,7 +833,7 @@ msgstr "Sikker på at du vil sletta notisen?"
|
||||
msgid "Do not delete this notice"
|
||||
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"
|
||||
msgstr "Slett denne notisen"
|
||||
|
||||
@ -982,7 +982,7 @@ msgstr ""
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: 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."
|
||||
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"
|
||||
msgstr "Administrator"
|
||||
|
||||
@ -1586,7 +1586,7 @@ msgstr ""
|
||||
msgid "User is not blocked from group."
|
||||
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."
|
||||
msgstr "Feil ved fjerning av blokka."
|
||||
|
||||
@ -1769,7 +1769,7 @@ msgstr "Personleg melding"
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
msgstr "Eventuelt legg til ei personleg melding til invitasjonen."
|
||||
|
||||
#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:222
|
||||
#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
|
||||
msgid "Send"
|
||||
msgstr "Send"
|
||||
|
||||
@ -1888,7 +1888,7 @@ msgstr "Feil brukarnamn eller passord"
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "Logg inn"
|
||||
@ -2003,7 +2003,7 @@ msgstr "Melding"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "Ajax feil"
|
||||
|
||||
@ -2011,7 +2011,7 @@ msgstr "Ajax feil"
|
||||
msgid "New notice"
|
||||
msgstr "Ny notis"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "Melding lagra"
|
||||
|
||||
@ -2450,72 +2450,81 @@ msgstr "Plassering"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "Merkelappar"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
"merkelappar for deg sjølv ( bokstavar, nummer, -, ., og _ ), komma eller "
|
||||
"mellomroms separert."
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "Språk"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "Foretrukke språk"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "Tidssone"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "Kva tidssone er du vanlegvis i?"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
"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
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
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."
|
||||
msgstr "Tidssone er ikkje valt."
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
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
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Ugyldig merkelapp: %s"
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "Kan ikkje lagra profil."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
msgstr "Kan ikkje lagra merkelapp."
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr "Lagra innstillingar."
|
||||
|
||||
@ -2613,7 +2622,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr "Emne sky"
|
||||
|
||||
@ -2752,7 +2761,7 @@ msgstr "Feil med stadfestingskode."
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
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."
|
||||
msgstr "Du har allereie blokkert denne brukaren."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
#, fuzzy
|
||||
msgid "Repeated"
|
||||
msgstr "Lag"
|
||||
@ -4088,16 +4097,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
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."
|
||||
msgstr "Eit problem oppstod ved lagring av notis."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Databasefeil, kan ikkje lagra svar: %s"
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, fuzzy, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "%1$s (%2$s)"
|
||||
@ -4153,131 +4162,131 @@ msgstr "%s - %s"
|
||||
msgid "Untitled page"
|
||||
msgstr "Ingen tittel"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr "Navigasjon for hovudsida"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "Heim"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr "Personleg profil og oversyn over vener"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr "Endra e-posten, avataren, passordet eller profilen"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Kopla til"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
#, fuzzy
|
||||
msgid "Connect to services"
|
||||
msgstr "Klarte ikkje å omdirigera til tenaren: %s"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
#, fuzzy
|
||||
msgid "Change site configuration"
|
||||
msgstr "Navigasjon for hovudsida"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "Invitér"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr "Inviter vennar og kollega til å bli med deg på %s"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "Logg ut"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr "Logg ut or sida"
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "Opprett ny konto"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr "Logg inn or sida"
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "Hjelp"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "Hjelp meg!"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "Søk"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "Søk etter folk eller innhald"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr "Statusmelding"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr "Lokale syningar"
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr "Sidenotis"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr "Andrenivås side navigasjon"
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "Om"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "OSS"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "Personvern"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "Kjeldekode"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
#, fuzzy
|
||||
msgid "Badge"
|
||||
msgstr "Dult"
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr "StatusNets programvarelisens"
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%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."
|
||||
"broughtbyurl%%). "
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** er ei mikrobloggingteneste. "
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"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."
|
||||
"org/licensing/licenses/agpl-3.0.html)."
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
#, fuzzy
|
||||
msgid "Site content license"
|
||||
msgstr "StatusNets programvarelisens"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr "Alle"
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr "lisens."
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr "Paginering"
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr "« Etter"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr "Før »"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Det var eit problem med sesjons billetten din."
|
||||
|
||||
@ -4387,6 +4396,16 @@ msgstr ""
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "Resultat frå kommandoen"
|
||||
@ -5076,7 +5095,7 @@ msgid ""
|
||||
"users in conversation. People can send you messages for your eyes only."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
#, fuzzy
|
||||
msgid "from"
|
||||
msgstr " frå "
|
||||
@ -5141,72 +5160,76 @@ msgstr "Send ei direkte melding"
|
||||
msgid "To"
|
||||
msgstr "Til"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr "Tilgjenglege teikn"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr "Send ei melding"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "Kva skjer, %s?"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
#, fuzzy
|
||||
msgid "N"
|
||||
msgstr "Nei"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
#, fuzzy
|
||||
msgid "in context"
|
||||
msgstr "Ingen innhald."
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
#, fuzzy
|
||||
msgid "Repeated by"
|
||||
msgstr "Lag"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Svar på denne notisen"
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "Svar"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
#, fuzzy
|
||||
msgid "Notice repeated"
|
||||
msgstr "Melding lagra"
|
||||
|
@ -10,8 +10,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:43:34+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:12:18+0000\n"
|
||||
"Last-Translator: Piotr Drąg <piotrdrag@gmail.com>\n"
|
||||
"Language-Team: Polish <pl@li.org>\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -19,7 +19,7 @@ msgstr ""
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||
"|| n%100>=20) ? 1 : 2);\n"
|
||||
"X-Generator: MediaWiki 1.16alpha (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-Language-Code: pl\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -203,11 +203,11 @@ msgstr "Nie można zaktualizować wyglądu."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "Nie można zablokować siebie."
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "Zablokowanie użytkownika nie powiodło się."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
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."
|
||||
|
||||
#: 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
|
||||
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."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Pseudonim jest już używany. Spróbuj innego."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "To nie jest prawidłowy pseudonim."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "Strona domowa nie jest prawidłowym adresem URL."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
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)."
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
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"
|
||||
msgstr "Nie odnaleziono"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr "Maksymalny rozmiar wpisu wynosi %d znaków, w tym adres URL załącznika."
|
||||
@ -601,7 +601,7 @@ msgid "Preview"
|
||||
msgstr "Podgląd"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "Usuń"
|
||||
|
||||
@ -614,13 +614,13 @@ msgid "Crop"
|
||||
msgstr "Przytnij"
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -693,7 +693,7 @@ msgstr "Tak"
|
||||
msgid "Block this user"
|
||||
msgstr "Zablokuj tego użytkownika"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
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/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
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"
|
||||
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"
|
||||
msgstr "Usuń ten wpis"
|
||||
|
||||
@ -963,7 +963,7 @@ msgstr "Przywróć domyślne ustawienia"
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: actions/useradminpanel.php:313 lib/designsettings.php:256
|
||||
@ -1268,9 +1268,9 @@ msgid "Featured users, page %d"
|
||||
msgstr "Znani użytkownicy, strona %d"
|
||||
|
||||
#: actions/featured.php:99
|
||||
#, fuzzy, php-format
|
||||
#, php-format
|
||||
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
|
||||
msgid "No notice ID."
|
||||
@ -1460,7 +1460,7 @@ msgstr "Członkowie grupy %s, strona %d"
|
||||
msgid "A list of the users in this group."
|
||||
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"
|
||||
msgstr "Administrator"
|
||||
|
||||
@ -1558,7 +1558,7 @@ msgstr "Tylko administrator może odblokowywać członków grupy."
|
||||
msgid "User is not blocked from group."
|
||||
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."
|
||||
msgstr "Błąd podczas usuwania blokady."
|
||||
|
||||
@ -1744,7 +1744,7 @@ msgstr "Osobista wiadomość"
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
msgstr "Opcjonalnie dodaj osobistą wiadomość do zaproszenia."
|
||||
|
||||
#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:222
|
||||
#: actions/invite.php:197 lib/messageform.php:178 lib/noticeform.php:232
|
||||
msgid "Send"
|
||||
msgstr "Wyślij"
|
||||
|
||||
@ -1866,7 +1866,7 @@ msgstr "Niepoprawna nazwa użytkownika lub hasło."
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "Zaloguj się"
|
||||
@ -1979,7 +1979,7 @@ msgstr "Wysłano wiadomość"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "Błąd AJAX"
|
||||
|
||||
@ -1987,7 +1987,7 @@ msgstr "Błąd AJAX"
|
||||
msgid "New notice"
|
||||
msgstr "Nowy wpis"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "Wysłano wpis"
|
||||
|
||||
@ -2418,72 +2418,80 @@ msgstr "Położenie"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "Znaczniki"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
"Znaczniki dla siebie (litery, liczby, -, . i _), oddzielone przecinkami lub "
|
||||
"spacjami"
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "Język"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "Preferowany język"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "Strefa czasowa"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "W jakiej strefie czasowej zwykle się znajdujesz?"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
"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
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
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."
|
||||
msgstr "Nie wybrano strefy czasowej."
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
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
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Nieprawidłowy znacznik: \"%s\""
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "Nie można zapisać profilu."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
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."
|
||||
msgstr "Zapisano ustawienia."
|
||||
|
||||
@ -2589,7 +2597,7 @@ msgstr ""
|
||||
"Dlaczego nie [zarejestrujesz konta](%%action.register%%) i zostaniesz "
|
||||
"pierwszym, który go wyśle."
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr "Chmura znaczników"
|
||||
|
||||
@ -2729,7 +2737,7 @@ msgstr "Nieprawidłowy kod zaproszenia."
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "Zarejestruj się"
|
||||
@ -2921,7 +2929,7 @@ msgstr "Nie można powtórzyć własnego wpisu."
|
||||
msgid "You already repeated that notice."
|
||||
msgstr "Już powtórzono ten wpis."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
msgid "Repeated"
|
||||
msgstr "Powtórzono"
|
||||
|
||||
@ -4073,16 +4081,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
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."
|
||||
msgstr "Problem podczas zapisywania wpisu."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Błąd bazy danych podczas wprowadzania odpowiedzi: %s"
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
@ -4137,128 +4145,128 @@ msgstr "%s - %s"
|
||||
msgid "Untitled page"
|
||||
msgstr "Strona bez nazwy"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr "Główna nawigacja strony"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "Strona domowa"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr "Profil osobisty i oś czasu przyjaciół"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr "Zmień adres e-mail, awatar, hasło, profil"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Połącz"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect to services"
|
||||
msgstr "Połącz z serwisami"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
msgid "Change site configuration"
|
||||
msgstr "Zmień konfigurację strony"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "Zaproś"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr "Zaproś przyjaciół i kolegów do dołączenia do ciebie na %s"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "Wyloguj się"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr "Wyloguj się ze strony"
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "Utwórz konto"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr "Zaloguj się na stronę"
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "Pomoc"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "Pomóż mi."
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "Wyszukaj"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "Wyszukaj osoby lub tekst"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr "Wpis strony"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr "Lokalne widoki"
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr "Wpis strony"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr "Druga nawigacja strony"
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "O usłudze"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "FAQ"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr "TOS"
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "Prywatność"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "Kod źródłowy"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr "Odznaka"
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr "Licencja oprogramowania StatusNet"
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%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."
|
||||
"broughtby%%](%%site.broughtbyurl%%). "
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** jest usługą mikroblogowania. "
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"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 "
|
||||
"Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)."
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
msgid "Site content license"
|
||||
msgstr "Licencja zawartości strony"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr "Wszystko "
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr "licencja."
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr "Paginacja"
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr "Później"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr "Wcześniej"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Wystąpił problem z tokenem sesji."
|
||||
|
||||
@ -4359,6 +4367,16 @@ msgstr "Powiadamia, kiedy pojawia się ten załącznik"
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "Wyniki polecenia"
|
||||
@ -4566,7 +4584,6 @@ msgstr[1] "Jesteś członkiem tych grup:"
|
||||
msgstr[2] "Jesteś członkiem tych grup:"
|
||||
|
||||
#: lib/command.php:745
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
"Commands:\n"
|
||||
"on - turn on notifications\n"
|
||||
@ -4610,38 +4627,41 @@ msgstr ""
|
||||
"on - włącza powiadomienia\n"
|
||||
"off - wyłącza powiadomienia\n"
|
||||
"help - wyświetla tę pomoc\n"
|
||||
"follow <pseudonim> - subskrybuje użytkownika\n"
|
||||
"groups - wyświetla listę grup, do których dołączono\n"
|
||||
"follow <pseudonim> - włącza obserwowanie użytkownika\n"
|
||||
"groups - wyświetla listę grup, do których dołączyłeś\n"
|
||||
"subscriptions - wyświetla listę obserwowanych osób\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"
|
||||
"get <pseudonim> - uzyskuje ostatni wpis użytkownika\n"
|
||||
"whois <pseudonim> - uzyskuje informacje o profilu użytkownika\n"
|
||||
"get <pseudonim> - zwraca ostatni wpis użytkownika\n"
|
||||
"whois <pseudonim> - zwraca informacje o profilu użytkownika\n"
|
||||
"fav <pseudonim> - dodaje ostatni wpis użytkownika jako \"ulubiony\"\n"
|
||||
"fav #<identyfikator_wpisu> - dodaje wpis z podanym identyfikatorem jako "
|
||||
"\"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 <pseudonim> - odpowiada na ostatni wpis użytkownika\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"
|
||||
"stats - uzyskuje statystyki\n"
|
||||
"stats - pobiera statystyki\n"
|
||||
"stop - to samo co \"off\"\n"
|
||||
"quit - to samo co \"off\"\n"
|
||||
"sub <pseudonim> - to samo co \"follow\"\n"
|
||||
"unsub <pseudonim> - to samo co \"leave\"\n"
|
||||
"last <pseudonim> - to samo co \"get\"\n"
|
||||
"on <pseudonim> - jeszcze nie zaimplementowano.\n"
|
||||
"off <pseudonim> - jeszcze nie zaimplementowano.\n"
|
||||
"nudge <pseudonim> - przypomina użytkownikowi o aktualizacji.\n"
|
||||
"invite <numer telefonu> - jeszcze nie zaimplementowano.\n"
|
||||
"track <wyraz> - jeszcze nie zaimplementowano.\n"
|
||||
"untrack <wyraz> - jeszcze nie zaimplementowano.\n"
|
||||
"track off - jeszcze nie zaimplementowano.\n"
|
||||
"untrack all - jeszcze nie zaimplementowano.\n"
|
||||
"tracks - jeszcze nie zaimplementowano.\n"
|
||||
"tracking - jeszcze nie zaimplementowano.\n"
|
||||
"on <pseudonim> - jeszcze nie zaimplementowano\n"
|
||||
"off <pseudonim> - jeszcze nie zaimplementowano\n"
|
||||
"nudge <pseudonim> - przypomina użytkownikowi o aktualizacji\n"
|
||||
"invite <numer telefonu> - jeszcze nie zaimplementowano\n"
|
||||
"track <wyraz> - jeszcze nie zaimplementowano\n"
|
||||
"untrack <wyraz> - jeszcze nie zaimplementowano\n"
|
||||
"track off - jeszcze nie zaimplementowano\n"
|
||||
"untrack all - jeszcze nie zaimplementowano\n"
|
||||
"tracks - jeszcze nie zaimplementowano\n"
|
||||
"tracking - jeszcze nie zaimplementowano\n"
|
||||
|
||||
#: lib/common.php:199
|
||||
msgid "No configuration file found. "
|
||||
@ -5157,7 +5177,7 @@ msgstr ""
|
||||
"rozmowę z innymi użytkownikami. Inni mogą wysyłać ci wiadomości tylko dla "
|
||||
"twoich oczu."
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
msgid "from"
|
||||
msgstr "z"
|
||||
|
||||
@ -5222,69 +5242,73 @@ msgstr "Wyślij bezpośredni wpis"
|
||||
msgid "To"
|
||||
msgstr "Do"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr "Dostępne znaki"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr "Wyślij wpis"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "Co słychać, %s?"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr "Załącz"
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
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
|
||||
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"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "N"
|
||||
msgstr "Północ"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr "Południe"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr "Wschód"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr "Zachód"
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr "w"
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr "w rozmowie"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
msgid "Repeated by"
|
||||
msgstr "Powtórzone przez"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Odpowiedz na ten wpis"
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "Odpowiedz"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
msgid "Notice repeated"
|
||||
msgstr "Powtórzono wpis"
|
||||
|
||||
@ -5414,9 +5438,8 @@ msgid "Popular"
|
||||
msgstr "Popularne"
|
||||
|
||||
#: lib/repeatform.php:107
|
||||
#, fuzzy
|
||||
msgid "Repeat this notice?"
|
||||
msgstr "Powtórz ten wpis"
|
||||
msgstr "Powtórzyć ten wpis?"
|
||||
|
||||
#: lib/repeatform.php:132
|
||||
msgid "Repeat this notice"
|
||||
|
@ -9,12 +9,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:43:38+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:12:21+0000\n"
|
||||
"Language-Team: Portuguese\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: pt\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!"
|
||||
msgstr "Os utilizadores não podem bloquear-se a si próprios!"
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "Bloqueio do utilizador falhou."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
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."
|
||||
|
||||
#: 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
|
||||
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."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Alcunha já é usada. Tente outra."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "Alcunha não é válida."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "Página de acolhimento não é uma URL válida."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
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)."
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
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"
|
||||
msgstr "Não encontrado"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr "Tamanho máx. das notas é %d caracteres, incluíndo a URL do anexo."
|
||||
@ -594,7 +594,7 @@ msgid "Preview"
|
||||
msgstr "Antevisão"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "Apagar"
|
||||
|
||||
@ -607,13 +607,13 @@ msgid "Crop"
|
||||
msgstr "Cortar"
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -687,7 +687,7 @@ msgstr "Sim"
|
||||
msgid "Block this user"
|
||||
msgstr "Bloquear este utilizador"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
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/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
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"
|
||||
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"
|
||||
msgstr "Apagar esta nota"
|
||||
|
||||
@ -960,7 +960,7 @@ msgstr "Repor predefinição"
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: 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
|
||||
msgid "Disfavor favorite"
|
||||
msgstr "Desfavorecer favorita"
|
||||
msgstr "Retirar das favoritas"
|
||||
|
||||
#: actions/favorited.php:65 lib/popularnoticesection.php:88
|
||||
#: 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."
|
||||
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"
|
||||
msgstr "Admin"
|
||||
|
||||
@ -1562,7 +1562,7 @@ msgstr "Só um administrador pode desbloquear membros de um grupo."
|
||||
msgid "User is not blocked from group."
|
||||
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."
|
||||
msgstr "Erro ao remover o bloqueio."
|
||||
|
||||
@ -1749,7 +1749,7 @@ msgstr "Mensagem pessoal"
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
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"
|
||||
msgstr "Enviar"
|
||||
|
||||
@ -1864,13 +1864,13 @@ msgstr "Chave inválida ou expirada."
|
||||
|
||||
#: actions/login.php:147
|
||||
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
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "Entrar"
|
||||
@ -1902,7 +1902,7 @@ msgstr ""
|
||||
|
||||
#: actions/login.php:267
|
||||
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
|
||||
msgid ""
|
||||
@ -1910,7 +1910,7 @@ msgid ""
|
||||
"changing your settings."
|
||||
msgstr ""
|
||||
"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
|
||||
#, php-format
|
||||
@ -1983,7 +1983,7 @@ msgstr "Mensagem enviada"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "Erro do Ajax"
|
||||
|
||||
@ -1991,7 +1991,7 @@ msgstr "Erro do Ajax"
|
||||
msgid "New notice"
|
||||
msgstr "Nota nova"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "Nota publicada"
|
||||
|
||||
@ -2220,7 +2220,7 @@ msgstr "Sem acesso de escrita no directório do fundo: %s"
|
||||
#: actions/pathsadminpanel.php:160
|
||||
#, php-format
|
||||
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
|
||||
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\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "Categorias"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
"Categorias para si (letras, números, -, ., _), separadas por vírgulas ou "
|
||||
"espaços"
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "Língua"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "Língua preferida"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "Fuso horário"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "Em que fuso horário se encontra normalmente?"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
"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
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
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."
|
||||
msgstr "Fuso horário não foi seleccionado."
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
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
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Categoria inválida: \"%s\""
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "Não foi possível gravar o perfil."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
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."
|
||||
msgstr "Configurações gravadas."
|
||||
|
||||
@ -2597,7 +2605,7 @@ msgstr ""
|
||||
"Podia [registar uma conta](%%action.register%%) e ser a primeira pessoa a "
|
||||
"publicar uma!"
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr "Nuvem de categorias"
|
||||
|
||||
@ -2726,7 +2734,7 @@ msgstr "Erro ao configurar utilizador."
|
||||
|
||||
#: actions/recoverpassword.php:382
|
||||
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
|
||||
msgid "Sorry, only invited people can register."
|
||||
@ -2740,7 +2748,7 @@ msgstr "Desculpe, código de convite inválido."
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "Registar"
|
||||
@ -2932,7 +2940,7 @@ msgstr "Não pode repetir a sua própria nota."
|
||||
msgid "You already repeated that notice."
|
||||
msgstr "Já repetiu essa nota."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
msgid "Repeated"
|
||||
msgstr "Repetida"
|
||||
|
||||
@ -4081,16 +4089,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this 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."
|
||||
msgstr "Problema na gravação da nota."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Ocorreu um erro na base de dados ao inserir a resposta: %s"
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
@ -4118,7 +4126,7 @@ msgstr "Carregar um avatar"
|
||||
|
||||
#: lib/accountsettingsaction.php:116
|
||||
msgid "Change your password"
|
||||
msgstr "Modificar a sua palavra-passe"
|
||||
msgstr "Modificar a sua palavra-chave"
|
||||
|
||||
#: lib/accountsettingsaction.php:120
|
||||
msgid "Change email handling"
|
||||
@ -4145,128 +4153,128 @@ msgstr "%s - %s"
|
||||
msgid "Untitled page"
|
||||
msgstr "Página sem título"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr "Navegação primária deste site"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "Início"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr "Perfil pessoal e notas dos amigos"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "Conta"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr "Altere o seu endereço electrónico, avatar, palavra-chave, perfil"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Ligar"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect to services"
|
||||
msgstr "Ligar aos serviços"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
msgid "Change site configuration"
|
||||
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"
|
||||
msgstr "Convidar"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr "Convidar amigos e colegas para se juntarem a si em %s"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "Sair"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr "Terminar esta sessão"
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "Criar uma conta"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr "Iniciar uma sessão"
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "Ajuda"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "Ajudem-me!"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "Pesquisa"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "Procurar pessoas ou pesquisar texto"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr "Aviso do site"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr "Vistas locais"
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr "Aviso da página"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr "Navegação secundária deste site"
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "Sobre"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "FAQ"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr "Condições do Serviço"
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "Privacidade"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "Código"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Contacto"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr "Emblema"
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr "Licença de software do StatusNet"
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%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."
|
||||
"broughtby%%](%%site.broughtbyurl%%). "
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** é um serviço de microblogues. "
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"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."
|
||||
"fsf.org/licensing/licenses/agpl-3.0.html)."
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
msgid "Site content license"
|
||||
msgstr "Licença de conteúdos do site"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr "Tudo "
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr "licença."
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr "Paginação"
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr "Depois"
|
||||
msgstr "Posteriores"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr "Antes"
|
||||
msgstr "Anteriores"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
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"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "Resultados do comando"
|
||||
@ -4697,15 +4715,15 @@ msgstr "Predefinições do design repostas"
|
||||
|
||||
#: lib/disfavorform.php:114 lib/disfavorform.php:140
|
||||
msgid "Disfavor this notice"
|
||||
msgstr "Desfavorecer esta nota"
|
||||
msgstr "Retirar esta nota das favoritas"
|
||||
|
||||
#: lib/favorform.php:114 lib/favorform.php:140
|
||||
msgid "Favor this notice"
|
||||
msgstr "Favorecer esta nota"
|
||||
msgstr "Eleger esta nota como favorita"
|
||||
|
||||
#: lib/favorform.php:140
|
||||
msgid "Favor"
|
||||
msgstr "Favorecer"
|
||||
msgstr "Eleger como favorita"
|
||||
|
||||
#: lib/feed.php:85
|
||||
msgid "RSS 1.0"
|
||||
@ -5160,7 +5178,7 @@ msgstr ""
|
||||
"conversa com outros utilizadores. Outros podem enviar-lhe mensagens, a que "
|
||||
"só você terá acesso."
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
msgid "from"
|
||||
msgstr "de"
|
||||
|
||||
@ -5228,69 +5246,73 @@ msgstr "Enviar uma nota directa"
|
||||
msgid "To"
|
||||
msgstr "Para"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr "Caracteres disponíveis"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr "Enviar uma nota"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "Novidades, %s?"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr "Anexar"
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
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
|
||||
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"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "N"
|
||||
msgstr "N"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr "S"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr "E"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr "O"
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr "coords."
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr "em contexto"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
msgid "Repeated by"
|
||||
msgstr "Repetida por"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Responder a esta nota"
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "Responder"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
msgid "Notice repeated"
|
||||
msgstr "Nota repetida"
|
||||
|
||||
@ -5420,9 +5442,8 @@ msgid "Popular"
|
||||
msgstr "Populares"
|
||||
|
||||
#: lib/repeatform.php:107
|
||||
#, fuzzy
|
||||
msgid "Repeat this notice?"
|
||||
msgstr "Repetir esta nota"
|
||||
msgstr "Repetir esta nota?"
|
||||
|
||||
#: lib/repeatform.php:132
|
||||
msgid "Repeat this notice"
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -10,12 +10,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:43:44+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:12:28+0000\n"
|
||||
"Language-Team: Russian\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: ru\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -198,11 +198,11 @@ msgstr "Не удаётся обновить ваше оформление."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "Вы не можете заблокировать самого себя!"
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "Неудача при блокировке пользователя."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr "Неудача при разблокировке пользователя."
|
||||
|
||||
@ -320,32 +320,32 @@ msgid "Could not find target user."
|
||||
msgstr "Не удаётся найти целевого пользователя."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr ""
|
||||
"Имя должно состоять только из прописных букв и цифр и не иметь пробелов."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Такое имя уже используется. Попробуйте какое-нибудь другое."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "Неверное имя."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "URL Главной страницы неверен."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr "Полное имя слишком длинное (не больше 255 знаков)."
|
||||
@ -356,7 +356,7 @@ msgid "Description is too long (max %d chars)."
|
||||
msgstr "Слишком длинное описание (максимум %d символов)"
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
msgstr "Слишком длинное месторасположение (максимум 255 знаков)."
|
||||
@ -471,7 +471,7 @@ msgstr "Слишком длинная запись. Максимальная д
|
||||
msgid "Not found"
|
||||
msgstr "Не найдено"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr "Максимальная длина записи — %d символов, включая URL вложения."
|
||||
@ -601,7 +601,7 @@ msgid "Preview"
|
||||
msgstr "Просмотр"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "Удалить"
|
||||
|
||||
@ -614,13 +614,13 @@ msgid "Crop"
|
||||
msgstr "Обрезать"
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -693,7 +693,7 @@ msgstr "Да"
|
||||
msgid "Block this user"
|
||||
msgstr "Заблокировать пользователя."
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
msgstr "Не удаётся сохранить информацию о блокировании."
|
||||
|
||||
@ -765,7 +765,7 @@ msgstr "Этот адрес уже подтверждён."
|
||||
#: actions/confirmaddress.php:114 actions/emailsettings.php:296
|
||||
#: actions/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
msgstr "Не удаётся обновить пользователя."
|
||||
@ -827,7 +827,7 @@ msgstr "Вы уверены, что хотите удалить эту запи
|
||||
msgid "Do not delete this notice"
|
||||
msgstr "Не удалять эту запись"
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:603
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:611
|
||||
msgid "Delete this notice"
|
||||
msgstr "Удалить эту запись"
|
||||
|
||||
@ -965,7 +965,7 @@ msgstr "Восстановить значения по умолчанию"
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: actions/useradminpanel.php:313 lib/designsettings.php:256
|
||||
@ -1475,7 +1475,7 @@ msgstr "Участники группы %s, страница %d"
|
||||
msgid "A list of the users in this group."
|
||||
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"
|
||||
msgstr "Настройки"
|
||||
|
||||
@ -1573,7 +1573,7 @@ msgstr "Только администратор может разблокиро
|
||||
msgid "User is not blocked from group."
|
||||
msgstr "Пользователь не заблокировал вас из группы."
|
||||
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:77
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:86
|
||||
msgid "Error removing the block."
|
||||
msgstr "Ошибка при удалении данного блока."
|
||||
|
||||
@ -1760,7 +1760,7 @@ msgstr "Личное сообщение"
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
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"
|
||||
msgstr "ОК"
|
||||
|
||||
@ -1882,7 +1882,7 @@ msgstr "Некорректное имя или пароль."
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "Вход"
|
||||
@ -1994,7 +1994,7 @@ msgstr "Сообщение отправлено"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "Ошибка AJAX"
|
||||
|
||||
@ -2002,7 +2002,7 @@ msgstr "Ошибка AJAX"
|
||||
msgid "New notice"
|
||||
msgstr "Новая запись"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "Запись опубликована"
|
||||
|
||||
@ -2433,71 +2433,80 @@ msgstr "Месторасположение"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "Теги"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
"Теги для самого себя (буквы, цифры, -, ., и _), разделенные запятой или "
|
||||
"пробелом"
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "Язык"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "Предпочитаемый язык"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "Часовой пояс"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "В каком часовом поясе Вы обычно находитесь?"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr "Автоматически подписываться на всех, кто подписался на меня"
|
||||
|
||||
#: actions/profilesettings.php:221 actions/register.php:223
|
||||
#: actions/profilesettings.php:228 actions/register.php:223
|
||||
#, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
msgstr "Слишком длинная биография (максимум %d символов)."
|
||||
|
||||
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164
|
||||
#: actions/profilesettings.php:235 actions/siteadminpanel.php:164
|
||||
msgid "Timezone not selected."
|
||||
msgstr "Часовой пояс не выбран."
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
msgstr "Слишком длинный язык (более 50 символов). "
|
||||
|
||||
#: actions/profilesettings.php:246 actions/tagother.php:178
|
||||
#: actions/profilesettings.php:253 actions/tagother.php:178
|
||||
#, php-format
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Неверный тег: «%s»"
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "Не удаётся сохранить профиль."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
msgstr "Не удаётся сохранить теги."
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr "Настройки сохранены."
|
||||
|
||||
@ -2602,7 +2611,7 @@ msgstr ""
|
||||
"Почему бы не [зарегистрироваться](%%action.register%%), чтобы отправить "
|
||||
"первым?"
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr "Облако тегов"
|
||||
|
||||
@ -2742,7 +2751,7 @@ msgstr "Извините, неверный пригласительный код
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "Регистрация"
|
||||
@ -2934,7 +2943,7 @@ msgstr "Вы не можете повторить собственную зап
|
||||
msgid "You already repeated that notice."
|
||||
msgstr "Вы уже повторили эту запись."
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
msgid "Repeated"
|
||||
msgstr "Повторено"
|
||||
|
||||
@ -4088,16 +4097,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
msgstr "Вам запрещено поститься на этом сайте (бан)"
|
||||
|
||||
#: classes/Notice.php:319 classes/Notice.php:344
|
||||
#: classes/Notice.php:309 classes/Notice.php:334
|
||||
msgid "Problem saving notice."
|
||||
msgstr "Проблемы с сохранением записи."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Ошибка баз данных при вставке ответа для %s"
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
@ -4152,128 +4161,128 @@ msgstr "%s (%s)"
|
||||
msgid "Untitled page"
|
||||
msgstr "Страница без названия"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr "Главная навигация"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "Моё"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr "Личный профиль и лента друзей"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "Настройки"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr "Изменить ваш email, аватару, пароль, профиль"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Соединить"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect to services"
|
||||
msgstr "Соединить с сервисами"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
msgid "Change site configuration"
|
||||
msgstr "Изменить конфигурацию сайта"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "Пригласить"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr "Пригласи друзей и коллег стать такими же как ты участниками %s"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "Выход"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr "Выйти"
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "Создать новый аккаунт"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr "Войти"
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "Помощь"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "Помощь"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "Поиск"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "Искать людей или текст"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr "Новая запись"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr "Локальные виды"
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr "Новая запись"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr "Навигация по подпискам"
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "О проекте"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "ЧаВо"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr "TOS"
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "Пользовательское соглашение"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "Исходный код"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Контактная информация"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr "Бедж"
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr "StatusNet лицензия"
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%site.name%%** is a microblogging service brought to you by [%%site."
|
||||
@ -4282,12 +4291,12 @@ msgstr ""
|
||||
"**%%site.name%%** — это сервис микроблогинга, созданный для вас при помощи [%"
|
||||
"%site.broughtby%%](%%site.broughtbyurl%%). "
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** — сервис микроблогинга. "
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"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/"
|
||||
"licenses/agpl-3.0.html)."
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
msgid "Site content license"
|
||||
msgstr "Лицензия содержимого сайта"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr "All "
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr "license."
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr "Разбиение на страницы"
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr "Сюда"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr "Туда"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr "Проблема с Вашей сессией. Попробуйте ещё раз, пожалуйста."
|
||||
|
||||
@ -4375,6 +4384,16 @@ msgstr "Сообщает, где появляется это вложение"
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "Команда исполнена"
|
||||
@ -4933,7 +4952,7 @@ msgstr ""
|
||||
#: lib/mail.php:236
|
||||
#, php-format
|
||||
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
|
||||
#, 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"
|
||||
msgstr "от "
|
||||
|
||||
@ -5237,69 +5256,73 @@ msgstr "Послать прямую запись"
|
||||
msgid "To"
|
||||
msgstr "Для"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr "6 или больше знаков"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr "Послать запись"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "Что нового, %s?"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr "Прикрепить"
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr "Прикрепить файл"
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
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"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "N"
|
||||
msgstr "с. ш."
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr "ю. ш."
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr "в. д."
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr "з. д."
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr "на"
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr "в контексте"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
msgid "Repeated by"
|
||||
msgstr "Повторено"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Ответить на эту запись"
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "Ответить"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
msgid "Notice repeated"
|
||||
msgstr "Запись повторена"
|
||||
|
||||
@ -5429,9 +5452,8 @@ msgid "Popular"
|
||||
msgstr "Популярное"
|
||||
|
||||
#: lib/repeatform.php:107
|
||||
#, fuzzy
|
||||
msgid "Repeat this notice?"
|
||||
msgstr "Повторить эту запись"
|
||||
msgstr "Повторить эту запись?"
|
||||
|
||||
#: lib/repeatform.php:132
|
||||
msgid "Repeat this notice"
|
||||
|
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\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"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -184,11 +184,11 @@ msgstr ""
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr ""
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr ""
|
||||
|
||||
@ -300,31 +300,31 @@ msgid "Could not find target user."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
msgstr ""
|
||||
@ -335,7 +335,7 @@ msgid "Description is too long (max %d chars)."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
msgstr ""
|
||||
@ -450,7 +450,7 @@ msgstr ""
|
||||
msgid "Not found"
|
||||
msgstr ""
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr ""
|
||||
@ -579,7 +579,7 @@ msgid "Preview"
|
||||
msgstr ""
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
@ -592,13 +592,13 @@ msgid "Crop"
|
||||
msgstr ""
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -668,7 +668,7 @@ msgstr ""
|
||||
msgid "Block this user"
|
||||
msgstr ""
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
msgstr ""
|
||||
|
||||
@ -740,7 +740,7 @@ msgstr ""
|
||||
#: actions/confirmaddress.php:114 actions/emailsettings.php:296
|
||||
#: actions/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
msgstr ""
|
||||
@ -800,7 +800,7 @@ msgstr ""
|
||||
msgid "Do not delete this notice"
|
||||
msgstr ""
|
||||
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:603
|
||||
#: actions/deletenotice.php:146 lib/noticelist.php:611
|
||||
msgid "Delete this notice"
|
||||
msgstr ""
|
||||
|
||||
@ -934,7 +934,7 @@ msgstr ""
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: actions/useradminpanel.php:313 lib/designsettings.php:256
|
||||
@ -1416,7 +1416,7 @@ msgstr ""
|
||||
msgid "A list of the users in this group."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1503,7 +1503,7 @@ msgstr ""
|
||||
msgid "User is not blocked from group."
|
||||
msgstr ""
|
||||
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:77
|
||||
#: actions/groupunblock.php:128 actions/unblock.php:86
|
||||
msgid "Error removing the block."
|
||||
msgstr ""
|
||||
|
||||
@ -1672,7 +1672,7 @@ msgstr ""
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1768,7 +1768,7 @@ msgstr ""
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr ""
|
||||
@ -1875,7 +1875,7 @@ msgstr ""
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr ""
|
||||
|
||||
@ -1883,7 +1883,7 @@ msgstr ""
|
||||
msgid "New notice"
|
||||
msgstr ""
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr ""
|
||||
|
||||
@ -2300,69 +2300,77 @@ msgstr ""
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:221 actions/register.php:223
|
||||
#: actions/profilesettings.php:228 actions/register.php:223
|
||||
#, php-format
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:228 actions/siteadminpanel.php:164
|
||||
#: actions/profilesettings.php:235 actions/siteadminpanel.php:164
|
||||
msgid "Timezone not selected."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:246 actions/tagother.php:178
|
||||
#: actions/profilesettings.php:253 actions/tagother.php:178
|
||||
#, php-format
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
msgstr ""
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr ""
|
||||
|
||||
@ -2455,7 +2463,7 @@ msgid ""
|
||||
"one!"
|
||||
msgstr ""
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr ""
|
||||
|
||||
@ -2591,7 +2599,7 @@ msgstr ""
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr ""
|
||||
@ -2755,7 +2763,7 @@ msgstr ""
|
||||
msgid "You already repeated that notice."
|
||||
msgstr ""
|
||||
|
||||
#: actions/repeat.php:114 lib/noticelist.php:621
|
||||
#: actions/repeat.php:114 lib/noticelist.php:629
|
||||
msgid "Repeated"
|
||||
msgstr ""
|
||||
|
||||
@ -3825,16 +3833,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:319 classes/Notice.php:344
|
||||
#: classes/Notice.php:309 classes/Notice.php:334
|
||||
msgid "Problem saving notice."
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr ""
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr ""
|
||||
@ -3889,140 +3897,140 @@ msgstr ""
|
||||
msgid "Untitled page"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect to services"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
msgid "Change site configuration"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%site.name%%** is a microblogging service brought to you by [%%site."
|
||||
"broughtby%%](%%site.broughtbyurl%%). "
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"It runs the [StatusNet](http://status.net/) microblogging software, version %"
|
||||
@ -4030,31 +4038,31 @@ msgid ""
|
||||
"org/licensing/licenses/agpl-3.0.html)."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
msgid "Site content license"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr ""
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session token."
|
||||
msgstr ""
|
||||
|
||||
@ -4106,6 +4114,14 @@ msgstr ""
|
||||
msgid "Tags for this attachment"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr ""
|
||||
@ -4766,7 +4782,7 @@ msgid ""
|
||||
"users in conversation. People can send you messages for your eyes only."
|
||||
msgstr ""
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
msgid "from"
|
||||
msgstr ""
|
||||
|
||||
@ -4830,69 +4846,73 @@ msgstr ""
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
msgid "%1$u°%2$u'%3$u\"%4$s %5$u°%6$u'%7$u\"%8$s"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "N"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
msgid "Repeated by"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
msgid "Notice repeated"
|
||||
msgstr ""
|
||||
|
||||
|
@ -9,12 +9,12 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: StatusNet\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2009-12-25 09:42+0000\n"
|
||||
"PO-Revision-Date: 2009-12-25 09:43:47+0000\n"
|
||||
"POT-Creation-Date: 2010-01-05 22:10+0000\n"
|
||||
"PO-Revision-Date: 2010-01-05 22:12:32+0000\n"
|
||||
"Language-Team: Swedish\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\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-Language-Code: sv\n"
|
||||
"X-Message-Group: out-statusnet\n"
|
||||
@ -196,11 +196,11 @@ msgstr "Kunde inte uppdatera din profils utseende."
|
||||
msgid "You cannot block yourself!"
|
||||
msgstr "Du kan inte blockera dig själv!"
|
||||
|
||||
#: actions/apiblockcreate.php:119
|
||||
#: actions/apiblockcreate.php:126
|
||||
msgid "Block user failed."
|
||||
msgstr "Blockering av användare misslyckades."
|
||||
|
||||
#: actions/apiblockdestroy.php:107
|
||||
#: actions/apiblockdestroy.php:114
|
||||
msgid "Unblock user failed."
|
||||
msgstr "Hävning av blockering av användare misslyckades."
|
||||
|
||||
@ -312,32 +312,32 @@ msgid "Could not find target user."
|
||||
msgstr ""
|
||||
|
||||
#: 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
|
||||
msgid "Nickname must have only lowercase letters and numbers and no spaces."
|
||||
msgstr ""
|
||||
"Smeknamnet får endast innehålla små bokstäver eller siffror, inga mellanslag."
|
||||
|
||||
#: 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
|
||||
msgid "Nickname already in use. Try another one."
|
||||
msgstr "Smeknamnet används redan. Försök med ett annat."
|
||||
|
||||
#: 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
|
||||
msgid "Not a valid nickname."
|
||||
msgstr "Inte ett giltigt smeknamn."
|
||||
|
||||
#: 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
|
||||
msgid "Homepage is not a valid URL."
|
||||
msgstr "Hemsida är inte en giltig URL."
|
||||
|
||||
#: 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
|
||||
msgid "Full name is too long (max 255 chars)."
|
||||
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)"
|
||||
|
||||
#: 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
|
||||
msgid "Location is too long (max 255 chars)."
|
||||
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"
|
||||
msgstr "Hittades inte"
|
||||
|
||||
#: actions/apistatusesupdate.php:227 actions/newnotice.php:191
|
||||
#: actions/apistatusesupdate.php:221 actions/newnotice.php:178
|
||||
#, php-format
|
||||
msgid "Max notice size is %d chars, including attachment URL."
|
||||
msgstr "Maximal notisstorlek är %d tecken, inklusive bilage-URL."
|
||||
@ -593,7 +593,7 @@ msgid "Preview"
|
||||
msgstr "Förhandsgranska"
|
||||
|
||||
#: actions/avatarsettings.php:149 lib/deleteuserform.php:66
|
||||
#: lib/noticelist.php:603
|
||||
#: lib/noticelist.php:611
|
||||
msgid "Delete"
|
||||
msgstr "Ta bort"
|
||||
|
||||
@ -606,13 +606,13 @@ msgid "Crop"
|
||||
msgstr "Beskär"
|
||||
|
||||
#: 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/groupunblock.php:66 actions/imsettings.php:206
|
||||
#: 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/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/repeat.php:83 actions/smssettings.php:228 actions/subedit.php:38
|
||||
#: actions/subscribe.php:46 actions/tagother.php:166
|
||||
@ -685,7 +685,7 @@ msgstr "Ja"
|
||||
msgid "Block this user"
|
||||
msgstr "Blockera denna användare"
|
||||
|
||||
#: actions/block.php:162
|
||||
#: actions/block.php:167
|
||||
msgid "Failed to save block information."
|
||||
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/emailsettings.php:427 actions/imsettings.php:258
|
||||
#: 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
|
||||
msgid "Couldn't update user."
|
||||
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"
|
||||
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"
|
||||
msgstr "Ta bort denna notis"
|
||||
|
||||
@ -958,7 +958,7 @@ msgstr "Återställ till standardvärde"
|
||||
|
||||
#: actions/designadminpanel.php:586 actions/emailsettings.php:195
|
||||
#: 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/subscriptions.php:203 actions/tagother.php:154
|
||||
#: 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."
|
||||
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"
|
||||
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."
|
||||
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."
|
||||
msgstr "Fel vid hävning av blockering."
|
||||
|
||||
@ -1741,7 +1741,7 @@ msgstr "Personligt meddelande"
|
||||
msgid "Optionally add a personal message to the invitation."
|
||||
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"
|
||||
msgstr "Skicka"
|
||||
|
||||
@ -1837,7 +1837,7 @@ msgstr "Felaktigt användarnamn eller lösenord."
|
||||
msgid "Error setting user. You are probably not authorized."
|
||||
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
|
||||
msgid "Login"
|
||||
msgstr "Logga in"
|
||||
@ -1950,7 +1950,7 @@ msgstr "Meddelande skickat"
|
||||
msgid "Direct message to %s sent"
|
||||
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"
|
||||
msgstr "AJAX-fel"
|
||||
|
||||
@ -1958,7 +1958,7 @@ msgstr "AJAX-fel"
|
||||
msgid "New notice"
|
||||
msgstr "Ny notis"
|
||||
|
||||
#: actions/newnotice.php:216
|
||||
#: actions/newnotice.php:211
|
||||
msgid "Notice posted"
|
||||
msgstr "Notis postad"
|
||||
|
||||
@ -2387,72 +2387,81 @@ msgstr "Plats"
|
||||
msgid "Where you are, like \"City, State (or Region), Country\""
|
||||
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
|
||||
#: lib/subscriptionlist.php:108 lib/userprofile.php:209
|
||||
msgid "Tags"
|
||||
msgstr "Taggar"
|
||||
|
||||
#: actions/profilesettings.php:140
|
||||
#: actions/profilesettings.php:147
|
||||
msgid ""
|
||||
"Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated"
|
||||
msgstr ""
|
||||
"Taggar för dig själv (bokstäver, nummer, -, ., och _), separerade med "
|
||||
"kommatecken eller mellanslag"
|
||||
|
||||
#: actions/profilesettings.php:144 actions/siteadminpanel.php:294
|
||||
#: actions/profilesettings.php:151 actions/siteadminpanel.php:294
|
||||
msgid "Language"
|
||||
msgstr "Språk"
|
||||
|
||||
#: actions/profilesettings.php:145
|
||||
#: actions/profilesettings.php:152
|
||||
msgid "Preferred language"
|
||||
msgstr "Föredraget språk"
|
||||
|
||||
#: actions/profilesettings.php:154
|
||||
#: actions/profilesettings.php:161
|
||||
msgid "Timezone"
|
||||
msgstr "Tidszon"
|
||||
|
||||
#: actions/profilesettings.php:155
|
||||
#: actions/profilesettings.php:162
|
||||
msgid "What timezone are you normally in?"
|
||||
msgstr "I vilken tidszon befinner du dig normalt?"
|
||||
|
||||
#: actions/profilesettings.php:160
|
||||
#: actions/profilesettings.php:167
|
||||
msgid ""
|
||||
"Automatically subscribe to whoever subscribes to me (best for non-humans)"
|
||||
msgstr ""
|
||||
"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
|
||||
msgid "Bio is too long (max %d chars)."
|
||||
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."
|
||||
msgstr "Tidszon inte valt."
|
||||
|
||||
#: actions/profilesettings.php:234
|
||||
#: actions/profilesettings.php:241
|
||||
msgid "Language is too long (max 50 chars)."
|
||||
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
|
||||
msgid "Invalid tag: \"%s\""
|
||||
msgstr "Ogiltig tagg: \"%s\""
|
||||
|
||||
#: actions/profilesettings.php:295
|
||||
#: actions/profilesettings.php:302
|
||||
msgid "Couldn't update user for autosubscribe."
|
||||
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."
|
||||
msgstr "Kunde inte spara profil."
|
||||
|
||||
#: actions/profilesettings.php:336
|
||||
#: actions/profilesettings.php:374
|
||||
msgid "Couldn't save tags."
|
||||
msgstr "Kunde inte spara taggar."
|
||||
|
||||
#: actions/profilesettings.php:344 lib/adminpanelaction.php:126
|
||||
#: actions/profilesettings.php:382 lib/adminpanelaction.php:126
|
||||
msgid "Settings saved."
|
||||
msgstr "Inställningar sparade."
|
||||
|
||||
@ -2558,7 +2567,7 @@ msgstr ""
|
||||
"Varför inte [registrera ett konto](%%action.register%%) och bli först att "
|
||||
"posta en!"
|
||||
|
||||
#: actions/publictagcloud.php:135
|
||||
#: actions/publictagcloud.php:131
|
||||
msgid "Tag cloud"
|
||||
msgstr "Taggmoln"
|
||||
|
||||
@ -2699,7 +2708,7 @@ msgstr "Ledsen, ogiltig inbjudningskod."
|
||||
msgid "Registration successful"
|
||||
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
|
||||
msgid "Register"
|
||||
msgstr "Registrera"
|
||||
@ -2879,7 +2888,7 @@ msgstr "Du kan inte upprepa din egna notis."
|
||||
msgid "You already repeated that notice."
|
||||
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"
|
||||
msgstr "Upprepad"
|
||||
|
||||
@ -4018,16 +4027,16 @@ msgstr ""
|
||||
msgid "You are banned from posting notices on this site."
|
||||
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."
|
||||
msgstr "Problem med att spara notis."
|
||||
|
||||
#: classes/Notice.php:1044
|
||||
#: classes/Notice.php:1034
|
||||
#, php-format
|
||||
msgid "DB error inserting reply: %s"
|
||||
msgstr "Databasfel vid infogning av svar: %s"
|
||||
|
||||
#: classes/Notice.php:1371
|
||||
#: classes/Notice.php:1361
|
||||
#, php-format
|
||||
msgid "RT @%1$s %2$s"
|
||||
msgstr "RT @%1$s %2$s"
|
||||
@ -4082,128 +4091,128 @@ msgstr "%s - %s"
|
||||
msgid "Untitled page"
|
||||
msgstr "Namnlös sida"
|
||||
|
||||
#: lib/action.php:425
|
||||
#: lib/action.php:426
|
||||
msgid "Primary site navigation"
|
||||
msgstr "Primär webbplatsnavigation"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Home"
|
||||
msgstr "Hem"
|
||||
|
||||
#: lib/action.php:431
|
||||
#: lib/action.php:432
|
||||
msgid "Personal profile and friends timeline"
|
||||
msgstr "Personlig profil och vänners tidslinje"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Account"
|
||||
msgstr "Konto"
|
||||
|
||||
#: lib/action.php:433
|
||||
#: lib/action.php:434
|
||||
msgid "Change your email, avatar, password, profile"
|
||||
msgstr "Ändra din e-post, avatar, lösenord, profil"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect"
|
||||
msgstr "Anslut"
|
||||
|
||||
#: lib/action.php:436
|
||||
#: lib/action.php:437
|
||||
msgid "Connect to services"
|
||||
msgstr "Anslut till tjänster"
|
||||
|
||||
#: lib/action.php:440
|
||||
#: lib/action.php:441
|
||||
msgid "Change site configuration"
|
||||
msgstr "Ändra webbplatskonfiguration"
|
||||
|
||||
#: lib/action.php:444 lib/subgroupnav.php:105
|
||||
#: lib/action.php:445 lib/subgroupnav.php:105
|
||||
msgid "Invite"
|
||||
msgstr "Bjud in"
|
||||
|
||||
#: lib/action.php:445 lib/subgroupnav.php:106
|
||||
#: lib/action.php:446 lib/subgroupnav.php:106
|
||||
#, php-format
|
||||
msgid "Invite friends and colleagues to join you on %s"
|
||||
msgstr "Bjud in vänner och kollegor att gå med dig på %s"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout"
|
||||
msgstr "Logga ut"
|
||||
|
||||
#: lib/action.php:450
|
||||
#: lib/action.php:451
|
||||
msgid "Logout from the site"
|
||||
msgstr "Logga ut från webbplatsen"
|
||||
|
||||
#: lib/action.php:455
|
||||
#: lib/action.php:456
|
||||
msgid "Create an account"
|
||||
msgstr "Skapa ett konto"
|
||||
|
||||
#: lib/action.php:458
|
||||
#: lib/action.php:459
|
||||
msgid "Login to the site"
|
||||
msgstr "Logga in på webbplatsen"
|
||||
|
||||
#: lib/action.php:461 lib/action.php:724
|
||||
#: lib/action.php:462 lib/action.php:725
|
||||
msgid "Help"
|
||||
msgstr "Hjälp"
|
||||
|
||||
#: lib/action.php:461
|
||||
#: lib/action.php:462
|
||||
msgid "Help me!"
|
||||
msgstr "Hjälp mig!"
|
||||
|
||||
#: lib/action.php:464 lib/searchaction.php:127
|
||||
#: lib/action.php:465 lib/searchaction.php:127
|
||||
msgid "Search"
|
||||
msgstr "Sök"
|
||||
|
||||
#: lib/action.php:464
|
||||
#: lib/action.php:465
|
||||
msgid "Search for people or text"
|
||||
msgstr "Sök efter personer eller text"
|
||||
|
||||
#: lib/action.php:485
|
||||
#: lib/action.php:486
|
||||
msgid "Site notice"
|
||||
msgstr "Webbplatsnotis"
|
||||
|
||||
#: lib/action.php:551
|
||||
#: lib/action.php:552
|
||||
msgid "Local views"
|
||||
msgstr "Lokala vyer"
|
||||
|
||||
#: lib/action.php:617
|
||||
#: lib/action.php:618
|
||||
msgid "Page notice"
|
||||
msgstr "Sidnotis"
|
||||
|
||||
#: lib/action.php:719
|
||||
#: lib/action.php:720
|
||||
msgid "Secondary site navigation"
|
||||
msgstr "Sekundär webbplatsnavigation"
|
||||
|
||||
#: lib/action.php:726
|
||||
#: lib/action.php:727
|
||||
msgid "About"
|
||||
msgstr "Om"
|
||||
|
||||
#: lib/action.php:728
|
||||
#: lib/action.php:729
|
||||
msgid "FAQ"
|
||||
msgstr "Frågor & svar"
|
||||
|
||||
#: lib/action.php:732
|
||||
#: lib/action.php:733
|
||||
msgid "TOS"
|
||||
msgstr "Användarvillkor"
|
||||
|
||||
#: lib/action.php:735
|
||||
#: lib/action.php:736
|
||||
msgid "Privacy"
|
||||
msgstr "Sekretess"
|
||||
|
||||
#: lib/action.php:737
|
||||
#: lib/action.php:738
|
||||
msgid "Source"
|
||||
msgstr "Källa"
|
||||
|
||||
#: lib/action.php:739
|
||||
#: lib/action.php:740
|
||||
msgid "Contact"
|
||||
msgstr "Kontakt"
|
||||
|
||||
#: lib/action.php:741
|
||||
#: lib/action.php:742
|
||||
msgid "Badge"
|
||||
msgstr "Emblem"
|
||||
|
||||
#: lib/action.php:769
|
||||
#: lib/action.php:770
|
||||
msgid "StatusNet software license"
|
||||
msgstr "Programvarulicens för StatusNet"
|
||||
|
||||
#: lib/action.php:772
|
||||
#: lib/action.php:773
|
||||
#, php-format
|
||||
msgid ""
|
||||
"**%%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.broughtbyurl%%)"
|
||||
|
||||
#: lib/action.php:774
|
||||
#: lib/action.php:775
|
||||
#, php-format
|
||||
msgid "**%%site.name%%** is a microblogging service. "
|
||||
msgstr "**%%site.name%%** är en mikrobloggtjänst."
|
||||
|
||||
#: lib/action.php:776
|
||||
#: lib/action.php:777
|
||||
#, php-format
|
||||
msgid ""
|
||||
"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."
|
||||
"fsf.org/licensing/licenses/agpl-3.0.html)."
|
||||
|
||||
#: lib/action.php:790
|
||||
#: lib/action.php:791
|
||||
msgid "Site content license"
|
||||
msgstr "Licens för webbplatsinnehåll"
|
||||
|
||||
#: lib/action.php:799
|
||||
#: lib/action.php:800
|
||||
msgid "All "
|
||||
msgstr "Alla "
|
||||
|
||||
#: lib/action.php:804
|
||||
#: lib/action.php:805
|
||||
msgid "license."
|
||||
msgstr "licens."
|
||||
|
||||
#: lib/action.php:1098
|
||||
#: lib/action.php:1099
|
||||
msgid "Pagination"
|
||||
msgstr "Numrering av sidor"
|
||||
|
||||
#: lib/action.php:1107
|
||||
#: lib/action.php:1108
|
||||
msgid "After"
|
||||
msgstr "Senare"
|
||||
|
||||
#: lib/action.php:1115
|
||||
#: lib/action.php:1116
|
||||
msgid "Before"
|
||||
msgstr "Tidigare"
|
||||
|
||||
#: lib/action.php:1163
|
||||
#: lib/action.php:1164
|
||||
msgid "There was a problem with your session 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"
|
||||
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
|
||||
msgid "Command results"
|
||||
msgstr "Resultat av kommando"
|
||||
@ -4983,7 +5002,7 @@ msgstr ""
|
||||
"engagera andra användare i konversationen. Folk kan skicka meddelanden till "
|
||||
"dig som bara du ser."
|
||||
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:469
|
||||
#: lib/mailbox.php:227 lib/noticelist.php:477
|
||||
msgid "from"
|
||||
msgstr "från"
|
||||
|
||||
@ -5051,69 +5070,73 @@ msgstr "Skicka ett direktinlägg"
|
||||
msgid "To"
|
||||
msgstr "Till"
|
||||
|
||||
#: lib/messageform.php:159 lib/noticeform.php:183
|
||||
#: lib/messageform.php:159 lib/noticeform.php:185
|
||||
msgid "Available characters"
|
||||
msgstr "Tillgängliga tecken"
|
||||
|
||||
#: lib/noticeform.php:158
|
||||
#: lib/noticeform.php:160
|
||||
msgid "Send a notice"
|
||||
msgstr "Skicka ett inlägg"
|
||||
|
||||
#: lib/noticeform.php:171
|
||||
#: lib/noticeform.php:173
|
||||
#, php-format
|
||||
msgid "What's up, %s?"
|
||||
msgstr "Vad är på gång, %s?"
|
||||
|
||||
#: lib/noticeform.php:190
|
||||
#: lib/noticeform.php:192
|
||||
msgid "Attach"
|
||||
msgstr "Bifoga"
|
||||
|
||||
#: lib/noticeform.php:194
|
||||
#: lib/noticeform.php:196
|
||||
msgid "Attach a file"
|
||||
msgstr "Bifoga en fil"
|
||||
|
||||
#: lib/noticelist.php:420
|
||||
#: lib/noticeform.php:212
|
||||
msgid "Share your location"
|
||||
msgstr ""
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#, php-format
|
||||
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"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "N"
|
||||
msgstr "N"
|
||||
|
||||
#: lib/noticelist.php:421
|
||||
#: lib/noticelist.php:429
|
||||
msgid "S"
|
||||
msgstr "S"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "E"
|
||||
msgstr "Ö"
|
||||
|
||||
#: lib/noticelist.php:422
|
||||
#: lib/noticelist.php:430
|
||||
msgid "W"
|
||||
msgstr "V"
|
||||
|
||||
#: lib/noticelist.php:428
|
||||
#: lib/noticelist.php:436
|
||||
msgid "at"
|
||||
msgstr "på"
|
||||
|
||||
#: lib/noticelist.php:523
|
||||
#: lib/noticelist.php:531
|
||||
msgid "in context"
|
||||
msgstr "i sammanhang"
|
||||
|
||||
#: lib/noticelist.php:548
|
||||
#: lib/noticelist.php:556
|
||||
msgid "Repeated by"
|
||||
msgstr "Upprepad av"
|
||||
|
||||
#: lib/noticelist.php:577
|
||||
#: lib/noticelist.php:585
|
||||
msgid "Reply to this notice"
|
||||
msgstr "Svara på detta inlägg"
|
||||
|
||||
#: lib/noticelist.php:578
|
||||
#: lib/noticelist.php:586
|
||||
msgid "Reply"
|
||||
msgstr "Svara"
|
||||
|
||||
#: lib/noticelist.php:620
|
||||
#: lib/noticelist.php:628
|
||||
msgid "Notice repeated"
|
||||
msgstr "Notis upprepad"
|
||||
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user